summaryrefslogtreecommitdiffabout
path: root/microkde/ksystemtray.h
blob: 6708c8628e903576f9f9b34b3b64a77d72b46b83 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef MICROKDE_KSYSTEMTRAY_H
#define MICROKDE_KSYSTEMTRAY_H

#include <qlabel.h>
//Added by qt3to4:
#include <QMouseEvent>

class KSystemTray : public QLabel
{ 
    Q_OBJECT
  public:
    KSystemTray( QWidget *parent = 0 );
    void mousePressEvent( QMouseEvent *);
};

#endif