mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
add get_current_tab_label_text method
This commit is contained in:
parent
fe2cf74a42
commit
8e3730f61d
2 changed files with 17 additions and 3 deletions
|
|
@ -27,6 +27,17 @@ Main::~Main()
|
|||
delete tab;
|
||||
}
|
||||
|
||||
// Getters
|
||||
Glib::ustring Main::get_current_tab_label_text()
|
||||
{
|
||||
int page_number = tab->get_current_page();
|
||||
|
||||
return tab->get_label_text(
|
||||
page_number
|
||||
);
|
||||
};
|
||||
|
||||
// Actions
|
||||
void Main::tab_append()
|
||||
{
|
||||
tab->append(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue