Added information about packages installed

This commit is contained in:
2020-05-19 20:34:51 +02:00
parent 9eb45f329a
commit 4fc3d964ce
17 changed files with 202 additions and 20 deletions

13
view_info.cpp Normal file
View File

@@ -0,0 +1,13 @@
#include "view_info.h"
view_info::view_info()
{
this->m_refTreeModel = Gtk::ListStore::create(this->m_Columns);
this->tree.set_model(this->m_refTreeModel);
tree.append_column("name", m_Columns.r_name);
tree.append_column("date", m_Columns.r_date);
tree.append_column("config", m_Columns.r_config);
tree.append_column("user", m_Columns.r_user);
this->add(this->tree);
}