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.
32 lines
838 B
32 lines
838 B
#ifndef VIEW_ABOUT_H
|
|
#define VIEW_ABOUT_H
|
|
#include "project_lib.h"
|
|
#define copyright _("Copyright © UBSoft LLC, 2022 - ")
|
|
#define str_setting_user _("Setting user quotas")
|
|
#define website _("https://wiki.ublinux.com")
|
|
#define project_Home_page _("Project Home Page")
|
|
class view_about
|
|
{
|
|
private:
|
|
string path_glade;
|
|
string version_application;
|
|
string app_name;
|
|
|
|
private:
|
|
Glib::RefPtr<Gtk::Builder> const& builder;
|
|
Gtk::AboutDialog *aboutWindows;
|
|
Gtk::Label *headerAboutTopic;
|
|
Gtk::ButtonBox *btnBoxAboutDialog;
|
|
public:
|
|
view_about(/* args */);
|
|
~view_about();
|
|
void lacalization();
|
|
void event();
|
|
void get_builder();
|
|
void settings();
|
|
void show();
|
|
void set_path_glade(string path_glade);
|
|
void set_name(string app_name);
|
|
void set_version(string version_application);
|
|
};
|
|
#endif |