mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
draft back/forward actions
This commit is contained in:
parent
b3c00d29be
commit
75aaa6e717
11 changed files with 69 additions and 31 deletions
|
|
@ -30,6 +30,16 @@ History::~History()
|
|||
};
|
||||
|
||||
// Actions
|
||||
void History::back()
|
||||
{
|
||||
historyBack->activate();
|
||||
}
|
||||
|
||||
void History::forward()
|
||||
{
|
||||
historyForward->activate();
|
||||
}
|
||||
|
||||
void History::push(
|
||||
const Glib::ustring & REQUEST
|
||||
) {
|
||||
|
|
@ -50,10 +60,10 @@ void History::push(
|
|||
void History::refresh()
|
||||
{
|
||||
historyBack->set_sensitive(
|
||||
false // @TODO
|
||||
false // @TODO memory.size() > 0
|
||||
);
|
||||
|
||||
historyForward->set_sensitive(
|
||||
false // @TODO
|
||||
false // @TODO memory.size() > 0
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue