mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 01:25:27 +00:00
define mem history feature dependencies
This commit is contained in:
parent
9a0e9d3f17
commit
4a2b6144f0
1 changed files with 7 additions and 0 deletions
|
|
@ -1,8 +1,10 @@
|
||||||
#ifndef APP_BROWSER_MAIN_TAB_PAGE_NAVBAR_HISTORY_HPP
|
#ifndef APP_BROWSER_MAIN_TAB_PAGE_NAVBAR_HISTORY_HPP
|
||||||
#define APP_BROWSER_MAIN_TAB_PAGE_NAVBAR_HISTORY_HPP
|
#define APP_BROWSER_MAIN_TAB_PAGE_NAVBAR_HISTORY_HPP
|
||||||
|
|
||||||
|
#include "glibmm/ustring.h"
|
||||||
#include <glibmm/i18n.h>
|
#include <glibmm/i18n.h>
|
||||||
#include <gtkmm/box.h>
|
#include <gtkmm/box.h>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
namespace app::browser::main::tab::page::navbar
|
namespace app::browser::main::tab::page::navbar
|
||||||
{
|
{
|
||||||
|
|
@ -14,6 +16,11 @@ namespace app::browser::main::tab::page::navbar
|
||||||
|
|
||||||
class History : public Gtk::Box
|
class History : public Gtk::Box
|
||||||
{
|
{
|
||||||
|
// Memory
|
||||||
|
std::vector<Glib::ustring> history;
|
||||||
|
std::vector<Glib::ustring>::iterator index;
|
||||||
|
|
||||||
|
// Components
|
||||||
history::Back * back;
|
history::Back * back;
|
||||||
history::Forward * forward;
|
history::Forward * forward;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue