mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 09:40:01 +00:00
31 lines
534 B
C++
31 lines
534 B
C++
#ifndef APP_BROWSER_MAIN_HPP
|
|
#define APP_BROWSER_MAIN_HPP
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
namespace app::browser
|
|
{
|
|
namespace main
|
|
{
|
|
class Tab;
|
|
}
|
|
|
|
class Main : public Gtk::Box
|
|
{
|
|
app::browser::main::Tab * tab;
|
|
|
|
public:
|
|
|
|
Main();
|
|
~Main();
|
|
|
|
void tab_append();
|
|
void tab_update();
|
|
void tab_close();
|
|
void tab_close_left();
|
|
void tab_close_right();
|
|
void tab_close_all();
|
|
};
|
|
}
|
|
|
|
#endif // APP_BROWSER_MAIN_HPP
|