refactoring, expand interface

This commit is contained in:
2020-05-13 00:56:26 +02:00
parent f9cdde7008
commit 7691c80fb4
12 changed files with 100 additions and 38 deletions

View File

@@ -3,7 +3,6 @@
vista::vista():m_button("send"),m_VBox(Gtk::ORIENTATION_VERTICAL)
{
set_title("remote instaler");
set_border_width(5);
add(m_VBox);
@@ -27,7 +26,6 @@ vista::vista():m_button("send"),m_VBox(Gtk::ORIENTATION_VERTICAL)
m_refTextBuffer1 = Gtk::TextBuffer::create();
//m_refTextBuffer1->set_text("This is the text from TextBuffer #1.");
m_TextView.set_buffer(m_refTextBuffer1);
// The final step is to display this newly created widget...
show_all_children();
}