/////////////////////////////////////////////////////////////////////////////
// Name: sysopt.h
-// Purpose: documentation for wxSystemOptions class
+// Purpose: interface of wxSystemOptions
// Author: wxWidgets team
// RCS-ID: $Id$
// Licence: wxWindows license
@library{wxbase}
@category{misc}
- @seealso
- wxSystemOptions::SetOption, wxSystemOptions::GetOptionInt,
+ @see wxSystemOptions::SetOption, wxSystemOptions::GetOptionInt,
wxSystemOptions::HasOption
*/
class wxSystemOptions : public wxObject
/**
Gets an option. The function is case-insensitive to @e name.
Returns empty string if the option hasn't been set.
-
+
@see SetOption(), GetOptionInt(),
HasOption()
*/
/**
Gets an option as an integer. The function is case-insensitive to @e name.
If the option hasn't been set, this function returns 0.
-
+
@see SetOption(), GetOption(),
HasOption()
*/
/**
Returns @true if the given option is present. The function is
case-insensitive to @e name.
-
+
@see SetOption(), GetOption(),
GetOptionInt()
*/
void SetOption(const wxString& name, int value);
//@}
};
+