mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-13 06:01:21 +00:00
init container constructor
This commit is contained in:
parent
56c63e73c7
commit
00bd8204b8
@ -19,4 +19,11 @@ Browser::Header::Header()
|
|||||||
set_show_title_buttons(
|
set_show_title_buttons(
|
||||||
SHOW_TITLE_BUTTONS
|
SHOW_TITLE_BUTTONS
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Browser::Container::Container()
|
||||||
|
{
|
||||||
|
set_scrollable(
|
||||||
|
SCROLLABLE
|
||||||
|
);
|
||||||
}
|
}
|
@ -28,7 +28,12 @@ namespace app
|
|||||||
|
|
||||||
class Container : Gtk::Notebook
|
class Container : Gtk::Notebook
|
||||||
{
|
{
|
||||||
|
public:
|
||||||
|
|
||||||
|
const bool SCROLLABLE = true;
|
||||||
|
const bool REORDERABLE = true;
|
||||||
|
|
||||||
|
Container();
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user