Make a branch to make krunner Good Enough For Aaron™.
[kdebase/uwolfer.git] / workspace / libs / taskmanager / startup.h
blob938183ebbc49ee2d7ad5c5facce10339364dfa23
1 /*****************************************************************
3 Copyright (c) 2000-2001 Matthias Elter <elter@kde.org>
4 Copyright (c) 2001 Richard Moore <rich@kde.org>
6 Permission is hereby granted, free of charge, to any person obtaining a copy
7 of this software and associated documentation files (the "Software"), to deal
8 in the Software without restriction, including without limitation the rights
9 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 copies of the Software, and to permit persons to whom the Software is
11 furnished to do so, subject to the following conditions:
13 The above copyright notice and this permission notice shall be included in
14 all copies or substantial portions of the Software.
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
20 AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 ******************************************************************/
25 #ifndef STARTUP_H
26 #define STARTUP_H
28 // Qt
29 #include <QtCore/QObject>
31 // KDE
32 #include <ksharedptr.h>
33 #include <kstartupinfo.h>
35 namespace TaskManager
38 class Startup;
39 typedef KSharedPtr<Startup> StartupPtr;
40 typedef QVector<StartupPtr> StartupList;
42 /**
43 * Represents a task which is in the process of starting.
45 * @see TaskManager
47 class KDE_EXPORT Startup: public QObject, public KShared
49 Q_OBJECT
50 Q_PROPERTY(QString text READ text)
51 Q_PROPERTY(QString bin READ bin)
52 Q_PROPERTY(QString icon READ icon)
54 public:
55 Startup(const KStartupInfoId& id, const KStartupInfoData& data, QObject * parent,
56 const char *name = 0);
57 virtual ~Startup();
59 /**
60 * The name of the starting task (if known).
62 QString text() const;
64 /**
65 * The name of the executable of the starting task.
67 QString bin() const;
69 /**
70 * The name of the icon to be used for the starting task.
72 QString icon() const;
73 void update( const KStartupInfoData& data );
74 KStartupInfoId id() const;
76 void addWindowMatch(WId window);
77 bool matchesWindow(WId window) const;
79 Q_SIGNALS:
80 /**
81 * Indicates that this startup has changed in some way.
83 void changed();
85 private:
86 class Private;
87 Private * const d;
90 } // TaskManager namespace
93 #endif