add user list

This commit is contained in:
2020-05-20 00:09:18 +02:00
parent 4fc3d964ce
commit 021139d669
12 changed files with 115 additions and 15 deletions

11
view_user_info.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "view_user_info.h"
view_user_info::view_user_info()
{
this->m_refTreeModel = Gtk::ListStore::create(this->m_Columns);
this->tree.set_model(this->m_refTreeModel);
tree.append_column("user", m_Columns.r_user);
tree.append_column("config", m_Columns.r_admin);
this->add(this->tree);
}