#ifndef APP_BROWSER_H #define APP_BROWSER_H #include #include #include #include namespace app { class Browser : public Gtk::Window { public: const Glib::ustring TITLE = "Yoda"; const int WIDTH = 640; const int HEIGHT = 480; Browser(); class Header : Gtk::HeaderBar { public: const bool SHOW_TITLE_BUTTONS = true; Header(); class Menu : public Gtk::MenuButton { const Glib::ustring TOOLTIP = "Menu"; Menu(); }; class Tab : public Gtk::MenuButton { const Glib::ustring TOOLTIP = "New tab"; Tab(); }; }; class Container : Gtk::Notebook { public: const bool SCROLLABLE = true; const bool REORDERABLE = true; Container(); }; }; } #endif // APP_BROWSER_H