summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/oglobalsettings.h
Side-by-side diff
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
* See <a href="http://opie.handhelds.org/documentation/standards/opie/style/keys/completion.html">
* the styleguide</a>.
**/
enum Completion {
/**
* No completion is used.
*/
CompletionNone=1,
/**
* Text is automatically filled in whenever possible.
*/
CompletionAuto,
/**
* Same as automatic except shortest match is used for completion.
*/
CompletionMan,
/**
* Complete text much in the same way as a typical *nix shell would.
*/
CompletionShell,
/**
* Lists all possible matches in a popup list-box to choose from.
*/
CompletionPopup,
/**
* Lists all possible matches in a popup list-box to choose from, and automatically
* fill the result whenever possible.
*/
CompletionPopupAuto
};
/**
* Returns the preferred completion mode setting.
*
* @return @ref Completion. Default is @p CompletionPopup.
*/
static Completion completionMode();
/**
* This enum describes the debug mode used for by the @ref odbgstream class.
* See <a href="http://opie.handhelds.org/documentation/standards/opie/style/debug/debug.html">
* the styleguide</a>.
**/
enum Debug {
/**
* Debug messages are ignored.
*/
DebugNone=-1,
/**
- * Debug output is sent to files /var/log/***.
+ * Debug output is sent to files /var/log/.
*/
DebugFiles=0,
/**
* Debug output is written in a QMessageBox.
*/
DebugMsgBox=1,
/**
* Debug output is sent to stderr.
*/
DebugStdErr=2,
/**
* Debug output is sent to syslog.
*/
DebugSysLog=3,
/**
* Debug output is sent via udp over a socket.
*/
DebugSocket=4
};
/**
* Returns the preferred debug mode setting.
*
* @return @ref Debug. Default is @p DebugStdErr.
*/
static Debug debugMode();
/**
* Returns additional information for debug output (dependent on the debug mode).
*
* @return Additional debug output information.
*/
static QString debugOutput();
/**
* This is a structure containing the possible mouse settings.
*/
struct OMouseSettings
{
enum { RightHanded = 0, LeftHanded = 1 };
int handed; // left or right
};
/**
* This returns the current mouse settings.
*/
static OMouseSettings & mouseSettings();
/**
* The path to the desktop directory of the current user.