first commit, base client with gtk3

This commit is contained in:
2020-05-08 12:42:02 +02:00
commit f9cdde7008
17 changed files with 777 additions and 0 deletions

22
vista.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef VISTA_H
#define VISTA_H
#include <gtkmm/button.h>
#include <gtkmm/window.h>
#include <gtkmm/textview.h>
#include <gtkmm/buttonbox.h>
#include <gtkmm/scrolledwindow.h>
#include <gtkmm/box.h>
class vista : public Gtk::Window
{
public:
vista();
Gtk::Button m_button;
Gtk::Box m_VBox;
Gtk::ScrolledWindow m_ScrolledWindow;
Gtk::TextView m_TextView;
Gtk::ButtonBox m_ButtonBox;
Glib::RefPtr<Gtk::TextBuffer> m_refTextBuffer1;
};
#endif // VISTA_H