mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-30 21:14:14 +00:00
implement tabLabel pointer getter
This commit is contained in:
parent
7fbf9f07b5
commit
a493ed1f95
@ -29,13 +29,13 @@ Tab::~Tab() = default;
|
|||||||
Glib::ustring Tab::get_page_title(
|
Glib::ustring Tab::get_page_title(
|
||||||
const int & PAGE_NUMBER
|
const int & PAGE_NUMBER
|
||||||
) {
|
) {
|
||||||
return get_tab_page_ptr(PAGE_NUMBER)->get_title();
|
return get_tabPage_ptr(PAGE_NUMBER)->get_title();
|
||||||
};
|
};
|
||||||
|
|
||||||
Glib::ustring Tab::get_page_subtitle(
|
Glib::ustring Tab::get_page_subtitle(
|
||||||
const int & PAGE_NUMBER
|
const int & PAGE_NUMBER
|
||||||
) {
|
) {
|
||||||
return get_tab_page_ptr(PAGE_NUMBER)->get_subtitle();
|
return get_tabPage_ptr(PAGE_NUMBER)->get_subtitle();
|
||||||
};
|
};
|
||||||
|
|
||||||
// Actions
|
// Actions
|
||||||
@ -101,29 +101,11 @@ void Tab::close_all()
|
|||||||
void Tab::refresh(
|
void Tab::refresh(
|
||||||
const int & PAGE_NUMBER
|
const int & PAGE_NUMBER
|
||||||
) {
|
) {
|
||||||
auto pageWidget = get_nth_page(
|
auto tabPage = get_tabPage_ptr(
|
||||||
PAGE_NUMBER
|
PAGE_NUMBER
|
||||||
);
|
);
|
||||||
|
|
||||||
if (pageWidget == nullptr)
|
get_tabLabel_ptr(PAGE_NUMBER)->set_label(
|
||||||
{
|
|
||||||
throw _("Tab page not found!");
|
|
||||||
}
|
|
||||||
|
|
||||||
auto labelWidget = get_tab_label(
|
|
||||||
* pageWidget
|
|
||||||
);
|
|
||||||
|
|
||||||
if (labelWidget == nullptr)
|
|
||||||
{
|
|
||||||
throw _("Tab label not found!");
|
|
||||||
}
|
|
||||||
|
|
||||||
auto tabPage = (tab::Page *) pageWidget;
|
|
||||||
|
|
||||||
auto tabLabel = (tab::Label *) labelWidget;
|
|
||||||
|
|
||||||
tabLabel->set_label(
|
|
||||||
tabPage->get_title()
|
tabPage->get_title()
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -148,7 +130,31 @@ void Tab::update(
|
|||||||
} // @TODO
|
} // @TODO
|
||||||
|
|
||||||
// Private helpers
|
// Private helpers
|
||||||
tab::Page * Tab::get_tab_page_ptr(
|
tab::Label * Tab::get_tabLabel_ptr(
|
||||||
|
const int & PAGE_NUMBER
|
||||||
|
) {
|
||||||
|
auto pageWidget = get_nth_page(
|
||||||
|
PAGE_NUMBER
|
||||||
|
);
|
||||||
|
|
||||||
|
if (pageWidget == nullptr)
|
||||||
|
{
|
||||||
|
throw _("Tab page not found!");
|
||||||
|
}
|
||||||
|
|
||||||
|
auto labelWidget = get_tab_label(
|
||||||
|
* pageWidget
|
||||||
|
);
|
||||||
|
|
||||||
|
if (labelWidget == nullptr)
|
||||||
|
{
|
||||||
|
throw _("Tab label not found!");
|
||||||
|
}
|
||||||
|
|
||||||
|
return (tab::Label *) labelWidget;
|
||||||
|
}
|
||||||
|
|
||||||
|
tab::Page * Tab::get_tabPage_ptr(
|
||||||
const int & PAGE_NUMBER
|
const int & PAGE_NUMBER
|
||||||
) {
|
) {
|
||||||
auto pageWidget = get_nth_page(
|
auto pageWidget = get_nth_page(
|
||||||
|
@ -9,6 +9,7 @@ namespace app::browser::main
|
|||||||
{
|
{
|
||||||
namespace tab
|
namespace tab
|
||||||
{
|
{
|
||||||
|
class Label;
|
||||||
class Page;
|
class Page;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -17,7 +18,11 @@ namespace app::browser::main
|
|||||||
const bool REORDERABLE = true;
|
const bool REORDERABLE = true;
|
||||||
const bool SCROLLABLE = true;
|
const bool SCROLLABLE = true;
|
||||||
|
|
||||||
tab::Page * get_tab_page_ptr(
|
tab::Label * get_tabLabel_ptr(
|
||||||
|
const int & PAGE_NUMBER
|
||||||
|
);
|
||||||
|
|
||||||
|
tab::Page * get_tabPage_ptr(
|
||||||
const int & PAGE_NUMBER
|
const int & PAGE_NUMBER
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user