RandomNotes.wiki
changeset 634 174622a27c8f
parent 633 87ad9962ee1f
child 680 e0a3df1ac413
equal deleted inserted replaced
633:87ad9962ee1f 634:174622a27c8f
    25 
    25 
    26 = How to add a settings option =
    26 = How to add a settings option =
    27  * `QStringList HWGame::setArguments()` in `game.cpp` is the function that prepares the argument list
    27  * `QStringList HWGame::setArguments()` in `game.cpp` is the function that prepares the argument list
    28  * `void GameUIConfig::SaveOptions()` in `gameuiconfig.cpp` loads (or initializes) values and set the widgets to those values
    28  * `void GameUIConfig::SaveOptions()` in `gameuiconfig.cpp` loads (or initializes) values and set the widgets to those values
    29  * `PageOptions::PageOptions(QWidget* parent) :  AbstractPage(parent)` is where you would add your widget
    29  * `PageOptions::PageOptions(QWidget* parent) :  AbstractPage(parent)` is where you would add your widget
       
    30 
       
    31 
       
    32 
       
    33