NAME
Gtk2::Ex::History::Button -- button for history "back" or "forward"
SYNOPSIS
use Gtk2::Ex::History::Button;
my $history = Gtk2::Ex::History::Button->new
(history => $history,
way => 'forward');
OBJECT HIERARCHY
Gtk2::Ex::History::Button
is a subclass of Gtk2::Button
.
Gtk2::Widget
Gtk2::Container
Gtk2::Bin
Gtk2::Button
Gtk2::Ex::History::Button
DESCRIPTION
A Gtk2::Ex::History::Button
invokes either back
or forward
on a Gtk2::Ex::History
object.
+--------------+
| ==> Forward |
+--------------+
Mouse button-3 opens a Gtk2::Ex::History::Menu
to select an entry from a menu to jump to, to go more than one place back or forward.
A button like this can be added to a toolbar or similar. If you're using Gtk2::UIManager
then see Gtk2::Ex::History::Action instead.
FUNCTIONS
-
Create and return a new history menu. Optional key/value pairs can be given to set initial properties, as per
Glib::Object->new
.The
history
property should be set to say what to display, andway
for back or forward.my $history = Gtk2::Ex::History::Button->new (history => $history, way => 'forward');
PROPERTIES
history
(Gtk2::Ex::History
object, default undef)-
The history object to act on.
way
(Gtk2::Ex::History::Way
enum, default 'back')-
The direction to go, either "back" or "forward".
The "stock" icon is set from this, either
gtk-go-back
orgtk-go-forward
.
SEE ALSO
Gtk2::Ex::History, Gtk2::Ex::History::Menu, Gtk2::Ex::History::Action, Gtk2::Button
HOME PAGE
http://user42.tuxfamily.org/gtk2-ex-history/index.html
LICENSE
Gtk2-Ex-History is Copyright 2010 Kevin Ryde
Gtk2-Ex-History is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3, or (at your option) any later version.
Gtk2-Ex-History is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Gtk2-Ex-History. If not, see http://www.gnu.org/licenses/.