Yoda/src/app/browser.cpp

113 lines
1.8 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(
2024-08-12 21:30:30 +03:00
_("Yoda")
2024-08-08 12:44:27 +03:00
);
set_default_size(
2024-08-12 21:30:30 +03:00
640,
480
2024-08-08 12:44:27 +03:00
);
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-16 19:45:42 +03:00
[this]
{
main->tab_append();
}
2024-08-08 13:33:23 +03:00
);
2024-08-11 09:55:10 +03:00
2024-08-14 07:11:24 +03:00
add_action(
"tab_update",
2024-08-16 19:45:42 +03:00
[this]
{
main->tab_update();
}
2024-08-14 07:11:24 +03:00
);
2024-08-12 20:24:06 +03:00
// Close
2024-08-12 19:11:00 +03:00
add_action(
"tab_close",
2024-08-16 19:45:42 +03:00
[this]
{
main->tab_close();
}
2024-08-12 19:11:00 +03:00
);
2024-08-12 20:24:06 +03:00
// Close submenu
add_action(
"tab_close_left",
2024-08-16 19:45:42 +03:00
[this]
{
main->tab_close_left();
}
2024-08-12 20:24:06 +03:00
);
add_action(
"tab_close_right",
2024-08-16 19:45:42 +03:00
[this]
{
main->tab_close_right();
}
2024-08-12 20:24:06 +03:00
);
add_action(
"tab_close_all",
2024-08-16 19:45:42 +03:00
[this]
{
main->tab_close_all();
}
2024-08-12 20:24:06 +03:00
);
// Tool
2024-08-11 09:55:10 +03:00
add_action(
"debug",
2024-08-16 19:45:42 +03:00
[this]
{
gtk_window_set_interactive_debugging(
true
);
}
2024-08-11 09:55:10 +03:00
);
2024-08-20 16:25:53 +03:00
// Hidden
add_action(
"refresh",
[this]
{
header->set_title(
main->get_current_tab_label_text()
);
}
);
2024-08-11 09:55:10 +03:00
}
2024-08-12 09:45:22 +03:00
Browser::~Browser()
{
delete header;
delete main;
2024-08-16 19:45:42 +03:00
}