kwave  18.07.70
InsertAtPlugin.cpp
Go to the documentation of this file.
1 /***************************************************************************
2  InsertAtPlugin.cpp - plugin for insertin the clipboard at a position
3  -------------------
4  begin : Thu May 12 2011
5  copyright : (C) 2011 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 #include "config.h"
18 
19 #include <KLocalizedString>
20 #include <QString>
21 
22 #include "libkwave/Plugin.h"
23 #include "libkwave/String.h"
24 
25 #include "InsertAtPlugin.h"
26 
27 KWAVE_PLUGIN(insert_at, InsertAtPlugin)
28 
29 //***************************************************************************
31  const QVariantList &args)
32  :Kwave::GotoPluginBase(parent, args)
33 {
34 }
35 
36 //***************************************************************************
38 {
39 }
40 
41 //***************************************************************************
43 {
44  return _("insert_at");
45 }
46 
47 //***************************************************************************
49 {
50  return i18n("Insert At...");
51 }
52 
53 //***************************************************************************
54 #include "InsertAtPlugin.moc"
55 //***************************************************************************
56 //***************************************************************************
Definition: App.h:33
virtual QString command() const Q_DECL_OVERRIDE
#define KWAVE_PLUGIN(name, class)
Definition: Plugin.h:54
#define _(m)
Definition: memcpy.c:66
virtual ~InsertAtPlugin() Q_DECL_OVERRIDE
virtual QString title() const Q_DECL_OVERRIDE