This reference page is linked to from the following overview topics: Application-Level Functionality.
This class holds a simple integer preference.
This class can be used by a plugin to declare a single integer preference. The object should be declared as a global variable or as a static member variable. If a valid name is given to the object it will autoatically appear in the preferences dialog, and its value will be automatically saved and restored when mudbox quits/restarts. Example:
Preferences::Integer g_iMaxlevel( "Maximum level", "Render", 4 );
Definition at line 265 of file preferences.h.
#include <preferences.h>
Public Member Functions |
|
Integer (const QString &sName, const QString &sCategory, const QString &sNameTr, const QString &sCategoryTr, unsigned int iDefaultValue) | |
operator unsigned int (void) const | |
Public Attributes |
|
aint * | m_pAttribute |
Integer | ( | const QString & | sName, |
const QString & | sCategory, | ||
const QString & | sNameTr, | ||
const QString & | sCategoryTr, | ||
unsigned int | iDefaultValue | ||
) |
sName | Name of the item, which will appear in the preferences dialog. |
sCategory | Category of the item, which it belongs to in the preferences dialog. This can be an empty string. |
sNameTr | Name of the item, which will appear in the preferences dialog. |
sCategoryTr | Category of the item, which it belongs to in the preferences dialog. This can be an empty string. |
iDefaultValue | Default value of the item. This is only used the first time when the preference is used, in other cases the value of the preferences will be restored from the general mudbox preference file. |
operator unsigned int | ( | void | ) | const |
Definition at line 276 of file preferences.h.