diff options
| author | Florian Jung <flo@windfisch.org> | 2011-12-22 00:13:14 +0000 | 
|---|---|---|
| committer | Florian Jung <flo@windfisch.org> | 2011-12-22 00:13:14 +0000 | 
| commit | b1b88156cb2adf84e752449f2bc803754b520f8c (patch) | |
| tree | 3d70291cf9671beb4253b23f026212e3350ab004 /muse2/muse/plugin.h | |
| parent | 1057d7190242cdf9248671b316a398db805f5f56 (diff) | |
| parent | 1fe51e45eebbfc2ac198ed4778c9afdb9eaf2ed0 (diff) | |
merged with trunk again (you're committing faster than i can merge ;) )
Diffstat (limited to 'muse2/muse/plugin.h')
| -rw-r--r-- | muse2/muse/plugin.h | 19 | 
1 files changed, 14 insertions, 5 deletions
diff --git a/muse2/muse/plugin.h b/muse2/muse/plugin.h index 044fd863..717dc281 100644 --- a/muse2/muse/plugin.h +++ b/muse2/muse/plugin.h @@ -60,6 +60,8 @@ class QScrollArea;  class QToolButton;  class QToolButton;  class QTreeWidget; +class QRect; +class QByteArray;  namespace MusEGui {  class PluginGui; @@ -578,25 +580,28 @@ class PluginGui : public QMainWindow {  enum { SEL_SM, SEL_S, SEL_M, SEL_ALL };  class PluginDialog : public QDialog { +      Q_OBJECT +        QTreeWidget* pList;        QRadioButton* allPlug;        QRadioButton* onlyM;        QRadioButton* onlyS;        QRadioButton* onlySM;        QPushButton *okB; - -      Q_OBJECT +      void saveSettings();     public:        PluginDialog(QWidget* parent=0);        static MusECore::Plugin* getPlugin(QWidget* parent);        MusECore::Plugin* value(); -      void accept();     public slots: +      void accept(); +      void reject();        void fillPlugs(QAbstractButton*); -      void fillPlugs(int i); -      void fillPlugs(const QString& sortValue); +      //void fillPlugs(int i); +      //void fillPlugs(const QString& sortValue); +      void fillPlugs();     private slots:        void enableOkB(); @@ -605,6 +610,10 @@ class PluginDialog : public QDialog {        QComboBox *sortBox;        static int selectedPlugType;        static QStringList sortItems; +      //static int sortColumn; +      //static Qt::SortOrder sortOrder; +      static QRect geometrySave; +      static QByteArray listSave;        };  }  | 
