|
AlbumShaper
1.0a3
|
Misc Settings. More...
#include <miscSettings.h>
Public Member Functions | |
| MiscSettings () | |
Static Public Member Functions | |
| static void | setDefaults (Configuration *config) |
Misc Settings.
Definition at line 23 of file miscSettings.h.
| MiscSettings::MiscSettings | ( | ) | [inline] |
Definition at line 27 of file miscSettings.h.
{ }
| void MiscSettings::setDefaults | ( | Configuration * | config | ) | [static] |
Definition at line 19 of file miscSettings.cpp.
References Configuration::setBool(), and Configuration::setInt().
Referenced by Window::Window().
{
//true first time program is run, ensures "first run"
//dialog is only brought up once and never again
config->setBool( "misc", "firstRun", true );
//warn users they are running a CVS build if they are
config->setBool( "misc", "cvsWarn", true );
//DPI below which users will be warned during cropping
config->setInt( "misc", "minDPI", 250 );
}
1.7.5.1