Add (and install) svg for the new krunner interface.
[kdebase/uwolfer.git] / workspace / klipper / tray.h
blobd7ab9aacc6137ddd8f18487ddf6792824f9d405a
1 // -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 8; -*-
2 /* This file is part of the KDE project
3 Copyright (C) by Andrew Stanley-Jones
4 Copyright (C) 2004 Esben Mose Hansen <kde@mosehansen.dk>
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public
8 License as published by the Free Software Foundation; either
9 version 2 of the License, or (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; see the file COPYING. If not, write to
18 the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
19 Boston, MA 02110-1301, USA.
21 #ifndef _TRAY_H_
22 #define _TRAY_H_
24 #include <ksystemtrayicon.h>
26 class Klipper;
28 class KlipperTray : public KSystemTrayIcon
30 Q_OBJECT
32 public:
33 KlipperTray();
34 private:
35 Klipper* klipper;
38 #endif