PageRenderTime 42ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/quassel-0.7.3/dev-notes/blanksettingspage.cpp

#
C++ | 74 lines | 35 code | 20 blank | 19 comment | 4 complexity | c5e0531f5b19552a3d7fcd6469be98ad MD5 | raw file
Possible License(s): GPL-2.0, GPL-3.0
  1. /***************************************************************************
  2. * Copyright (C) 2005-08 by the Quassel IRC Team *
  3. * devel@quassel-irc.org *
  4. * *
  5. * This program is free software; you can redistribute it and/or modify *
  6. * it under the terms of the GNU Blank Public License as published by *
  7. * the Free Software Foundation; either version 2 of the License, or *
  8. * (at your option) any later version. *
  9. * *
  10. * This program is distributed in the hope that it will be useful, *
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of *
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
  13. * GNU Blank Public License for more details. *
  14. * *
  15. * You should have received a copy of the GNU Blank Public License *
  16. * along with this program; if not, write to the *
  17. * Free Software Foundation, Inc., *
  18. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
  19. ***************************************************************************/
  20. #include "blanksettingspage.h"
  21. #include "qtui.h"
  22. #include "uisettings.h"
  23. BlankSettingsPage::BlankSettingsPage(QWidget *parent)
  24. : SettingsPage(tr("Behaviour"), tr("Blank"), parent) {
  25. ui.setupUi(this);
  26. connect(ui.exampleCheckbox, SIGNAL(clicked(bool)), this, SLOT(widgetHasChanged()));
  27. }
  28. bool BlankSettingsPage::hasDefaults() const {
  29. return true;
  30. }
  31. void BlankSettingsPage::defaults() {
  32. ui.exampleCheckbox->setChecked(true);
  33. widgetHasChanged();
  34. }
  35. void BlankSettingsPage::load() {
  36. UiSettings uiSettings;
  37. settings["exampleCheckbox"] = uiSettings.value("exampleCheckbox", QVariant(false));
  38. ui.exampleCheckbox->setChecked(settings["exampleCheckbox"].toBool());
  39. setChangedState(false);
  40. }
  41. void BlankSettingsPage::save() {
  42. UiSettings uiSettings;
  43. uiSettings.setValue("exampleCheckbox", ui.exampleCheckbox->isChecked());
  44. load();
  45. setChangedState(false);
  46. }
  47. void BlankSettingsPage::widgetHasChanged() {
  48. bool changed = testHasChanged();
  49. if(changed != hasChanged()) setChangedState(changed);
  50. }
  51. bool BlankSettingsPage::testHasChanged() {
  52. if(settings["exampleCheckbox"].toBool() != ui.exampleCheckbox->isChecked()) return true;
  53. return false;
  54. }