refactor interface

This commit is contained in:
2020-05-26 18:09:22 +02:00
parent c4e2ec96dd
commit 90a76301f2
14 changed files with 42 additions and 63 deletions

View File

@@ -2,6 +2,7 @@
#define VIEW_INFO_H
#include <gtkmm/box.h>
#include <gtkmm/buttonbox.h>
#include <gtkmm/treeview.h>
#include <gtkmm/liststore.h>
@@ -21,9 +22,11 @@ public:
Gtk::TreeModelColumn<std::string> r_user;
Gtk::TreeModelColumn<bool> r_config;
};
ModelColumns m_Columns;
ModelColumns m_Columns;
Glib::RefPtr<Gtk::ListStore> m_refTreeModel;
Gtk::ButtonBox b_box;
Gtk::Button b_remove;
void restart_table();
};
#endif // VIEW_INFO_H