diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-06-14 19:23:42 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-06-14 19:23:42 +0300 |
commit | 9b0982a39e750974852572d1a965c4a802f5f4cd (patch) | |
tree | fb8ddb5ed3f190b0d039aafd2d0f5bd59b2b404a /src/gui/widgets/setuptouchitem.cpp | |
parent | fb433aae06cfd9ca64f8315385534857c77bfe5b (diff) | |
download | plus-9b0982a39e750974852572d1a965c4a802f5f4cd.tar.gz plus-9b0982a39e750974852572d1a965c4a802f5f4cd.tar.bz2 plus-9b0982a39e750974852572d1a965c4a802f5f4cd.tar.xz plus-9b0982a39e750974852572d1a965c4a802f5f4cd.zip |
improve setuptouchitem.
Diffstat (limited to 'src/gui/widgets/setuptouchitem.cpp')
-rw-r--r-- | src/gui/widgets/setuptouchitem.cpp | 29 |
1 files changed, 16 insertions, 13 deletions
diff --git a/src/gui/widgets/setuptouchitem.cpp b/src/gui/widgets/setuptouchitem.cpp index aa731504f..2d0b9c1d5 100644 --- a/src/gui/widgets/setuptouchitem.cpp +++ b/src/gui/widgets/setuptouchitem.cpp @@ -85,13 +85,13 @@ int TouchActionsModel::getSelectionFromAction(const int action) const } -SetupActionDropDown::SetupActionDropDown(std::string text, - std::string description, - std::string keyName, +SetupActionDropDown::SetupActionDropDown(const std::string &text, + const std::string &description, + const std::string &keyName, SetupTabScroll *const parent, - std::string eventName, + const std::string &eventName, TouchActionsModel *const model, - int width, + const int width, const bool mainConfig) : SetupItem(text, description, keyName, parent, eventName, mainConfig), mHorizont(nullptr), @@ -104,14 +104,14 @@ SetupActionDropDown::SetupActionDropDown(std::string text, createControls(); } -SetupActionDropDown::SetupActionDropDown(std::string text, - std::string description, - std::string keyName, +SetupActionDropDown::SetupActionDropDown(const std::string &text, + const std::string &description, + const std::string &keyName, SetupTabScroll *const parent, - std::string eventName, + const std::string &eventName, TouchActionsModel *const model, - int width, - std::string def, + const int width, + const std::string &def, const bool mainConfig) : SetupItem(text, description, keyName, parent, eventName, def, mainConfig), mHorizont(nullptr), @@ -135,6 +135,9 @@ SetupActionDropDown::~SetupActionDropDown() void SetupActionDropDown::createControls() { + if (!mModel) + return; + load(); mHorizont = new HorizontContainer(this, 32, 2); @@ -159,7 +162,7 @@ void SetupActionDropDown::createControls() void SetupActionDropDown::fromWidget() { - if (!mDropDown) + if (!mDropDown || !mModel) return; mValue = toString(mModel->getActionFromSelection( @@ -168,7 +171,7 @@ void SetupActionDropDown::fromWidget() void SetupActionDropDown::toWidget() { - if (!mDropDown) + if (!mDropDown || !mModel) return; mDropDown->setSelected(mModel->getSelectionFromAction( |