formatting is changed according to last astyle settings
[qtrapids] / src / plugins / PluginInterface.h
index 019dc9a..427c330 100644 (file)
@@ -40,20 +40,20 @@ class PluginHostInterface
 {
 public:
 
-    /// @brief Sets the plugin GUI element to host application
-    /// @note It is up to the host application to decide how to manage
-    /// and show the actual widget.
-    virtual bool setGui(PluginInterface* from, QWidget* widget) = 0;
-
-    /// @brief Adds additional plugin wigdets to the host application.
-    /// This functio can be called by the plugin recursively, i.e. when GUI events occur
-    /// The host application must handle placing the additional widgets.
-    /// @todo Could we implement this using in a more manageable way, e.g. signal-slot?
-    virtual void addPluginWidget(PluginInterface* from, QWidget* widget) = 0;
-    virtual void addToolbar(PluginInterface* from, QWidget* widget) = 0;
-    virtual void addToolItem(PluginInterface* from, QWidget* widget) = 0;
-    virtual void addMenu(PluginInterface* from, QWidget* widget) = 0;
-    virtual void addMenuItem(PluginInterface* from, QWidget* widget) = 0;
+       /// @brief Sets the plugin GUI element to host application
+       /// @note It is up to the host application to decide how to manage
+       /// and show the actual widget.
+       virtual bool setGui(PluginInterface* from, QWidget* widget) = 0;
+
+       /// @brief Adds additional plugin wigdets to the host application.
+       /// This functio can be called by the plugin recursively, i.e. when GUI events occur
+       /// The host application must handle placing the additional widgets.
+       /// @todo Could we implement this using in a more manageable way, e.g. signal-slot?
+       virtual void addPluginWidget(PluginInterface* from, QWidget* widget) = 0;
+       virtual void addToolbar(PluginInterface* from, QWidget* widget) = 0;
+       virtual void addToolItem(PluginInterface* from, QWidget* widget) = 0;
+       virtual void addMenu(PluginInterface* from, QWidget* widget) = 0;
+       virtual void addMenuItem(PluginInterface* from, QWidget* widget) = 0;
 };
 =======
     >>>>>>> .r31
@@ -70,21 +70,21 @@ public:
 {
 public:
 
-    >>>>>>> .r31
-    /// @brief Sets the plugin GUI element to host application
-    /// @note It is up to the host application to decide how to manage
-    /// and show the actual widget.
-    virtual bool setGui(QWidget* widget) = 0;
-
-    /// @brief Adds additional plugin wigdets to the host application.
-    /// This functio can be called by the plugin recursively, i.e. when GUI events occur
-    /// The host application must handle placing the additional widgets.
-    /// @todo Could we implement this using in a more manageable way, e.g. signal-slot?
-    virtual void addPluginWidget(QWidget* widget) = 0;
-    virtual void addToolbar() = 0;
-    virtual void addToolItem() = 0;
-    virtual void addMenu() = 0;
-    virtual void addMenuItem() = 0;
+       >>>>>>> .r31
+       /// @brief Sets the plugin GUI element to host application
+       /// @note It is up to the host application to decide how to manage
+       /// and show the actual widget.
+       virtual bool setGui(QWidget* widget) = 0;
+
+       /// @brief Adds additional plugin wigdets to the host application.
+       /// This functio can be called by the plugin recursively, i.e. when GUI events occur
+       /// The host application must handle placing the additional widgets.
+       /// @todo Could we implement this using in a more manageable way, e.g. signal-slot?
+       virtual void addPluginWidget(QWidget* widget) = 0;
+       virtual void addToolbar() = 0;
+       virtual void addToolItem() = 0;
+       virtual void addMenu() = 0;
+       virtual void addMenuItem() = 0;
 };
 
 
@@ -96,9 +96,9 @@ public:
 class PluginInterface : public QObject
 {
 public:
-    /// @brief Initializes the plugin instance.
-    virtual void initialize(PluginHostInterface* host) = 0;
-    virtual QWidget* getGui() = 0;
+       /// @brief Initializes the plugin instance.
+       virtual void initialize(PluginHostInterface* host) = 0;
+       virtual QWidget* getGui() = 0;
 };
 
 } //namespace qtrapids