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

14
view_remove.cpp Normal file
View File

@@ -0,0 +1,14 @@
#include "view_remove.h"
view_remove::view_remove():m_button("remove"),m_VBox(Gtk::ORIENTATION_VERTICAL)
{
set_border_width(5);
add(m_VBox);
m_VBox.pack_start(this->entry);
//Add buttons:
m_VBox.pack_start(m_ButtonBox, Gtk::PACK_SHRINK);
m_ButtonBox.pack_start(m_button, Gtk::PACK_SHRINK);
m_ButtonBox.set_border_width(5);
m_ButtonBox.set_spacing(5);
m_ButtonBox.set_layout(Gtk::BUTTONBOX_END);
}