~ben-kietzman/ubuntu/quantal/mountmanager/fix-for-598070

« back to all changes in this revision

Viewing changes to plugins/Tips/plugininterface.h

  • Committer: Bazaar Package Importer
  • Author(s): Fabrice Coutadeur
  • Date: 2008-08-20 10:22:14 UTC
  • Revision ID: james.westby@ubuntu.com-20080820102214-fv93myu0ncb1503r
Tags: upstream-0.2.4
ImportĀ upstreamĀ versionĀ 0.2.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//MountManager - the program for easy mounting of storage devices in Linux
 
2
//Copyright (C) 2007-2008 Tikhonov Sergey
 
3
//
 
4
//This file is part of MountManager Plugin "Images mounting"
 
5
//
 
6
//This program is free software; you can redistribute it and/or
 
7
//modify it under the terms of the GNU General Public License
 
8
//as published by the Free Software Foundation; either version 2
 
9
//of the License, or (at your option) any later version.
 
10
//
 
11
//This program is distributed in the hope that it will be useful,
 
12
//but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
//GNU General Public License for more details.
 
15
//
 
16
//You should have received a copy of the GNU General Public License
 
17
//along with this program; if not, write to the Free Software
 
18
//Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
19
#ifndef PLUGININTERFACE_H
 
20
#define PLUGININTERFACE_H
 
21
 
 
22
#include <QList>
 
23
 
 
24
class QDialog;
 
25
class QDockWidget;
 
26
class QToolBar;
 
27
class QMenu;
 
28
 
 
29
class QAction;
 
30
 
 
31
typedef QList<QAction *> Actions;
 
32
 
 
33
class MountManagerPlugin
 
34
{
 
35
        public:
 
36
                virtual ~MountManagerPlugin() { }
 
37
 
 
38
                // parent recieve signals about main program status
 
39
                virtual void setParent(QObject *parent) = 0;
 
40
 
 
41
                // Information about plugin
 
42
                virtual const QString pluginName() const = 0;
 
43
                virtual const QString pluginDescription() const = 0;
 
44
                
 
45
                virtual QDialog *dialog() const = 0;
 
46
                virtual QDockWidget *dockWidget() const = 0;
 
47
                virtual QMenu *menu() const = 0;
 
48
                virtual QToolBar *toolBar() const = 0;
 
49
                
 
50
                virtual Actions menuActions() const = 0;
 
51
};
 
52
 
 
53
Q_DECLARE_INTERFACE(MountManagerPlugin,"org.vialinx.MountManager.MountManagerPlugin/1.0")
 
54
 
 
55
#endif