summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/oglobalsettings.h
Unidiff
Diffstat (limited to 'libopie2/opiecore/oglobalsettings.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/oglobalsettings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opiecore/oglobalsettings.h b/libopie2/opiecore/oglobalsettings.h
index d3f357e..e3ac148 100644
--- a/libopie2/opiecore/oglobalsettings.h
+++ b/libopie2/opiecore/oglobalsettings.h
@@ -159,97 +159,97 @@ class OGlobalSettings
159 * See <a href="http://opie.handhelds.org/documentation/standards/opie/style/keys/completion.html"> 159 * See <a href="http://opie.handhelds.org/documentation/standards/opie/style/keys/completion.html">
160 * the styleguide</a>. 160 * the styleguide</a>.
161 **/ 161 **/
162 enum Completion { 162 enum Completion {
163 /** 163 /**
164 * No completion is used. 164 * No completion is used.
165 */ 165 */
166 CompletionNone=1, 166 CompletionNone=1,
167 /** 167 /**
168 * Text is automatically filled in whenever possible. 168 * Text is automatically filled in whenever possible.
169 */ 169 */
170 CompletionAuto, 170 CompletionAuto,
171 /** 171 /**
172 * Same as automatic except shortest match is used for completion. 172 * Same as automatic except shortest match is used for completion.
173 */ 173 */
174 CompletionMan, 174 CompletionMan,
175 /** 175 /**
176 * Complete text much in the same way as a typical *nix shell would. 176 * Complete text much in the same way as a typical *nix shell would.
177 */ 177 */
178 CompletionShell, 178 CompletionShell,
179 /** 179 /**
180 * Lists all possible matches in a popup list-box to choose from. 180 * Lists all possible matches in a popup list-box to choose from.
181 */ 181 */
182 CompletionPopup, 182 CompletionPopup,
183 /** 183 /**
184 * Lists all possible matches in a popup list-box to choose from, and automatically 184 * Lists all possible matches in a popup list-box to choose from, and automatically
185 * fill the result whenever possible. 185 * fill the result whenever possible.
186 */ 186 */
187 CompletionPopupAuto 187 CompletionPopupAuto
188 }; 188 };
189 /** 189 /**
190 * Returns the preferred completion mode setting. 190 * Returns the preferred completion mode setting.
191 * 191 *
192 * @return @ref Completion. Default is @p CompletionPopup. 192 * @return @ref Completion. Default is @p CompletionPopup.
193 */ 193 */
194 static Completion completionMode(); 194 static Completion completionMode();
195 195
196 /** 196 /**
197 * This enum describes the debug mode used for by the @ref odbgstream class. 197 * This enum describes the debug mode used for by the @ref odbgstream class.
198 * See <a href="http://opie.handhelds.org/documentation/standards/opie/style/debug/debug.html"> 198 * See <a href="http://opie.handhelds.org/documentation/standards/opie/style/debug/debug.html">
199 * the styleguide</a>. 199 * the styleguide</a>.
200 **/ 200 **/
201 enum Debug { 201 enum Debug {
202 /** 202 /**
203 * Debug messages are ignored. 203 * Debug messages are ignored.
204 */ 204 */
205 DebugNone=-1, 205 DebugNone=-1,
206 /** 206 /**
207 * Debug output is sent to files /var/log/***. 207 * Debug output is sent to files /var/log/.
208 */ 208 */
209 DebugFiles=0, 209 DebugFiles=0,
210 /** 210 /**
211 * Debug output is written in a QMessageBox. 211 * Debug output is written in a QMessageBox.
212 */ 212 */
213 DebugMsgBox=1, 213 DebugMsgBox=1,
214 /** 214 /**
215 * Debug output is sent to stderr. 215 * Debug output is sent to stderr.
216 */ 216 */
217 DebugStdErr=2, 217 DebugStdErr=2,
218 /** 218 /**
219 * Debug output is sent to syslog. 219 * Debug output is sent to syslog.
220 */ 220 */
221 DebugSysLog=3, 221 DebugSysLog=3,
222 /** 222 /**
223 * Debug output is sent via udp over a socket. 223 * Debug output is sent via udp over a socket.
224 */ 224 */
225 DebugSocket=4 225 DebugSocket=4
226 }; 226 };
227 /** 227 /**
228 * Returns the preferred debug mode setting. 228 * Returns the preferred debug mode setting.
229 * 229 *
230 * @return @ref Debug. Default is @p DebugStdErr. 230 * @return @ref Debug. Default is @p DebugStdErr.
231 */ 231 */
232 static Debug debugMode(); 232 static Debug debugMode();
233 233
234 /** 234 /**
235 * Returns additional information for debug output (dependent on the debug mode). 235 * Returns additional information for debug output (dependent on the debug mode).
236 * 236 *
237 * @return Additional debug output information. 237 * @return Additional debug output information.
238 */ 238 */
239 static QString debugOutput(); 239 static QString debugOutput();
240 /** 240 /**
241 * This is a structure containing the possible mouse settings. 241 * This is a structure containing the possible mouse settings.
242 */ 242 */
243 struct OMouseSettings 243 struct OMouseSettings
244 { 244 {
245 enum { RightHanded = 0, LeftHanded = 1 }; 245 enum { RightHanded = 0, LeftHanded = 1 };
246 int handed; // left or right 246 int handed; // left or right
247 }; 247 };
248 248
249 /** 249 /**
250 * This returns the current mouse settings. 250 * This returns the current mouse settings.
251 */ 251 */
252 static OMouseSettings & mouseSettings(); 252 static OMouseSettings & mouseSettings();
253 253
254 /** 254 /**
255 * The path to the desktop directory of the current user. 255 * The path to the desktop directory of the current user.