~noskcaj/ubuntu/saucy/sflphone/merge-1.2.3-2

« back to all changes in this revision

Viewing changes to kde/src/extendedaction.h

  • Committer: Jackson Doak
  • Date: 2013-07-10 21:04:46 UTC
  • mfrom: (20.1.3 sid)
  • Revision ID: noskcaj@ubuntu.com-20130710210446-y8f587vza807icr9
Properly merged from upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2009-2013 by Savoir-Faire Linux                         *
 
3
 *   Author : Emmanuel Lepage Vallee <emmanuel.lepage@savoirfairelinux.com>*
 
4
 *                                                                         *
 
5
 *   This program is free software; you can redistribute it and/or modify  *
 
6
 *   it under the terms of the GNU General Public License as published by  *
 
7
 *   the Free Software Foundation; either version 3 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 General Public License for more details.                          *
 
14
 *                                                                         *
 
15
 *   You should have received a copy of the GNU General Public License     *
 
16
 *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
 
17
 **************************************************************************/
 
18
#ifndef EXTENDED_ACTION_H
 
19
#define EXTENDED_ACTION_H
 
20
#include <KAction>
 
21
 
 
22
//KDE
 
23
class KIcon;
 
24
 
 
25
class ExtendedAction : public KAction
 
26
{
 
27
   Q_OBJECT
 
28
public:
 
29
   explicit ExtendedAction(QObject* parent = nullptr);
 
30
   virtual ~ExtendedAction();
 
31
 
 
32
   const KIcon& altIcon();
 
33
   void setAltIcon(QString path);
 
34
 
 
35
private:
 
36
   KIcon* m_pIcon;
 
37
 
 
38
public Q_SLOTS:
 
39
   void setText(const QString&);
 
40
   void hasChanged();
 
41
 
 
42
Q_SIGNALS:
 
43
   void textChanged(QString text);
 
44
};
 
45
 
 
46
#endif //EXTENDED_ACTION_H