mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 09:05:27 +00:00
set defaults in header file, add comments
This commit is contained in:
parent
c3f84a05a2
commit
afa21ea17a
2 changed files with 7 additions and 1 deletions
|
|
@ -11,7 +11,7 @@ Main::Main()
|
|||
);
|
||||
|
||||
set_homogeneous(
|
||||
true
|
||||
HOMOGENEOUS
|
||||
);
|
||||
|
||||
// Init tabs
|
||||
|
|
|
|||
|
|
@ -14,15 +14,21 @@ namespace app::browser
|
|||
|
||||
class Main : public Gtk::Box
|
||||
{
|
||||
// Components
|
||||
main::Tab * mainTab;
|
||||
|
||||
// Defaults
|
||||
const bool HOMOGENEOUS = true;
|
||||
|
||||
public:
|
||||
|
||||
Main();
|
||||
~Main();
|
||||
|
||||
// Getters
|
||||
Glib::ustring get_current_tab_label_text();
|
||||
|
||||
// Actions
|
||||
void tab_append();
|
||||
void tab_close_all();
|
||||
void tab_close_left();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue