Paul Davis
449aab3c46
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
95 lines
2.6 KiB
C++
95 lines
2.6 KiB
C++
/* $Id$ */
|
|
#ifndef _GTKMM_ACCELKEY_H
|
|
#define _GTKMM_ACCELKEY_H
|
|
|
|
/* menu_elems.h
|
|
*
|
|
* Copyright (C) 1998-2002 The gtkmm Development Team
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free
|
|
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include <gdk/gdkkeysyms.h>
|
|
#include <gdkmm/types.h>
|
|
|
|
|
|
namespace Gtk
|
|
{
|
|
|
|
/** Defines accelerator key combinations.
|
|
* For instance, pressing Control-Q to activate the File|Quit menu item.
|
|
* Typedefed as Gtk::Menu::AccelKey
|
|
*
|
|
* By defining accelerator paths you can allow the user of your application
|
|
* to change accelerators himself. An example of an accelerator might be
|
|
* "<MainWindow>/File/Open". Modified accelerators may be saved
|
|
* @see Gtk::AccelMap
|
|
* @ingroup Menus
|
|
*/
|
|
class AccelKey
|
|
{
|
|
public:
|
|
AccelKey();
|
|
|
|
/** AccelKey constructor.
|
|
* @param accel_key For instance, 'q'
|
|
* @param accel_mods For instance, Gdk::CONTROL_MASK
|
|
* @param accel_path For instance, "<MainWindow>/File/Open"
|
|
*/
|
|
AccelKey(guint accel_key, Gdk::ModifierType accel_mods,
|
|
const Glib::ustring& accel_path = "");
|
|
|
|
/** AccelKey constructor.
|
|
* @param accelerator For instance, "<control>q" - Use
|
|
* <control>, <shift>, <alt> and <release>.
|
|
* Use F1, F2, etc, for function keys.
|
|
* @param accel_path For instance, "<MainWindow>/File/Open"
|
|
*/
|
|
AccelKey(const Glib::ustring& accelerator,
|
|
const Glib::ustring& accel_path = Glib::ustring());
|
|
|
|
AccelKey(const AccelKey& src);
|
|
|
|
AccelKey& operator=(const AccelKey& src);
|
|
|
|
bool is_null() const;
|
|
|
|
/**
|
|
* Gets the accelerator key.
|
|
*/
|
|
guint get_key() const;
|
|
/**
|
|
* Gets the accelerator modifier.
|
|
*/
|
|
Gdk::ModifierType get_mod() const;
|
|
/**
|
|
* Gets the accelerator path.
|
|
*/
|
|
Glib::ustring get_path() const;
|
|
/**
|
|
* Gets the accelerator representation for labels.
|
|
*/
|
|
Glib::ustring get_abbrev() const;
|
|
|
|
protected:
|
|
guint key_;
|
|
Gdk::ModifierType mod_;
|
|
Glib::ustring path_;
|
|
};
|
|
|
|
} /* namespace Gtk */
|
|
|
|
#endif //_GTKMM_ACCELKEY_H
|