Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #ifndef NICKVISIONAPPLICATION_MAINWINDOW_H
- #define NICKVISIONAPPLICATION_MAINWINDOW_H
- #include <gtkmm.h>
- namespace NickvisionApplication::Views
- {
- class MainWindow : public Gtk::Window
- {
- public:
- MainWindow();
- ~MainWindow();
- private:
- Gtk::HeaderBar m_headerBar;
- Gtk::MenuItem m_helpCheckForUpdates;
- Gtk::SeparatorMenuItem m_helpSeparator1;
- Gtk::MenuItem m_helpGitHubRepo;
- Gtk::MenuItem m_helpReportABug;
- Gtk::MenuItem m_helpBuyMeACoffee;
- Gtk::SeparatorMenuItem m_helpSeparator2;
- Gtk::MenuItem m_helpChangelog;
- Gtk::MenuItem m_helpAbout;
- Gtk::Menu m_helpMenu;
- Gtk::MenuButton m_btnHelpMenu;
- Gtk::Button m_btnOpen;
- };
- }
- #endif //NICKVISIONAPPLICATION_MAINWINDOW_H
Advertisement
Add Comment
Please, Sign In to add comment