]> git.lyx.org Git - lyx.git/blob - src/lyxfunc.h
fb88aa29761a47999f661e2181855cfb23404d52
[lyx.git] / src / lyxfunc.h
1 // -*- C++ -*-
2 #ifndef LYXFUNC_H
3 #define LYXFUNC_H
4
5 #ifdef __GNUG__
6 #pragma interface
7 #endif
8
9 #include "commandtags.h"
10 #include "kbsequence.h"
11 #include "insets/lyxinset.h"
12 #include "LString.h"
13
14 class LyXView;
15
16 /** This class encapsulates all the LyX command operations. 
17     This is the class of the LyX's "high level event handler".
18     Every user command is processed here, either invocated from
19     keyboard or from the GUI. All GUI objects, including buttons and
20     menus should use this class and never call kernel functions directly.
21 */
22 class LyXFunc {
23 public:
24         /// The status of a function.
25         enum func_status {
26                 OK = 0, // No problem
27                 Unknown = 1,
28                 Disabled = 2, // Command cannot be executed
29                 ToggleOn = 4,
30                 ToggleOff = 8
31         };
32         ///
33         explicit
34         LyXFunc(LyXView *);
35     
36         /// LyX distpatcher, executes lyx actions.
37         string Dispatch(int action, char const * arg = 0);
38                          
39         /// The same but uses the name of a lyx command.
40         string Dispatch(string const & cmd);
41
42         /// A keyboard event is processed to execute a lyx action. 
43         int  processKeyEvent(XEvent * ev);
44
45         ///
46         func_status getStatus(int ac) const;
47         
48         /// The last key was meta
49         bool wasMetaKey() const;
50
51         // These can't be global because are part of the
52         // internal state (ale970227)
53         /// Get the current keyseq string
54         string keyseqStr() const;
55
56         /// Is the key sequence uncomplete?
57         bool keyseqUncomplete() const;
58
59         /// get options for the current keyseq
60         string keyseqOptions() const;
61
62         /// True if lyxfunc reports an error
63         bool errorStat() const { return errorstat; }
64         /// Buffer to store result messages
65         void setMessage(string const & m);
66         /// Buffer to store result messages
67         void setErrorMessage(string const &) const; 
68         /// Buffer to store result messages
69         string getMessage() const { return dispatch_buffer; }
70         /// Get next inset of this class from current cursor position  
71         Inset * getInsetByCode(Inset::Code);
72         
73         /// Should a hint message be displayed?
74         void setHintMessage(bool);
75 private:
76         ///
77         LyXView * owner;
78         ///
79         static int psd_idx;
80         ///
81         kb_sequence keyseq;
82         ///
83         kb_sequence cancel_meta_seq;
84         ///
85         unsigned meta_fake_bit;
86         ///
87         void moveCursorUpdate(bool selecting = false);
88         ///
89         void setupLocalKeymap();
90         ///
91         kb_action lyx_dead_action;
92         ///
93         kb_action lyx_calling_dead_action;
94         /// Error status, only Dispatch can change this flag
95         mutable bool errorstat;
96
97         /** Buffer to store messages and result data. Is there a
98             good reason to have this one as static in Dispatch? (Ale)
99         */
100         mutable string dispatch_buffer;
101         /// Command name and shortcut information
102         string commandshortcut;
103
104         // I think the following should be moved to BufferView. (Asger)
105
106         ///
107         void MenuNew(bool fromTemplate);
108
109         ///
110         void MenuOpen();
111
112         ///
113         void doImportLaTeX(bool);
114
115         ///
116         void doImportASCII(bool);
117
118         ///
119         void doImportLinuxDoc();
120
121         ///
122         void MenuInsertLyXFile(string const &);
123
124         ///
125         void CloseBuffer();
126         ///
127         void reloadBuffer();
128         /// This is the same for all lyxfunc objects
129         static bool show_sc;
130 };
131      
132      
133 /*--------------------  inlines  --------------------------*/
134
135 inline
136 bool LyXFunc::wasMetaKey() const 
137
138         return (meta_fake_bit != 0);
139 }
140      
141
142 inline
143 string LyXFunc::keyseqStr() const
144 {
145         // Why not just remove this function
146         string text;
147         keyseq.print(text, true);
148         return text;
149
150
151
152 inline
153 string LyXFunc::keyseqOptions() const
154 {
155         // Why not just remove this function
156         string text;
157         keyseq.printOptions(text);
158         return text;
159
160
161
162 inline
163 bool LyXFunc::keyseqUncomplete() const
164
165         return (keyseq.length > 0);
166 }
167
168
169 inline
170 void LyXFunc::setHintMessage(bool hm) 
171
172         show_sc = hm;
173 }
174
175
176 inline
177 void operator|=(LyXFunc::func_status & fs, LyXFunc::func_status f)
178 {
179         fs = static_cast<LyXFunc::func_status>(fs | f);
180 }
181
182 #endif