Refactoring:
[simple-launcher] / launchable-item.h
1 // This file is a part of Simple Launcher
2 //
3 // Copyright (C) 2006, Mikhail Sobolev
4 //
5 // Simple Launcher is free software; you can redistribute it and/or modify it
6 // under the terms of the GNU General Public License version 2 as published by
7 // the Free Software Foundation.
8 //
9 // This program is distributed in the hope that it will be useful, but WITHOUT
10 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12 // more details.
13 //
14 // You should have received a copy of the GNU General Public License along with
15 // this program; if not, write to the Free Software Foundation, Inc., 51
16 // Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17
18 #ifndef __LAUNCHABLE_ITEM_H__
19 #define __LAUNCHABLE_ITEM_H__
20
21 #include <vector>
22 #include <string>
23
24 #include <libosso.h>
25
26 #include "launcher-item.h"
27
28 // TODO: or better use inheritance?
29 class LaunchableItem {
30 public:
31   LaunchableItem(LauncherItem *, bool);
32  ~LaunchableItem();
33
34   GdkPixbuf *getIcon(int icon_size) const { return myItem->getIcon(icon_size); }
35
36   const std::string& getName() const { return myItem->getName(); }
37   const std::string& getComment() const { return myItem->getComment(); }
38   const std::string& getService() const { return myItem->getService(); }
39
40   bool isEnabled(void) const { return myEnabled; }
41
42   void enable() { myEnabled = true; }
43   void disable() { myEnabled = false; }
44   void toggle() { myEnabled = !myEnabled; }
45
46   bool activate(osso_context_t *);
47
48 private:
49   LauncherItem *myItem;
50   bool myEnabled;
51 };
52
53 typedef std::vector<std::pair<std::string, LaunchableItem *> > LaunchableItems;
54
55 #endif
56
57 // vim:ts=2:sw=2:et