Yoda/src/app/browser/main.cpp

75 lines
934 B
C++
Raw Normal View History

2024-08-11 22:04:34 +03:00
#include "main.hpp"
#include "main/tab.hpp"
using namespace app::browser;
Main::Main()
{
// Init container
2024-08-12 14:24:28 +03:00
set_orientation(
Gtk::Orientation::VERTICAL
);
2024-08-11 22:04:34 +03:00
set_homogeneous(
true
);
// Init tabs
tab = new main::Tab();
append(
* tab
);
}
2024-08-12 09:45:22 +03:00
Main::~Main()
{
delete tab;
}
2024-08-20 16:27:35 +03:00
// Getters
Glib::ustring Main::get_current_tab_label_text()
{
int page_number = tab->get_current_page();
return tab->get_label_text(
page_number
);
};
// Actions
2024-08-12 18:16:27 +03:00
void Main::tab_append()
2024-08-11 22:04:34 +03:00
{
tab->append(
_("New page")
);
2024-08-12 19:11:00 +03:00
};
2024-08-14 07:11:24 +03:00
void Main::tab_update()
{
2024-08-14 07:35:19 +03:00
tab->update(
tab->get_current_page()
);
2024-08-14 07:11:24 +03:00
};
2024-08-12 19:11:00 +03:00
void Main::tab_close()
{
2024-08-12 21:12:08 +03:00
tab->close(
2024-08-14 07:35:19 +03:00
tab->get_current_page()
2024-08-12 21:12:08 +03:00
);
2024-08-12 20:24:06 +03:00
};
void Main::tab_close_left()
{
tab->close_left();
};
void Main::tab_close_right()
{
tab->close_right();
};
void Main::tab_close_all()
{
tab->close_all();
2024-08-11 22:04:34 +03:00
};