You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Dmitry Razumov 761a24a4ec
Fix depends
2 years ago
source Fix depends 2 years ago
.gitignore Added new saving confirmation window 2 years ago
LICENSE Fix Makefile and CMakeLists.txt 2 years ago
Makefile Fix Makefile and CMakeLists.txt 2 years ago
README.md Fix Makefile and CMakeLists.txt 2 years ago
com.ublinux.ublsettingsui-gtk3.checked.svg
com.ublinux.ublsettingsui-gtk3.svg
com.ublinux.ublsettingsui-gtk3.warning.svg
gresource.xml Saving uncompleted updates 2 years ago
ublsettingsui-gtk3-about.glade
ublsettingsui-gtk3-banner.png
ublsettingsui-gtk3-documentation.glade
ublsettingsui-gtk3-saving.glade Added new saving confirmation window 2 years ago
ublsettingsui-gtk3.css
ublsettingsui-gtk3.glade Saving uncompleted updates 2 years ago
ublsettingsui-gtk3.pot Added new saving confirmation window 2 years ago
ublsettingsui-gtk3_ru.po Added new saving confirmation window 2 years ago

README.md

libublsettingsui-gtk3

Build

In order to build you will need:

Once you have all the necessary dependencies, you can use:

$ make

Installation

After a successful build, just use:

$ sudo make install clean

Uninstallation

After a successful build, just use:

$ sudo make uninstall

Library usage

libublsettingsui-gtk3 provides library:

    #include <ublsettingsui-gtk3.h>

ublsettingsui-gtk3

ublsettingsui-gtk3 provides API to use ubl-settings applications shared interface: main window, about dialog, confirmation window. First of all, you need to connect config structure to standard interface:

    _template_config config;
    yon_ubl_connect_config(config);

Next step you should initialize all necceccary information for standard interface:

yon_ubl_window_init("Title of util","Description of util",".po file name","path to css file (must be connected as resource)","filename of your util","Version of util","About dialog wiki link");

And finaly you get interface structure:

    template_main_window *widgets = yon_ubl_window_setup();