1 /* === S Y N F I G ========================================================= */
2 /*! \file keymapsettings.cpp
3 ** \brief Contains Info for Key Map settings
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === H E A D E R S ======================================================= */
32 #include "keymapsettings.h"
34 #include <gtkmm/accelkey.h>
35 #include <gtkmm/accelmap.h>
36 #include <gtk/gtkaccelmap.h>
40 /* === U S I N G =========================================================== */
43 //using namespace etl;
44 //using namespace synfig;
45 using namespace studio;
48 //using namespace Gtk::Menu_Helpers;
50 /* === M A C R O S ========================================================= */
52 /* === G L O B A L S ======================================================= */
54 /* === P R O C E D U R E S ================================================= */
56 /* === M E T H O D S ======================================================= */
58 /* === E N T R Y P O I N T ================================================= */
60 // KeyMapSettings Definitions
61 KeyMapSettings::KeyMapSettings()
65 KeyMapSettings::~KeyMapSettings()
69 bool KeyMapSettings::set_key(const char *path, guint key, Gdk::ModifierType mod, bool replace)
71 if(gtk_accel_map_lookup_entry(path,NULL))
73 return AccelMap::change_entry(path,key,mod,replace);
76 AccelMap::add_entry(path,key,mod);
81 bool KeyMapSettings::get_key(const char *path, AccelKey *key)
84 if(gtk_accel_map_lookup_entry(path,&ac))
86 *key = AccelKey(ac.accel_key,(Gdk::ModifierType)ac.accel_mods,string(path));
93 bool KeyMapSettings::load(const char *filename)
98 AccelMap::load(filename);
103 bool KeyMapSettings::save(const char *filename)
108 AccelMap::save(filename);