1/***************************************************************************
2 krulersystemtray.h - description
3 -------------------
4 Copyright : (C) 2009 by Montel Laurent <montel@kde.org>
5 ***************************************************************************/
6
7/***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef KRULERSYSTEMTRAY_H
17#define KRULERSYSTEMTRAY_H
18
19#include <kactioncollection.h>
20#include <kicon.h>
21#include <kstatusnotifieritem.h>
22
23class KRulerSystemTray : public KStatusNotifierItem
24{
25public:
26 KRulerSystemTray( const QString &iconName, QWidget *parent, KActionCollection *actions );
27};
28
29#endif
30