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
|
// -*- c++ -*-
/* $Id$ */
/*
*
* Copyright 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <gtkmm/accelkey.h>
#include <gtkmm/accelgroup.h>
namespace Gtk
{
AccelKey::AccelKey()
: key_(GDK_KEY_VoidSymbol),
mod_((Gdk::ModifierType)0)
{
}
AccelKey::AccelKey(guint accel_key, Gdk::ModifierType accel_mods,
const Glib::ustring& accel_path)
: key_(accel_key),
mod_(accel_mods),
path_(accel_path)
{
}
AccelKey::AccelKey(const Glib::ustring& accelerator, const Glib::ustring& accel_path)
: path_(accel_path)
{
//Get the key and mod by parsing the accelerator string:
AccelGroup::parse (accelerator, key_, mod_);
}
AccelKey::AccelKey(const AccelKey& src)
{
key_ = src.key_;
mod_ = src.mod_;
path_ = src.path_;
}
AccelKey& AccelKey::operator=(const AccelKey& src)
{
key_ = src.key_;
mod_ = src.mod_;
path_ = src.path_;
return *this;
}
guint AccelKey::get_key() const
{
return key_;
}
Gdk::ModifierType AccelKey::get_mod() const
{
return mod_;
}
Glib::ustring AccelKey::get_path() const
{
return path_;
}
bool AccelKey::is_null() const
{
return ( (key_ == GDK_KEY_VoidSymbol) || !(get_key() > 0) ); //both seem to be invalid.
}
Glib::ustring AccelKey::get_abbrev() const
{
return AccelGroup::name (key_, mod_);
}
} // namespace
|