summaryrefslogtreecommitdiffstats
path: root/knetload/icontoggleaction.cpp
blob: 521a213658fdb0cd2ae48ed1e551bf5c5853e735 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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 QString& useTextUnchecked, const QString& useIconUnchecked,
        const QString& useTextChecked, const QString& useIconChecked,
        const KShortcut& cut, const QObject* receiver, const char* slot,
        QObject* parent, const char* name) :
        KToggleAction(useTextUnchecked, useIconUnchecked, cut, receiver,
        slot, parent, name),
        textChecked(useTextChecked), textUnchecked(useTextUnchecked),
        iconChecked(useIconChecked), iconUnchecked(useIconUnchecked) {
}

IconToggleAction::IconToggleAction(const QString& useText,
        const QString& useIconUnchecked, const QString& useIconChecked,
        const KShortcut& cut, const QObject* receiver, const char* slot,
        QObject* parent, const char* name) :
        KToggleAction(useText, useIconUnchecked, cut, receiver,
        slot, parent, name),
        textChecked(useText), textUnchecked(useText),
        iconChecked(useIconChecked), iconUnchecked(useIconUnchecked) {
}

IconToggleAction::IconToggleAction(
        const QString& useTextUnchecked, const QString& useIconUnchecked,
        const QString& useTextChecked, const QString& useIconChecked,
        const KShortcut& cut, QObject* parent, const char* name) :
        KToggleAction(useTextUnchecked, useIconUnchecked, cut, parent, name),
        textChecked(useTextChecked), textUnchecked(useTextUnchecked),
        iconChecked(useIconChecked), iconUnchecked(useIconUnchecked) {
}

IconToggleAction::IconToggleAction(const QString& useText,
        const QString& useIconUnchecked, const QString& useIconChecked,
        const KShortcut& cut, QObject* parent, const char* name) :
        KToggleAction(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);
    }

    KToggleAction::setChecked(value);
}

#include "icontoggleaction.moc"