Guest User

Untitled

a guest
Aug 1st, 2021
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.81 KB | None | 0 0
  1. #ifndef NICKVISIONAPPLICATION_MAINWINDOW_H
  2. #define NICKVISIONAPPLICATION_MAINWINDOW_H
  3.  
  4. #include <gtkmm.h>
  5.  
  6. namespace NickvisionApplication::Views
  7. {
  8.     class MainWindow : public Gtk::Window
  9.     {
  10.     public:
  11.         MainWindow();
  12.         ~MainWindow();
  13.  
  14.     private:
  15.         Gtk::HeaderBar m_headerBar;
  16.         Gtk::MenuItem m_helpCheckForUpdates;
  17.         Gtk::SeparatorMenuItem m_helpSeparator1;
  18.         Gtk::MenuItem m_helpGitHubRepo;
  19.         Gtk::MenuItem m_helpReportABug;
  20.         Gtk::MenuItem m_helpBuyMeACoffee;
  21.         Gtk::SeparatorMenuItem m_helpSeparator2;
  22.         Gtk::MenuItem m_helpChangelog;
  23.         Gtk::MenuItem m_helpAbout;
  24.         Gtk::Menu m_helpMenu;
  25.         Gtk::MenuButton m_btnHelpMenu;
  26.         Gtk::Button m_btnOpen;
  27.     };
  28. }
  29.  
  30. #endif //NICKVISIONAPPLICATION_MAINWINDOW_H
  31.  
Advertisement
Add Comment
Please, Sign In to add comment