diff options
| author | Orcan Ogetbil <oget.fedora@gmail.com> | 2011-10-12 02:49:43 +0000 | 
|---|---|---|
| committer | Orcan Ogetbil <oget.fedora@gmail.com> | 2011-10-12 02:49:43 +0000 | 
| commit | b1462cc01b80bfb18c1b157dfdf7ce9a0f198279 (patch) | |
| tree | b18cc031c024287e34c8aa568ca9d30925494878 /muse2/muse | |
| parent | 12a05293d545375bfc68665f047bb5838ac212ef (diff) | |
made rhythm generator aware of namespaces
Diffstat (limited to 'muse2/muse')
| -rw-r--r-- | muse2/muse/mplugins/mitplugin.cpp | 10 | ||||
| -rw-r--r-- | muse2/muse/mplugins/rhythm.cpp | 4 | ||||
| -rw-r--r-- | muse2/muse/mplugins/rhythm.h | 27 | 
3 files changed, 26 insertions, 15 deletions
| diff --git a/muse2/muse/mplugins/mitplugin.cpp b/muse2/muse/mplugins/mitplugin.cpp index 48e30bb6..d4d7dd70 100644 --- a/muse2/muse/mplugins/mitplugin.cpp +++ b/muse2/muse/mplugins/mitplugin.cpp @@ -48,7 +48,7 @@ void MusE::startMidiInputPlugin(int id)        QAction* act;        if (id == 0) {              if (!MusEGlobal::mitPluginTranspose) { -                  MusEGlobal::mitPluginTranspose = new MusEGui::MITPluginTranspose(); +                  MusEGlobal::mitPluginTranspose = new MITPluginTranspose();                    MusECore::mitPlugins.push_back(MusEGlobal::mitPluginTranspose);                    connect(MusEGlobal::mitPluginTranspose, SIGNAL(hideWindow()),                       SLOT(hideMitPluginTranspose())); @@ -58,7 +58,7 @@ void MusE::startMidiInputPlugin(int id)              }        else if (id == 1) {              if (!midiInputTransform) { -                  midiInputTransform = new MusEGui::MidiInputTransformDialog(); +                  midiInputTransform = new MidiInputTransformDialog();                    connect(midiInputTransform, SIGNAL(hideWindow()),                       SLOT(hideMidiInputTransform()));                    } @@ -67,7 +67,7 @@ void MusE::startMidiInputPlugin(int id)              }        else if (id == 2) {              if (!midiFilterConfig) { -                  midiFilterConfig = new MusEGui::MidiFilterConfig(); +                  midiFilterConfig = new MidiFilterConfig();                    connect(midiFilterConfig, SIGNAL(hideWindow()),                       SLOT(hideMidiFilterConfig()));                    } @@ -76,7 +76,7 @@ void MusE::startMidiInputPlugin(int id)              }        else if (id == 3) {              if (!midiRemoteConfig) { -                  midiRemoteConfig = new MusEGui::MRConfig(); +                  midiRemoteConfig = new MRConfig();                    connect(midiRemoteConfig, SIGNAL(hideWindow()),                       SLOT(hideMidiRemoteConfig()));                    } @@ -134,7 +134,7 @@ void MusE::hideMidiRhythmGenerator()  void MusE::startMidiTransformer()        {        if (midiTransformerDialog == 0) -            midiTransformerDialog = new MusEGui::MidiTransformerDialog; +            midiTransformerDialog = new MidiTransformerDialog;        midiTransformerDialog->show();        } diff --git a/muse2/muse/mplugins/rhythm.cpp b/muse2/muse/mplugins/rhythm.cpp index 78dfeee5..7c51227c 100644 --- a/muse2/muse/mplugins/rhythm.cpp +++ b/muse2/muse/mplugins/rhythm.cpp @@ -29,6 +29,8 @@  #include "rhythm.h" +namespace MusEGui { +  //---------------------------------------------------------  //   RhythmGen  //--------------------------------------------------------- @@ -525,5 +527,7 @@ RhythmGenerator::~RhythmGenerator()  {      // no need to delete child widgets, Qt does it all for us  } +  #endif +} // namespace MusEGui diff --git a/muse2/muse/mplugins/rhythm.h b/muse2/muse/mplugins/rhythm.h index d60e7993..de6c178b 100644 --- a/muse2/muse/mplugins/rhythm.h +++ b/muse2/muse/mplugins/rhythm.h @@ -34,17 +34,22 @@  #include <QMainWindow> +#define MAX_GROUPS  5 +#define MAX_KEYS   20 +  class QCloseEvent; +namespace MusECore { +class Xml; +} + +namespace MusEGui { +  class tTrack;  class tEventWin;  class tSong;  class tBarInfo; -#define MAX_GROUPS  5 -#define MAX_KEYS   20 - -class Xml;  #if 0  //--------------------------------------------------------- @@ -59,8 +64,8 @@ struct tRhyGroup {              listen = 0;              contrib = 0;              } -//      void write(int, Xml&); -//      void read(Xml&); +//      void write(int, MusECore::Xml&); +//      void read(MusECore::Xml&);        };  //--------------------------------------------------------- @@ -71,8 +76,8 @@ struct tRhyGroups {        tRhyGroup g[MAX_GROUPS];        tRhyGroup& operator [] (int i) { return g[i]; } -//      void write(int, Xml&); -//      void read(Xml&); +//      void write(int, MusECore::Xml&); +//      void read(MusECore::Xml&);        };  //--------------------------------------------------------- @@ -123,8 +128,8 @@ class tRhythm        void GenInit(long start_clock);        void GenerateEvent(tTrack *track, long clock, short vel, short len); -      void write(int, Xml&); -      void read(Xml&); +      void write(int, MusECore::Xml&); +      void read(MusECore::Xml&);        };  #endif @@ -209,5 +214,7 @@ class RhythmGen : public QMainWindow, public Ui::RhythmBase  //      bool OnClose();        }; +} // namespace MusEGui +  #endif | 
