X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FKeyMap.h;h=1a37a1fc99772fae1ded88eaaf5c86dee5950e86;hb=c0f4aa8c4b786dcfb3699b175dff63f109abba98;hp=9957bfe3a8013a3bf4b3b33885d394ece0b78966;hpb=9b9b14506dfa226f9c409147eda10c3cb581fb94;p=lyx.git diff --git a/src/KeyMap.h b/src/KeyMap.h index 9957bfe3a8..1a37a1fc99 100644 --- a/src/KeyMap.h +++ b/src/KeyMap.h @@ -26,6 +26,10 @@ namespace lyx { +namespace support { + class FileName; +} + /// Defines key maps and actions for key sequences class KeyMap { public: @@ -37,6 +41,12 @@ public: UserExtraUnbind //< \unbind loaded from user.bind, without //< corresponding entry in system bind file. }; + enum BindReadType { + MissingOK, //< It's OK if this file is missing. + Fallback, //< If missing, fallback to default "cua". This should only + //< be used when attempting to read the user-secified bind file. + Default //< Report error and return. + }; /** * Bind/Unbind a key sequence to an action. * @return 0 on success, or position in string seq where error @@ -72,8 +82,10 @@ public: * * @param bind_file bind file * @param unbind_map pointer to a KeyMap that holds \unbind bindings + * @param rt how to respond if the file can't be found */ - bool read(std::string const & bind_file, KeyMap * unbind_map = 0); + bool read(std::string const & bind_file, KeyMap * unbind_map = 0, + BindReadType rt = Default); /** write to a bind file. * @param append append to the bind_file instead of overwrite it @@ -151,11 +163,14 @@ private: /// Modifier masks ModifierPair mod; /// Keymap for prefix keys - boost::shared_ptr table; + boost::shared_ptr prefixes; /// Action for !prefix keys FuncRequest func; }; + /// + bool read(support::FileName const & bind_file, KeyMap * unbind_map = 0); + /** * Given an action, find all keybindings * @param func the action