|
| enum | PropType {
Disabled
, Space
, Boolean
, Color
,
String
, Selector
, DblSpin
, IntSpin
,
Double
, Integer
, GroupBox
, Tab
,
Frame
, Font
, DirList
, File
,
Slider
, Shortcut
, ShortcutTree
, BiColor
,
Background
, Directory
, Cursor
} |
| | Type of stored property. More...
|
| |
| enum | CursorType { ArrowCursor
, CrossCursor
, HandCursor
} |
| |
|
| | Config_Prop (const std::string &theSection, const std::string &theName, const std::string &theTitle, PropType theType, const std::string &theDefaultValue, const std::string &theMin, const std::string &theMax) |
| | Creates a one property. More...
|
| |
| const std::string & | section () const |
| | Get name of section. More...
|
| |
| const std::string & | name () const |
| | Get name of property. More...
|
| |
| const std::string & | title () const |
| | Get title of property. More...
|
| |
| void | setTitle (const std::string &theTitle) |
| | Set title of property. More...
|
| |
| PropType | type () const |
| | Get type of property. More...
|
| |
| void | setType (PropType theType) |
| | Set type of property. More...
|
| |
| const std::string & | value () const |
| | Get property's value in string format. More...
|
| |
| void | setValue (const std::string &theValue) |
| | Set property's value in string format. More...
|
| |
| const std::string & | defaultValue () const |
| | Get default value of property. More...
|
| |
| void | setDefaultValue (const std::string &theValue) |
| | Set default value of property. More...
|
| |
| bool | operator== (const Config_Prop *theProp) const |
| | Allows to compare Config_Prop with each other. More...
|
| |
| const std::string & | min () const |
| | Returns minimal value. More...
|
| |
|
void | setMin (const std::string &theMin) |
| |
| const std::string & | max () const |
| | Returns maximal value. More...
|
| |
|
void | setMax (const std::string &theMax) |
| |
Class which describes a one property.