Yoda/src/app/browser.cpp

29 lines
338 B
C++
Raw Normal View History

2024-08-05 03:15:41 +03:00
#include "browser.h"
2024-08-08 12:44:27 +03:00
using namespace app;
2024-08-05 03:15:41 +03:00
2024-08-08 12:44:27 +03:00
Browser::Browser()
{
set_title(
TITLE
);
set_default_size(
WIDTH,
HEIGHT
);
}
Browser::Header::Header()
{
set_show_title_buttons(
SHOW_TITLE_BUTTONS
);
2024-08-08 13:33:23 +03:00
}
Browser::Container::Container()
{
set_scrollable(
SCROLLABLE
);
2024-08-08 12:44:27 +03:00
}