kwave  18.07.70
GotoPlugin.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  GotoPlugin.cpp - 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 #include "config.h"
19 
20 #include <KLocalizedString>
21 #include <QString>
22 
23 #include "libkwave/Plugin.h"
24 #include "libkwave/String.h"
25 
26 #include "GotoPlugin.h"
27 
28 KWAVE_PLUGIN(goto, GotoPlugin)
29 
30 //***************************************************************************
31 Kwave::GotoPlugin::GotoPlugin(QObject *parent, const QVariantList &args)
32  :Kwave::GotoPluginBase(parent, args)
33 {
34 }
35 
36 //***************************************************************************
38 {
39 }
40 
41 //***************************************************************************
43 {
44  return _("goto");
45 }
46 
47 //***************************************************************************
48 QString Kwave::GotoPlugin::title() const
49 {
50  return i18n("Goto...");
51 }
52 
53 //***************************************************************************
54 #include "GotoPlugin.moc"
55 //***************************************************************************
56 //***************************************************************************
virtual QString title() const Q_DECL_OVERRIDE
Definition: GotoPlugin.cpp:48
Definition: App.h:33
virtual ~GotoPlugin() Q_DECL_OVERRIDE
Definition: GotoPlugin.cpp:37
virtual QString command() const Q_DECL_OVERRIDE
Definition: GotoPlugin.cpp:42
#define KWAVE_PLUGIN(name, class)
Definition: Plugin.h:54
#define _(m)
Definition: memcpy.c:66