~ubuntu-branches/ubuntu/utopic/psi/utopic

« back to all changes in this revision

Viewing changes to src/psitrayicon.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2010-02-19 09:37:12 UTC
  • mfrom: (6.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20100219093712-e225xvm1wjcf1cgi
Tags: 0.14-2
* comment out only function which uses va_list to work around build
  problems on armel
* Set Standards-Version to 3.8.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
#include <QSystemTrayIcon>
7
7
 
8
8
class PsiIcon;
9
 
class TrayIcon; // old
10
9
class QMenu;
11
10
class QPoint;
12
11
class QPixmap;
15
14
{
16
15
        Q_OBJECT
17
16
public:
18
 
        PsiTrayIcon(const QString &tip, QMenu *popup, bool old = true, QObject *parent=0);
 
17
        PsiTrayIcon(const QString &tip, QMenu *popup, QObject *parent=0);
19
18
        ~PsiTrayIcon();
20
19
 
21
20
        void setContextMenu(QMenu*);
44
43
        QRgb pixelBlend(QRgb p1, QRgb p2);
45
44
 
46
45
private:
47
 
        bool old_;
48
46
        PsiIcon* icon_;
49
 
        TrayIcon* old_trayicon_; // old
50
47
        QSystemTrayIcon* trayicon_;
51
48
};
52
49