mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-02-05 07:54:14 +00:00
init header constructor, update data types
This commit is contained in:
parent
d3e894e0ac
commit
56c63e73c7
@ -12,4 +12,11 @@ Browser::Browser()
|
||||
WIDTH,
|
||||
HEIGHT
|
||||
);
|
||||
}
|
||||
|
||||
Browser::Header::Header()
|
||||
{
|
||||
set_show_title_buttons(
|
||||
SHOW_TITLE_BUTTONS
|
||||
);
|
||||
}
|
@ -11,15 +11,19 @@ namespace app
|
||||
{
|
||||
public:
|
||||
|
||||
const char* TITLE = "Basic application";
|
||||
const guint WIDTH = 640;
|
||||
const guint HEIGHT = 480;
|
||||
const Glib::ustring TITLE = "Basic application";
|
||||
const int WIDTH = 640;
|
||||
const int HEIGHT = 480;
|
||||
|
||||
Browser();
|
||||
|
||||
class Header : Gtk::HeaderBar
|
||||
{
|
||||
public:
|
||||
|
||||
const bool SHOW_TITLE_BUTTONS = true;
|
||||
|
||||
Header();
|
||||
};
|
||||
|
||||
class Container : Gtk::Notebook
|
||||
|
Loading…
x
Reference in New Issue
Block a user