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.
ubl-settings-diskquota/source/view/view_about.h

29 lines
626 B

#ifndef VIEW_ABOUT_H
#define VIEW_ABOUT_H
#include "../project_lib.h"
#include "model/util.h"
#include "../var.h"
class View_about
{
private:
string version_application;
private:
Glib::RefPtr<Gtk::Builder> builder;
Gtk::Label *headerAboutTopic;
Gtk::ButtonBox *btnBoxAboutDialog;
public:
Gtk::AboutDialog *aboutWindows;
public:
View_about();
~View_about();
void lacalization();
void event();
View_about* get_self();
void get_builder();
void settings();
void show();
void set_path_glade(string str_path_glade);
void set_version(string version_application);
};
#endif