Plasma
locationrunner.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef LOCATIONRUNNER_H
00020 #define LOCATIONRUNNER_H
00021
00022 #include <plasma/abstractrunner.h>
00023
00024 class QAction;
00025
00026 class LocationsRunner : public Plasma::AbstractRunner {
00027 Q_OBJECT
00028
00029 public:
00030 LocationsRunner(QObject *parent, const QVariantList& args);
00031 ~LocationsRunner();
00032
00033 void match(Plasma::RunnerContext &context);
00034 void run(const Plasma::RunnerContext &context, const Plasma::QueryMatch &action);
00035
00036 private:
00037 Plasma::RunnerContext::Type type;
00038 };
00039
00040 K_EXPORT_PLASMA_RUNNER(locations, LocationsRunner)
00041
00042 #endif