4 // Copyright (C) 2005 Novell, Inc.
8 // Permission is hereby granted, free of charge, to any person obtaining a copy
9 // of this software and associated documentation files (the "Software"), to deal
10 // in the Software without restriction, including without limitation the rights
11 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12 // copies of the Software, and to permit persons to whom the Software is
13 // furnished to do so, subject to the following conditions:
15 // The above copyright notice and this permission notice shall be included in all
16 // copies or substantial portions of the Software.
18 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
28 using System
.Collections
;
30 using System
.Diagnostics
;
31 using System
.Reflection
;
32 using System
.Xml
.Serialization
;
33 using System
.Text
.RegularExpressions
;
37 namespace Beagle
.Util
{
44 public static Hashtable Sections
;
46 public static IndexingConfig Indexing
= null;
47 public static DaemonConfig Daemon
= null;
48 public static SearchingConfig Searching
= null;
50 //#if ENABLE_WEBSERVICES
51 public static NetworkingConfig Networking
= null;
52 public static WebServicesConfig WebServices
= null;
54 private static string configs_dir
;
55 private static Hashtable mtimes
;
56 private static Hashtable subscriptions
;
58 private static bool watching_for_updates
;
59 private static bool update_watch_present
;
61 private static BindingFlags method_search_flags
= BindingFlags
.NonPublic
| BindingFlags
.Instance
| BindingFlags
.InvokeMethod
;
63 public delegate void ConfigUpdateHandler (Section section
);
67 Sections
= new Hashtable (3);
68 mtimes
= new Hashtable (3);
69 subscriptions
= new Hashtable (3);
71 configs_dir
= Path
.Combine (PathFinder
.StorageDir
, "config");
72 if (!Directory
.Exists (configs_dir
))
73 Directory
.CreateDirectory (configs_dir
);
78 public static void WatchForUpdates ()
80 // Make sure we don't try and watch for updates more than once
81 if (update_watch_present
)
84 if (Inotify
.Enabled
) {
85 Inotify
.Subscribe (configs_dir
, OnInotifyEvent
, Inotify
.EventType
.Create
| Inotify
.EventType
.CloseWrite
);
87 // Poll for updates every 60 secs
88 GLib
.Timeout
.Add (60000, new GLib
.TimeoutHandler (CheckForUpdates
));
91 update_watch_present
= true;
94 private static void OnInotifyEvent (Inotify
.Watch watch
, string path
, string subitem
, string srcpath
, Inotify
.EventType type
)
96 if (subitem
== "" || watching_for_updates
== false)
102 private static bool CheckForUpdates ()
104 if (watching_for_updates
)
109 public static void Subscribe (Type type
, ConfigUpdateHandler callback
)
111 if (!subscriptions
.ContainsKey (type
))
112 subscriptions
.Add (type
, new ArrayList (1));
114 ArrayList callbacks
= (ArrayList
) subscriptions
[type
];
115 callbacks
.Add (callback
);
118 private static void NotifySubscribers (Section section
)
120 Type type
= section
.GetType ();
121 ArrayList callbacks
= (ArrayList
) subscriptions
[type
];
123 if (callbacks
== null)
126 foreach (ConfigUpdateHandler callback
in callbacks
)
130 public static void Load ()
135 public static void Load (bool force
)
140 LoadFile (typeof (IndexingConfig
), Indexing
, out temp
, force
);
141 Indexing
= (IndexingConfig
) temp
;
142 NotifySubscribers (Indexing
);
144 LoadFile (typeof (DaemonConfig
), Daemon
, out temp
, force
);
145 Daemon
= (DaemonConfig
) temp
;
146 NotifySubscribers (Daemon
);
148 LoadFile (typeof (SearchingConfig
), Searching
, out temp
, force
);
149 Searching
= (SearchingConfig
) temp
;
150 NotifySubscribers (Searching
);
152 //#if ENABLE_WEBSERVICES
153 LoadFile (typeof (NetworkingConfig
), Networking
, out temp
, force
);
154 Networking
= (NetworkingConfig
) temp
;
155 NotifySubscribers (Networking
);
157 LoadFile (typeof (WebServicesConfig
), WebServices
, out temp
, force
);
158 WebServices
= (WebServicesConfig
) temp
;
159 NotifySubscribers (WebServices
);
162 watching_for_updates
= true;
165 public static void Save ()
170 public static void Save (bool force
)
172 foreach (Section section
in Sections
.Values
)
173 if (force
|| section
.SaveNeeded
)
177 private static bool LoadFile (Type type
, Section current
, out Section section
, bool force
)
180 object [] attrs
= Attribute
.GetCustomAttributes (type
, typeof (ConfigSection
));
181 if (attrs
.Length
== 0)
182 throw new ConfigException ("Could not find ConfigSection attribute on " + type
);
184 string sectionname
= ((ConfigSection
) attrs
[0]).Name
;
185 string filename
= sectionname
+ ".xml";
186 string filepath
= Path
.Combine (configs_dir
, filename
);
187 if (!File
.Exists (filepath
)) {
189 ConstructDefaultSection (type
, sectionname
, out section
);
193 if (!force
&& current
!= null && mtimes
.ContainsKey (sectionname
) &&
194 File
.GetLastWriteTimeUtc (filepath
).CompareTo ((DateTime
) mtimes
[sectionname
]) <= 0)
197 Logger
.Log
.Debug ("Loading {0} from {1}", type
, filename
);
198 FileStream fs
= null;
201 fs
= File
.Open (filepath
, FileMode
.Open
, FileAccess
.Read
, FileShare
.Read
);
202 XmlSerializer serializer
= new XmlSerializer (type
);
203 section
= (Section
) serializer
.Deserialize (fs
);
204 } catch (Exception e
) {
205 Logger
.Log
.Error ("Could not load configuration from {0}: {1}", filename
, e
.Message
);
209 ConstructDefaultSection (type
, sectionname
, out section
);
214 Sections
.Remove (sectionname
);
215 Sections
.Add (sectionname
, section
);
216 mtimes
.Remove (sectionname
);
217 mtimes
.Add (sectionname
, File
.GetLastWriteTimeUtc (filepath
));
221 private static bool SaveFile (Section section
)
223 Type type
= section
.GetType ();
224 object [] attrs
= Attribute
.GetCustomAttributes (type
, typeof (ConfigSection
));
225 if (attrs
.Length
== 0)
226 throw new ConfigException ("Could not find ConfigSection attribute on " + type
);
228 string sectionname
= ((ConfigSection
) attrs
[0]).Name
;
229 string filename
= sectionname
+ ".xml";
230 string filepath
= Path
.Combine (configs_dir
, filename
);
232 Logger
.Log
.Debug ("Saving {0} to {1}", type
, filename
);
233 FileStream fs
= null;
236 watching_for_updates
= false;
237 fs
= new FileStream (filepath
, FileMode
.Create
);
238 XmlSerializer serializer
= new XmlSerializer (type
);
239 XmlFu
.SerializeUtf8 (serializer
, fs
, section
);
240 } catch (Exception e
) {
243 Logger
.Log
.Error ("Could not save configuration to {0}: {1}", filename
, e
);
244 watching_for_updates
= true;
249 mtimes
.Remove (sectionname
);
250 mtimes
.Add (sectionname
, File
.GetLastWriteTimeUtc (filepath
));
251 watching_for_updates
= true;
255 private static void ConstructDefaultSection (Type type
, string sectionname
, out Section section
)
257 ConstructorInfo ctor
= type
.GetConstructor (Type
.EmptyTypes
);
258 section
= (Section
) ctor
.Invoke (null);
259 Sections
.Remove (sectionname
);
260 Sections
.Add (sectionname
, section
);
263 // Lists all config file options in a hash table where key is option name,
264 // and value is description.
265 public static Hashtable
GetOptions (Section section
)
267 Hashtable options
= new Hashtable ();
268 MemberInfo
[] members
= section
.GetType ().GetMembers (method_search_flags
);
270 // Find all of the methods ("options") inside the specified section
271 // object which have the ConfigOption attribute.
272 foreach (MemberInfo member
in members
) {
273 object [] attrs
= member
.GetCustomAttributes (typeof (ConfigOption
), false);
274 if (attrs
.Length
> 0)
275 options
.Add (member
.Name
, ((ConfigOption
) attrs
[0]).Description
);
281 public static bool InvokeOption (Section section
, string option
, string [] args
, out string output
)
283 MethodInfo method
= section
.GetType ().GetMethod (option
, method_search_flags
);
284 if (method
== null) {
285 string msg
= String
.Format ("No such method '{0}' for section '{1}'", option
, section
);
286 throw new ConfigException(msg
);
288 object [] attrs
= method
.GetCustomAttributes (typeof (ConfigOption
), false);
289 if (attrs
.Length
== 0) {
290 string msg
= String
.Format ("Method '{0}' is not a configurable option", option
);
291 throw new ConfigException (msg
);
294 // Check the required number of parameters have been provided
295 ConfigOption attr
= (ConfigOption
) attrs
[0];
296 if (attr
.Params
> 0 && args
.Length
< attr
.Params
) {
297 string msg
= String
.Format ("Option '{0}' requires {1} parameter(s): {2}", option
, attr
.Params
, attr
.ParamsDescription
);
298 throw new ConfigException (msg
);
301 object [] methodparams
= { null, args }
;
302 bool result
= (bool) method
.Invoke (section
, methodparams
);
303 output
= (string) methodparams
[0];
305 // Mark the section as save-needed if we just changed something
306 if (result
&& attr
.IsMutator
)
307 section
.SaveNeeded
= true;
312 [ConfigSection (Name
="searching")]
313 public class SearchingConfig
: Section
{
315 private bool autostart
= true;
316 public bool Autostart
{
317 get { return autostart; }
318 set { autostart = value; }
321 private KeyBinding show_search_window_binding
= new KeyBinding ("F12");
322 public KeyBinding ShowSearchWindowBinding
{
323 get { return show_search_window_binding; }
324 set { show_search_window_binding = value; }
327 private int max_displayed
= 5;
328 public int MaxDisplayed
{
329 get { return max_displayed; }
334 max_displayed
= value;
338 // BeagleSearch window position and dimension
339 // stored as percentage of screen co-ordinates
340 // to deal with change of resolution problem - hints from tberman
342 private float beagle_search_pos_x
= 0;
343 public float BeaglePosX
{
344 get { return beagle_search_pos_x; }
345 set { beagle_search_pos_x = value; }
348 private float beagle_search_pos_y
= 0;
349 public float BeaglePosY
{
350 get { return beagle_search_pos_y; }
351 set { beagle_search_pos_y = value; }
354 private float beagle_search_width
= 0;
355 public float BeagleSearchWidth
{
356 get { return beagle_search_width; }
357 set { beagle_search_width = value; }
360 private float beagle_search_height
= 0;
361 public float BeagleSearchHeight
{
362 get { return beagle_search_height; }
363 set { beagle_search_height = value; }
366 // ah!We want a Queue but Queue doesnt serialize *easily*
367 private ArrayList search_history
= new ArrayList ();
368 public ArrayList SearchHistory
{
369 get { return search_history; }
370 set { search_history = value; }
375 [ConfigSection (Name
="daemon")]
376 public class DaemonConfig
: Section
{
377 private ArrayList static_queryables
= new ArrayList ();
378 public ArrayList StaticQueryables
{
379 get { return static_queryables; }
380 set { static_queryables = value; }
383 // By default, every backend is allowed.
384 // Only maintain a list of denied backends.
385 private ArrayList denied_backends
= new ArrayList ();
386 public ArrayList DeniedBackends
{
387 get { return denied_backends; }
388 set { denied_backends = value; }
391 private bool allow_static_backend
= false; // by default, false
392 public bool AllowStaticBackend
{
393 get { return allow_static_backend; }
394 // Don't really want to expose this, but serialization requires it
395 set { allow_static_backend = value; }
398 private bool index_synchronization
= true;
399 public bool IndexSynchronization
{
400 get { return index_synchronization; }
401 // Don't really want to expose this, but serialization requires it
402 set { index_synchronization = value; }
405 [ConfigOption (Description
="Enable a backend", Params
=1, ParamsDescription
="Name of the backend to enable")]
406 internal bool AllowBackend (out string output
, string [] args
)
408 denied_backends
.Remove (args
[0]);
409 output
= "Backend allowed (need to restart beagled for changes to take effect).";
413 [ConfigOption (Description
="Disable a backend", Params
=1, ParamsDescription
="Name of the backend to disable")]
414 internal bool DenyBackend (out string output
, string [] args
)
416 denied_backends
.Add (args
[0]);
417 output
= "Backend disabled (need to restart beagled for changes to take effect).";
421 private bool allow_root
= false;
422 public bool AllowRoot
{
423 get { return allow_root; }
424 set { allow_root = value; }
427 [ConfigOption (Description
="Add a static queryable", Params
=1, ParamsDescription
="Index path")]
428 internal bool AddStaticQueryable (out string output
, string [] args
)
430 static_queryables
.Add (args
[0]);
431 output
= "Static queryable added.";
435 [ConfigOption (Description
="Remove a static queryable", Params
=1, ParamsDescription
="Index path")]
436 internal bool DelStaticQueryable (out string output
, string [] args
)
438 static_queryables
.Remove (args
[0]);
439 output
= "Static queryable removed.";
443 [ConfigOption (Description
="List user-specified static queryables", IsMutator
=false)]
444 internal bool ListStaticQueryables (out string output
, string [] args
)
446 output
= "User-specified static queryables:\n";
447 foreach (string index_path
in static_queryables
)
448 output
+= String
.Format (" - {0}\n", index_path
);
452 [ConfigOption (Description
="Toggles whether static indexes will be enabled")]
453 internal bool ToggleAllowStaticBackend (out string output
, string [] args
)
455 allow_static_backend
= !allow_static_backend
;
456 output
= "Static indexes are " + ((allow_static_backend
) ? "enabled" : "disabled") + " (need to restart beagled for changes to take effect).";
460 [ConfigOption (Description
="Toggles whether your indexes will be synchronized locally if your home directory is on a network device (eg. NFS/Samba)")]
461 internal bool ToggleIndexSynchronization (out string output
, string [] args
)
463 index_synchronization
= !index_synchronization
;
464 output
= "Index Synchronization is " + ((index_synchronization
) ? "enabled" : "disabled") + ".";
468 [ConfigOption (Description
="Toggles whether Beagle can be run as root")]
469 internal bool ToggleAllowRoot (out string output
, string [] args
)
471 allow_root
= ! allow_root
;
473 output
= "Beagle is now permitted to run as root";
475 output
= "Beagle is no longer permitted to run as root";
480 [ConfigSection (Name
="indexing")]
481 public class IndexingConfig
: Section
483 private ArrayList roots
= new ArrayList ();
485 [XmlArrayItem(ElementName
="Root", Type
=typeof(string))]
486 public ArrayList Roots
{
487 get { return roots; }
488 set { roots = value; }
491 private bool index_home_dir
= true;
492 public bool IndexHomeDir
{
493 get { return index_home_dir; }
494 set { index_home_dir = value; }
497 private ArrayList excludes
= new ArrayList ();
499 [XmlArrayItem (ElementName
="ExcludeItem", Type
=typeof(ExcludeItem
))]
500 public ArrayList Excludes
{
501 get { return excludes; }
502 set { excludes = value; }
505 [ConfigOption (Description
="List the indexing roots", IsMutator
=false)]
506 internal bool ListRoots (out string output
, string [] args
)
508 output
= "Current roots:\n";
509 if (this.index_home_dir
== true)
510 output
+= " - Your home directory\n";
511 foreach (string root
in roots
)
512 output
+= " - " + root
+ "\n";
517 [ConfigOption (Description
="Toggles whether your home directory is to be indexed as a root")]
518 internal bool IndexHome (out string output
, string [] args
)
521 output
= "Your home directory will not be indexed.";
523 output
= "Your home directory will be indexed.";
524 index_home_dir
= !index_home_dir
;
528 [ConfigOption (Description
="Add a root path to be indexed", Params
=1, ParamsDescription
="A path")]
529 internal bool AddRoot (out string output
, string [] args
)
531 roots
.Add (args
[0]);
532 output
= "Root added.";
536 [ConfigOption (Description
="Remove an indexing root", Params
=1, ParamsDescription
="A path")]
537 internal bool DelRoot (out string output
, string [] args
)
539 roots
.Remove (args
[0]);
540 output
= "Root removed.";
544 [ConfigOption (Description
="List user-specified resources to be excluded from indexing", IsMutator
=false)]
545 internal bool ListExcludes (out string output
, string [] args
)
547 output
= "User-specified resources to be excluded from indexing:\n";
548 foreach (ExcludeItem exclude_item
in excludes
)
549 output
+= String
.Format (" - [{0}] {1}\n", exclude_item
.Type
.ToString (), exclude_item
.Value
);
553 [ConfigOption (Description
="Add a resource to exclude from indexing", Params
=2, ParamsDescription
="A type [path/pattern/mailfolder], a path/pattern/name")]
554 internal bool AddExclude (out string output
, string [] args
)
558 type
= (ExcludeType
) Enum
.Parse (typeof (ExcludeType
), args
[0], true);
559 } catch (Exception e
) {
560 output
= String
.Format("Invalid type '{0}'. Valid types: Path, Pattern, MailFolder", args
[0]);
564 excludes
.Add (new ExcludeItem (type
, args
[1]));
565 output
= "Exclude added.";
569 [ConfigOption (Description
="Remove an excluded resource", Params
=2, ParamsDescription
="A type [path/pattern/mailfolder], a path/pattern/name")]
570 internal bool DelExclude (out string output
, string [] args
)
574 type
= (ExcludeType
) Enum
.Parse (typeof (ExcludeType
), args
[0], true);
575 } catch (Exception e
) {
576 output
= String
.Format("Invalid type '{0}'. Valid types: Path, Pattern, MailFolder", args
[0]);
580 foreach (ExcludeItem item
in excludes
) {
581 if (item
.Type
!= type
|| item
.Value
!= args
[1])
583 excludes
.Remove (item
);
584 output
= "Exclude removed.";
588 output
= "Could not find requested exclude to remove.";
594 //#if ENABLE_WEBSERVICES
595 [ConfigSection (Name
="webservices")]
596 public class WebServicesConfig
: Section
598 private ArrayList publicFolders
= new ArrayList ();
600 [XmlArrayItem(ElementName
="PublicFolders", Type
=typeof(string))]
601 public ArrayList PublicFolders
{
602 get { return publicFolders; }
603 set { publicFolders = value; }
606 private bool allowGlobalAccess
= true;
607 public bool AllowGlobalAccess
{
608 get { return allowGlobalAccess; }
609 set { allowGlobalAccess = value; }
612 [ConfigOption (Description
="List the public folders", IsMutator
=false)]
613 internal bool ListPublicFolders(out string output
, string [] args
)
615 output
= "Current list of public folders:\n";
617 foreach (string pf
in publicFolders
)
618 output
+= " - " + pf
+ "\n";
623 [ConfigOption (Description
="Check current configuration of global access to Beagle web-services", IsMutator
=false)]
624 internal bool CheckGlobalAccess(out string output
, string [] args
)
626 if (allowGlobalAccess
)
627 output
= "Global Access to Beagle WebServices is currently ENABLED.";
629 output
= "Global Access to Beagle WebServices is currently DISABLED.";
634 [ConfigOption (Description
="Enable/Disable global access to Beagle web-services")]
635 internal bool SwitchGlobalAccess (out string output
, string [] args
)
637 allowGlobalAccess
= !allowGlobalAccess
;
639 if (allowGlobalAccess
)
640 output
= "Global Access to Beagle WebServices now ENABLED.";
642 output
= "Global Access to Beagle WebServices now DISABLED.";
647 [ConfigOption (Description
="Add public web-service access to a folder", Params
=1, ParamsDescription
="A path")]
648 internal bool AddPublicFolder (out string output
, string [] args
)
650 publicFolders
.Add (args
[0]);
651 output
= "PublicFolder " + args
[0] + " added.";
655 [ConfigOption (Description
="Remove public web-service access to a folder", Params
=1, ParamsDescription
="A path")]
656 internal bool DelPublicFolder (out string output
, string [] args
)
658 publicFolders
.Remove (args
[0]);
659 output
= "PublicFolder " + args
[0] + " removed.";
665 [ConfigSection (Name
="networking")]
666 public class NetworkingConfig
: Section
668 private ArrayList netBeagleNodes
= new ArrayList ();
671 [XmlArrayItem(ElementName
="NetBeagleNodes", Type
=typeof(string))]
672 public ArrayList NetBeagleNodes
{
673 get { return netBeagleNodes; }
674 set { netBeagleNodes = value; }
677 [ConfigOption (Description
="List Networked Beagle Daemons to query", IsMutator
=false)]
678 internal bool ListBeagleNodes (out string output
, string [] args
)
680 output
= "Current list of Networked Beagle Daemons to query:\n";
682 foreach (string nb
in netBeagleNodes
)
683 output
+= " - " + nb
+ "\n";
688 [ConfigOption (Description
="Add a Networked Beagle Daemon to query", Params
=1, ParamsDescription
="HostName:PortNo")]
689 internal bool AddBeagleNode (out string output
, string [] args
)
691 string node
= args
[0];
693 if (((string[])node
.Split(':')).Length
< 2)
694 node
= args
[0].Trim() + ":8888";
696 netBeagleNodes
.Add(node
);
697 output
= "Networked Beagle Daemon \"" + node
+"\" added.";
701 [ConfigOption (Description
="Remove a configured Networked Beagle Daemon", Params
=1, ParamsDescription
="HostName:PortNo")]
702 internal bool DelBeagleNode (out string output
, string [] args
)
704 string node
= args
[0];
706 if (((string[])node
.Split(':')).Length
< 2)
707 node
= args
[0].Trim() + ":8888";
709 netBeagleNodes
.Remove(node
);
710 output
= "Networked Beagle Daemon \"" + node
+"\" removed.";
716 public class Section
{
718 public bool SaveNeeded
= false;
721 private class ConfigOption
: Attribute
{
722 public string Description
;
724 public string ParamsDescription
;
725 public bool IsMutator
= true;
728 private class ConfigSection
: Attribute
{
732 public class ConfigException
: Exception
{
733 public ConfigException (string msg
) : base (msg
) { }
738 //////////////////////////////////////////////////////////////////////
740 public enum ExcludeType
{
746 public class ExcludeItem
{
748 private ExcludeType type
;
752 public ExcludeType Type
{
754 set { type = value; }
757 private string exactMatch
;
758 private string prefix
;
759 private string suffix
;
763 public string Value
{
767 case ExcludeType
.Path
:
768 case ExcludeType
.MailFolder
:
772 case ExcludeType
.Pattern
:
773 if (value.StartsWith ("/") && value.EndsWith ("/")) {
774 regex
= new Regex (value.Substring (1, value.Length
- 2));
778 int i
= value.IndexOf ('*');
783 prefix
= value.Substring (0, i
);
784 if (i
< value.Length
-1)
785 suffix
= value.Substring (i
+1);
794 public ExcludeItem () {}
796 public ExcludeItem (ExcludeType type
, string value) {
801 public bool IsMatch (string param
)
804 case ExcludeType
.Path
:
805 case ExcludeType
.MailFolder
:
806 if (prefix
!= null && ! param
.StartsWith (prefix
))
811 case ExcludeType
.Pattern
:
812 if (exactMatch
!= null)
813 return param
== exactMatch
;
814 if (prefix
!= null && ! param
.StartsWith (prefix
))
816 if (suffix
!= null && ! param
.EndsWith (suffix
))
818 if (regex
!= null && ! regex
.IsMatch (param
))
827 public override bool Equals (object obj
)
829 ExcludeItem exclude
= obj
as ExcludeItem
;
830 return (exclude
!= null && exclude
.Type
== type
&& exclude
.Value
== val
);
833 public override int GetHashCode ()
835 return (this.Value
.GetHashCode () ^
(int) this.Type
);
840 //////////////////////////////////////////////////////////////////////
842 public class KeyBinding
{
846 public bool Ctrl
= false;
848 public bool Alt
= false;
850 public KeyBinding () {}
851 public KeyBinding (string key
) : this (key
, false, false) {}
853 public KeyBinding (string key
, bool ctrl
, bool alt
)
860 public override string ToString ()
874 public string ToReadableString ()
876 return ToString ().Replace (">", "-").Replace ("<", "");