mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 17:45:28 +00:00
draft history buttons group
This commit is contained in:
parent
fb54cc4431
commit
17224ebaaa
10 changed files with 145 additions and 0 deletions
30
src/app/browser/main/tab/data/navbar/history.hpp
Normal file
30
src/app/browser/main/tab/data/navbar/history.hpp
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
#ifndef APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HISTORY_HPP
|
||||
#define APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HISTORY_HPP
|
||||
|
||||
#include <glibmm/i18n.h>
|
||||
#include <gtkmm/box.h>
|
||||
|
||||
namespace app::browser::main::tab::data::navbar
|
||||
{
|
||||
namespace history
|
||||
{
|
||||
class Back;
|
||||
class Forward;
|
||||
}
|
||||
|
||||
class History : public Gtk::Box
|
||||
{
|
||||
private:
|
||||
|
||||
history::Back * back;
|
||||
history::Forward * forward;
|
||||
|
||||
public:
|
||||
|
||||
History();
|
||||
|
||||
~History();
|
||||
};
|
||||
}
|
||||
|
||||
#endif // APP_BROWSER_MAIN_TAB_DATA_NAVBAR_HISTORY_HPP
|
||||
Loading…
Add table
Add a link
Reference in a new issue