summaryrefslogtreecommitdiffstats
path: root/gui/polkit-tqt-gui-actionbutton.cpp
blob: 402b2f0246baed28656746a6aa90cc6f10a8effd (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*
 * This file is part of the Polkit-tqt project
 * Copyright (C) 2009 Daniel Nicoletti <dantti85-pk@yahoo.com.br>
 * Copyright (C) 2009 Dario Freddi <drf@kde.org>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB. If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#include "polkit-tqt-gui-actionbutton.h"
#include "polkit-tqt-gui-actionbutton_p.h"

#include <tqbutton.h>
#include <tqstring.h>
#include <tqvaluelist.h>


namespace PolkitTQt
{

namespace Gui
{

//--------------------------------------
// ActionButtonPrivate
//--------------------------------------

void ActionButtonPrivate::addButton(TQButton *button)
{
  buttons.append(button);
  TQObject::connect(button, TQ_SIGNAL(clicked()), q, TQ_SLOT(streamClicked()));
  TQObject::connect(q, TQ_SIGNAL(toggled(bool)), button, TQ_SLOT(toggle()));
  q->updateButton();
}

void ActionButtonPrivate::removeButton(TQButton *button)
{
  if (buttons.contains(button))
  {
    TQObject::disconnect(button, TQ_SIGNAL(clicked(bool)), q, TQ_SLOT(streamClicked()));
    TQObject::disconnect(q, TQ_SIGNAL(toggled(bool)), button, TQ_SLOT(toggle()));
    TQValueList<TQButton*>::iterator butIt = buttons.find(button);
    if (butIt != buttons.end())
    {
      buttons.remove(butIt);
    }
  }
}

//--------------------------------------
// ActionButton
//--------------------------------------

ActionButton::ActionButton(ActionButtonPrivate &dd, const TQString &actionId, TQObject *parent)
        : Action(actionId, parent), d(&dd)
{
  d->q = this;
  connect(this, TQ_SIGNAL(dataChanged()), this, TQ_SLOT(updateButton()));
}

ActionButton::ActionButton(TQButton *button, const TQString &actionId, TQObject *parent)
        : Action(actionId, parent), d(new ActionButtonPrivate())
{
  d->q = this;
  d->buttons.append(button);

  setButton(button);
  connect(this, TQ_SIGNAL(dataChanged()), this, TQ_SLOT(updateButton()));
}

ActionButton::~ActionButton()
{
  delete d;
}

void ActionButton::streamClicked()
{
  emit clicked(::tqt_cast<TQButton*>(this->sender()));
}

void ActionButton::updateButton()
{
  for (TQButton *&ent : d->buttons)
  {
    if (isVisible())
    {
      ent->show();
    }
    else
    {
      ent->hide();
    }
    ent->setEnabled(isEnabled());
    //if (!toolTip().isNull())
    //{
    //  ent->setToolTip(toolTip());
    //}
    //if (!whatsThis().isNull())
    //{
    //  ent->setWhatsThis(whatsThis());
    //}
    ent->setPixmap(iconSet().pixmap());
    // setPixmap() clears the button text, so setText() must be called afterwards
    ent->setText(text());
    // if the item cannot do the action anymore
    // lets revert to the initial state
    if (ent->isToggleButton())
    {
      ent->setDown(isOn());
    }
  }
}

bool ActionButton::activate()
{
  bool tg = false;
  for (TQButton *&ent : d->buttons)
  {
    if (ent->isToggleButton())
    {
      // we set the the current Action state
      ent->setDown(isOn());
      // toggle the action cause we are not directly connected there..
      tg = true;
    }
  }

  if (tg)
  {
    toggle();
  }

  return Action::activate();
}

void ActionButton::setButton(TQButton *button)
{
  // First, let's clear the list
  while (!d->buttons.isEmpty())
  {
    d->removeButton(d->buttons.first());
  }

  // And then add it
  d->addButton(button);
}

TQButton* ActionButton::button() const
{
  return d->buttons.first();
}

}

}

#include "polkit-tqt-gui-actionbutton.moc"