Browse Source

draft history action methods

CPP-GTK4
yggverse 2 months ago
parent
commit
705a9e2a2a
  1. 4
      src/app/browser.cpp
  2. 10
      src/app/browser/main.cpp
  3. 2
      src/app/browser/main.hpp
  4. 6
      src/app/browser/main/tab.cpp
  5. 3
      src/app/browser/main/tab.hpp

4
src/app/browser.cpp

@ -115,7 +115,7 @@ Browser::Browser( @@ -115,7 +115,7 @@ Browser::Browser(
"tab_history_back",
[this]
{
// @TODO
browserMain->tab_history_back();
}
);
@ -123,7 +123,7 @@ Browser::Browser( @@ -123,7 +123,7 @@ Browser::Browser(
"tab_history_forward",
[this]
{
// @TODO
browserMain->tab_history_forward();
}
);
}

10
src/app/browser/main.cpp

@ -79,6 +79,16 @@ void Main::tab_close_all() @@ -79,6 +79,16 @@ void Main::tab_close_all()
mainTab->close_all();
};
void Main::tab_history_back()
{
mainTab->history_back();
};
void Main::tab_history_forward()
{
mainTab->history_forward();
};
void Main::refresh()
{
mainTab->refresh(

2
src/app/browser/main.hpp

@ -35,6 +35,8 @@ namespace app::browser @@ -35,6 +35,8 @@ namespace app::browser
void tab_close_left();
void tab_close_right();
void tab_close();
void tab_history_back();
void tab_history_forward();
void tab_update();
void refresh();

6
src/app/browser/main/tab.cpp

@ -98,6 +98,12 @@ void Tab::close_all() @@ -98,6 +98,12 @@ void Tab::close_all()
}
}
void Tab::history_back()
{} // @TODO
void Tab::history_forward()
{} // @TODO
void Tab::refresh(
const int & PAGE_NUMBER
) {

3
src/app/browser/main/tab.hpp

@ -54,6 +54,9 @@ namespace app::browser::main @@ -54,6 +54,9 @@ namespace app::browser::main
void close_right();
void close_all();
void history_back();
void history_forward();
void refresh(
const int & PAGE_NUMBER
);

Loading…
Cancel
Save