4 * This file is part of LyX, the document processor.
5 * Licence details can be found in the file COPYING.
7 * \author Lars Gullik Bjønnes
10 * Full author contact details are available in file CREDITS.
28 * This class is a container for LyX actions. It associates a name to
29 * most of them and describes some of their properties.
33 /// category of an action, used in the Shortcuts dialog
35 Hidden
, //< Not listed for configuration
36 Edit
, //< Cursor and mouse movement, copy/paste etc
38 Buffer
, //< Buffer and window related
39 Layout
, //< Font, Layout and textclass related
40 System
, //< Lyx preference, server etc
44 /// information for an action
48 /// the func_attrib values set
50 /// the category of this func
56 LyXAction(LyXAction
const &);
57 void operator=(LyXAction
const &);
59 /// type for map between a function name and its action
60 typedef std::map
<std::string
, FuncCode
> func_map
;
61 /// type for map between an action and its info
62 typedef std::map
<FuncCode
, FuncInfo
> info_map
;
64 /// possible "permissions" for an action
66 Noop
= 0, //< Nothing special about this func
67 ReadOnly
= 1, //< Can be used in RO mode (perhaps this should change); no automatic markDirty
68 NoBuffer
= 2, //< Can be used when there is no document open
69 Argument
= 4, //< Requires argument
70 NoUpdate
= 8, //< Does not (usually) require update
71 SingleParUpdate
= 16, //< Usually only requires this par updated
72 AtPoint
= 32, //< dispatch first to inset at cursor if there is one
73 NoInternal
= 64, //< Cannot be used for internal, non-document Buffers
79 * Returns an pseudoaction from a string
80 * If you include arguments in func_name, a new pseudoaction
81 * will be created if needed.
83 FuncRequest
lookupFunc(std::string
const & func_name
) const;
85 /// Return the name (and argument) associated with the given (pseudo) action
86 std::string
const getActionName(FuncCode action
) const;
88 func_type
getActionType(FuncCode action
) const;
90 /// True if the command has `flag' set
91 bool funcHasFlag(FuncCode action
, func_attrib flag
) const;
93 /// iterator across all real actions
94 typedef func_map::const_iterator const_func_iterator
;
96 /// return an iterator to the start of all real actions
97 const_func_iterator
func_begin() const;
99 /// return an iterator to the end of all real actions
100 const_func_iterator
func_end() const;
103 /// populate the action container with our actions
105 /// add the given action
106 void newFunc(FuncCode
, std::string
const & name
, unsigned int attrib
, func_type type
);
109 * This is a list of all the LyXFunc names with the
110 * coresponding action number. It is usually only used by the
111 * minibuffer or when assigning commands to keys during init.
113 func_map lyx_func_map
;
116 * This is a mapping from action number to an object holding
117 * info about this action. f.ex. command name (string),
118 * command attributes (ro)
120 info_map lyx_info_map
;
123 LyXErr
& operator<<(LyXErr
&, FuncCode
);
125 /// singleton instance
126 extern LyXAction lyxaction
;
131 #endif // LYXACTION_H