Yoda/src/app/browser.cpp

129 lines
2.0 KiB
C++
Raw Normal View History

#include "browser.hpp"
#include "browser/header.hpp"
2024-08-11 22:04:34 +03:00
#include "browser/main.hpp"
2024-08-05 03:15:41 +03:00
2024-08-08 12:44:27 +03:00
using namespace app;
2024-08-05 03:15:41 +03:00
2024-08-11 09:55:10 +03:00
Browser::Browser(
2024-08-12 14:18:09 +03:00
//const Glib::RefPtr<Gtk::Application> & app,
//const std::shared_ptr<lib::Database> & db
2024-08-11 09:55:10 +03:00
) {
2024-08-11 22:04:34 +03:00
// Init window
2024-08-08 12:44:27 +03:00
set_title(
TITLE
);
set_default_size(
WIDTH,
HEIGHT
);
2024-08-08 15:19:04 +03:00
2024-08-11 22:04:34 +03:00
// Init header widget
header = new browser::Header();
2024-08-08 15:19:04 +03:00
set_titlebar(
2024-08-11 22:04:34 +03:00
* header
);
// Init main widget
main = new browser::Main();
set_child(
* main
);
// Init actions
add_action(
2024-08-12 18:12:01 +03:00
"tab_append",
2024-08-11 22:04:34 +03:00
sigc::mem_fun(
* this,
2024-08-12 18:16:27 +03:00
& Browser::main_tab_append
2024-08-11 22:04:34 +03:00
)
2024-08-08 13:33:23 +03:00
);
2024-08-11 09:55:10 +03:00
2024-08-12 20:24:06 +03:00
// Close
2024-08-12 19:11:00 +03:00
add_action(
"tab_close",
sigc::mem_fun(
* this,
& Browser::main_tab_close
)
);
2024-08-12 20:24:06 +03:00
// Close submenu
add_action(
"tab_close_left",
sigc::mem_fun(
* this,
& Browser::main_tab_close_left
)
);
add_action(
"tab_close_right",
sigc::mem_fun(
* this,
& Browser::main_tab_close_right
)
);
add_action(
"tab_close_all",
sigc::mem_fun(
* this,
& Browser::main_tab_close_all
)
);
// Tool
2024-08-11 09:55:10 +03:00
add_action(
"debug",
sigc::mem_fun(
* this,
& Browser::debug
)
);
}
2024-08-12 09:45:22 +03:00
Browser::~Browser()
{
destroy();
delete header;
header = nullptr;
delete main;
main = nullptr;
}
2024-08-12 18:16:27 +03:00
void Browser::main_tab_append()
2024-08-11 22:04:34 +03:00
{
2024-08-12 18:16:27 +03:00
main->tab_append();
2024-08-11 22:04:34 +03:00
};
2024-08-12 19:11:00 +03:00
void Browser::main_tab_close()
{
main->tab_close();
};
2024-08-12 20:24:06 +03:00
void Browser::main_tab_close_left()
{
main->tab_close_left();
};
void Browser::main_tab_close_right()
{
main->tab_close_right();
};
void Browser::main_tab_close_all()
{
main->tab_close_all();
};
2024-08-11 09:55:10 +03:00
void Browser::debug()
{
gtk_window_set_interactive_debugging(
true
);
};