kwave  18.07.70
GotoPlugin.h
Go to the documentation of this file.
1 /***************************************************************************
2  GotoPlugin.h - Plugin for moving the view to a certain position
3  -------------------
4  begin : Sat Dec 06 2008
5  copyright : (C) 2008 by Thomas Eschenbacher
6  email : Thomas.Eschenbacher@gmx.de
7  ***************************************************************************/
8 
9 /***************************************************************************
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  ***************************************************************************/
17 
18 #ifndef GOTO_PLUGIN_H
19 #define GOTO_PLUGIN_H
20 
21 #include "config.h"
22 
23 #include <QString>
24 
25 #include "GotoPluginBase.h"
26 
27 namespace Kwave
28 {
29 
30  class PluginContext;
31 
33  {
34  Q_OBJECT
35  public:
36 
42  GotoPlugin(QObject *parent, const QVariantList &args);
43 
45  virtual ~GotoPlugin() Q_DECL_OVERRIDE;
46 
47  protected:
48 
50  virtual QString command() const Q_DECL_OVERRIDE;
51 
53  virtual QString title() const Q_DECL_OVERRIDE;
54 
55  };
56 }
57 
58 #endif /* GOTO_PLUGIN_H */
59 
60 //***************************************************************************
61 //***************************************************************************
virtual QString title() const Q_DECL_OVERRIDE
Definition: GotoPlugin.cpp:48
GotoPlugin(QObject *parent, const QVariantList &args)
Definition: GotoPlugin.cpp:31
Definition: App.h:33
virtual ~GotoPlugin() Q_DECL_OVERRIDE
Definition: GotoPlugin.cpp:37
virtual QString command() const Q_DECL_OVERRIDE
Definition: GotoPlugin.cpp:42