diff options
| author | Slávek Banko <slavek.banko@axis.cz> | 2018-12-13 18:35:41 +0100 |
|---|---|---|
| committer | Slávek Banko <slavek.banko@axis.cz> | 2018-12-13 18:42:05 +0100 |
| commit | 0557917aa98c792eb316ce176c97849f3e7bdb3e (patch) | |
| tree | 4ee596079b11ec246e6355a33563aa41d3e0e364 /src/icontoggleaction.cpp | |
| parent | 63cec2ebf40be205347bd97b53ad2a77dbcdcb38 (diff) | |
| download | kcpuload-0557917aa98c792eb316ce176c97849f3e7bdb3e.tar.gz kcpuload-0557917aa98c792eb316ce176c97849f3e7bdb3e.zip | |
Fix structure of directories
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'src/icontoggleaction.cpp')
| -rw-r--r-- | src/icontoggleaction.cpp | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/src/icontoggleaction.cpp b/src/icontoggleaction.cpp new file mode 100644 index 0000000..3e73d98 --- /dev/null +++ b/src/icontoggleaction.cpp @@ -0,0 +1,63 @@ + +/*************************************************************************** + * * + * KCPULoad and KNetLoad are copyright (c) 1999-2000, Markus Gustavsson * + * (c) 2002, Ben Burton * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#include "icontoggleaction.h" + +IconToggleAction::IconToggleAction( + const TQString& useTextUnchecked, const TQString& useIconUnchecked, + const TQString& useTextChecked, const TQString& useIconChecked, + const TDEShortcut& cut, const TQObject* receiver, const char* slot, + TQObject* parent, const char* name) : + TDEToggleAction(useTextUnchecked, useIconUnchecked, cut, receiver, + slot, parent, name), + textChecked(useTextChecked), textUnchecked(useTextUnchecked), + iconChecked(useIconChecked), iconUnchecked(useIconUnchecked) { +} + +IconToggleAction::IconToggleAction(const TQString& useText, + const TQString& useIconUnchecked, const TQString& useIconChecked, + const TDEShortcut& cut, const TQObject* receiver, const char* slot, + TQObject* parent, const char* name) : + TDEToggleAction(useText, useIconUnchecked, cut, receiver, + slot, parent, name), + textChecked(useText), textUnchecked(useText), + iconChecked(useIconChecked), iconUnchecked(useIconUnchecked) { +} + +IconToggleAction::IconToggleAction( + const TQString& useTextUnchecked, const TQString& useIconUnchecked, + const TQString& useTextChecked, const TQString& useIconChecked, + const TDEShortcut& cut, TQObject* parent, const char* name) : + TDEToggleAction(useTextUnchecked, useIconUnchecked, cut, parent, name), + textChecked(useTextChecked), textUnchecked(useTextUnchecked), + iconChecked(useIconChecked), iconUnchecked(useIconUnchecked) { +} + +IconToggleAction::IconToggleAction(const TQString& useText, + const TQString& useIconUnchecked, const TQString& useIconChecked, + const TDEShortcut& cut, TQObject* parent, const char* name) : + TDEToggleAction(useText, useIconUnchecked, cut, parent, name), + textChecked(useText), textUnchecked(useText), + iconChecked(useIconChecked), iconUnchecked(useIconUnchecked) { +} + +void IconToggleAction::setChecked(bool value) { + if (value != isChecked()) { + setText(value ? textChecked : textUnchecked); + setIcon(value ? iconChecked : iconUnchecked); + } + + TDEToggleAction::setChecked(value); +} + +#include "icontoggleaction.moc" |
