/usr/include/gtkmm-2.4/gtkmm/accelkey.h is in libgtkmm-2.4-dev 1:2.24.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | /* $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 Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser 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
|