SVN_SILENT made messages (.desktop file)
[rsibreak.git] / src / passivepopup.h
bloba625ac2404c1b74fb5dd3b64506313b09187a6bf
1 /* This file is part of the KDE project
2 Copyright (C) 2005 Bram Schoenmakers <bramschoenmakers@kde.nl>
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 #ifndef PASSIVEPOPUP_H
20 #define PASSIVEPOPUP_H
22 #include <kpassivepopup.h>
23 #include <QMouseEvent>
26 class PassivePopup : public KPassivePopup
28 public:
29 explicit PassivePopup( QWidget *parent = 0 );
30 void show( const QSystemTrayIcon* icon );
31 protected:
32 virtual void mouseReleaseEvent( QMouseEvent * event );
35 #endif