/[svn]/qsampler/trunk/src/qsamplerInstrumentListForm.cpp
ViewVC logotype

Diff of /qsampler/trunk/src/qsamplerInstrumentListForm.cpp

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1509 by capela, Thu Nov 22 11:10:44 2007 UTC revision 2722 by capela, Tue Mar 3 17:41:04 2015 UTC
# Line 1  Line 1 
1  // qsamplerInstrumentListForm.cpp  // qsamplerInstrumentListForm.cpp
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2003-2007, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2003-2015, rncbc aka Rui Nuno Capela. All rights reserved.
5     Copyright (C) 2007, Christian Schoenebeck     Copyright (C) 2007, Christian Schoenebeck
6    
7     This program is free software; you can redistribute it and/or     This program is free software; you can redistribute it and/or
# Line 20  Line 20 
20    
21  *****************************************************************************/  *****************************************************************************/
22    
23    #include "qsamplerAbout.h"
24  #include "qsamplerInstrumentListForm.h"  #include "qsamplerInstrumentListForm.h"
25    
26    #include "qsamplerInstrumentList.h"
27    
28  #include "qsamplerInstrumentForm.h"  #include "qsamplerInstrumentForm.h"
29  #include "qsamplerMainForm.h"  
30  #include "qsamplerOptions.h"  #include "qsamplerOptions.h"
31  #include "qsamplerInstrument.h"  #include "qsamplerInstrument.h"
32    #include "qsamplerMainForm.h"
33    
34    #include <QHeaderView>
35    #include <QMessageBox>
36    #include <QContextMenuEvent>
37    
38    #include <QCheckBox>
39    
40    
41  namespace QSampler {  namespace QSampler {
42    
43    //-------------------------------------------------------------------------
44    // QSampler::InstrumentListForm -- Instrument map list form implementation.
45    //
46    
47  InstrumentListForm::InstrumentListForm (  InstrumentListForm::InstrumentListForm (
48          QWidget* pParent, Qt::WindowFlags wflags )          QWidget* pParent, Qt::WindowFlags wflags )
49          : QMainWindow(pParent, wflags)          : QMainWindow(pParent, wflags)
50  {  {
51          m_ui.setupUi(this);          m_ui.setupUi(this);
52    
53            m_pInstrumentListView = new InstrumentListView(this);
54            QMainWindow::setCentralWidget(m_pInstrumentListView);
55    
56          // Setup toolbar widgets.          // Setup toolbar widgets.
57          m_pMapComboBox = new QComboBox(m_ui.InstrumentToolbar);          m_pMapComboBox = new QComboBox(m_ui.instrumentToolbar);
58          m_pMapComboBox->setMinimumWidth(120);          m_pMapComboBox->setMinimumWidth(120);
59          m_pMapComboBox->setEnabled(false);          m_pMapComboBox->setEnabled(false);
60          m_pMapComboBox->setToolTip(tr("Instrument Map"));          m_pMapComboBox->setToolTip(tr("Instrument Map"));
61          m_ui.InstrumentToolbar->addWidget(m_pMapComboBox);          
62            m_ui.instrumentToolbar->addWidget(m_pMapComboBox);
63          m_ui.InstrumentToolbar->addSeparator();          m_ui.instrumentToolbar->addSeparator();
64          m_ui.InstrumentToolbar->addAction(m_ui.newInstrumentAction);          m_ui.instrumentToolbar->addAction(m_ui.newInstrumentAction);
65          m_ui.InstrumentToolbar->addAction(m_ui.editInstrumentAction);          m_ui.instrumentToolbar->addAction(m_ui.editInstrumentAction);
66          m_ui.InstrumentToolbar->addAction(m_ui.deleteInstrumentAction);          m_ui.instrumentToolbar->addAction(m_ui.deleteInstrumentAction);
67          m_ui.InstrumentToolbar->addSeparator();          m_ui.instrumentToolbar->addSeparator();
68          m_ui.InstrumentToolbar->addAction(m_ui.refreshInstrumentsAction);          m_ui.instrumentToolbar->addAction(m_ui.refreshInstrumentsAction);
   
         m_ui.InstrumentTable->setModel(&m_model);  
         m_ui.InstrumentTable->setItemDelegate(&m_delegate);  
69    
70          QObject::connect(m_pMapComboBox,          QObject::connect(m_pMapComboBox,
71                  SIGNAL(activated(int)),                  SIGNAL(activated(int)),
72                  SLOT(activateMap(int)));                  SLOT(activateMap(int)));
73            QObject::connect(m_pInstrumentListView->selectionModel(),
74                    SIGNAL(currentRowChanged(const QModelIndex&,const QModelIndex&)),
75                    SLOT(stabilizeForm()));
76          QObject::connect(          QObject::connect(
77                  m_ui.refreshInstrumentsAction,                  m_pInstrumentListView,
                 SIGNAL(triggered()),  
                 SLOT(refreshInstruments(void)));  
         QObject::connect(  
                 m_ui.InstrumentTable,  
78                  SIGNAL(activated(const QModelIndex&)),                  SIGNAL(activated(const QModelIndex&)),
79                  SLOT(editInstrument(const QModelIndex&)));                  SLOT(editInstrument(const QModelIndex&)));
80          QObject::connect(          QObject::connect(
# Line 76  InstrumentListForm::InstrumentListForm ( Line 89  InstrumentListForm::InstrumentListForm (
89                  m_ui.editInstrumentAction,                  m_ui.editInstrumentAction,
90                  SIGNAL(triggered()),                  SIGNAL(triggered()),
91                  SLOT(editInstrument()));                  SLOT(editInstrument()));
92            QObject::connect(
93                    m_ui.refreshInstrumentsAction,
94                    SIGNAL(triggered()),
95                    SLOT(refreshInstruments()));
96    
97          MainForm *pMainForm = MainForm::getInstance();          // Things must be stable from the start.
98          if (pMainForm) {          stabilizeForm();
                 QObject::connect(&m_model,  
                         SIGNAL(instrumentsChanged()),  
                         pMainForm, SLOT(sessionDirty()));  
         }  
99  }  }
100    
101    
102  InstrumentListForm::~InstrumentListForm (void)  InstrumentListForm::~InstrumentListForm (void)
103  {  {
104          delete m_pMapComboBox;          delete m_pMapComboBox;
105            delete m_pInstrumentListView;
106  }  }
107    
108    
# Line 132  void InstrumentListForm::refreshInstrume Line 146  void InstrumentListForm::refreshInstrume
146          if (pMainForm == NULL)          if (pMainForm == NULL)
147                  return;                  return;
148    
149          qsamplerOptions *pOptions = pMainForm->options();          Options *pOptions = pMainForm->options();
150          if (pOptions == NULL)          if (pOptions == NULL)
151                  return;                  return;
152    
# Line 144  void InstrumentListForm::refreshInstrume Line 158  void InstrumentListForm::refreshInstrume
158          // Populate maps list.          // Populate maps list.
159          m_pMapComboBox->clear();          m_pMapComboBox->clear();
160          m_pMapComboBox->addItem(tr("(All)"));          m_pMapComboBox->addItem(tr("(All)"));
161          m_pMapComboBox->insertItems(1, qsamplerInstrument::getMapNames());          m_pMapComboBox->insertItems(1, Instrument::getMapNames());
162    
163          // Adjust to saved selection...          // Adjust to saved selection...
164          if (iMap < 0 || iMap >= m_pMapComboBox->count())          if (iMap < 0 || iMap >= m_pMapComboBox->count())
# Line 163  void InstrumentListForm::activateMap ( i Line 177  void InstrumentListForm::activateMap ( i
177          if (pMainForm == NULL)          if (pMainForm == NULL)
178                  return;                  return;
179    
180          qsamplerOptions *pOptions = pMainForm->options();          Options *pOptions = pMainForm->options();
181          if (pOptions == NULL)          if (pOptions == NULL)
182                  return;                  return;
183    
# Line 171  void InstrumentListForm::activateMap ( i Line 185  void InstrumentListForm::activateMap ( i
185          if (iMidiMap >= 0)          if (iMidiMap >= 0)
186                  pOptions->iMidiMap = iMidiMap;                  pOptions->iMidiMap = iMidiMap;
187    
188          m_model.setMidiMap(iMidiMap);          m_pInstrumentListView->setMidiMap(iMidiMap);
189          m_model.refresh();          m_pInstrumentListView->refresh();
190    
191            stabilizeForm();
192    }
193    
194    
195    void InstrumentListForm::newInstrument (void)
196    {
197            Instrument instrument;
198    
199            InstrumentForm form(this);
200            form.setup(&instrument);
201            if (!form.exec())
202                    return;
203    
204            // Commit...
205            instrument.mapInstrument();
206    
207            // add new item to the table model
208            m_pInstrumentListView->addInstrument(
209                    instrument.map(),
210                    instrument.bank(),
211                    instrument.prog());
212    
213            stabilizeForm();
214  }  }
215    
216    
217  void InstrumentListForm::editInstrument (void)  void InstrumentListForm::editInstrument (void)
218  {  {
219          editInstrument(m_ui.InstrumentTable->currentIndex());          editInstrument(m_pInstrumentListView->currentIndex());
220  }  }
221    
222    
223  void InstrumentListForm::editInstrument ( const QModelIndex& index )  void InstrumentListForm::editInstrument ( const QModelIndex& index )
224  {  {
225          if (!index.isValid() || !index.data(Qt::UserRole).isValid())          if (!index.isValid())
226                  return;                  return;
227    
228          qsamplerInstrument* pInstrument          Instrument *pInstrument
229                  = static_cast<qsamplerInstrument *> (                  = static_cast<Instrument *> (index.internalPointer());
                         index.data(Qt::UserRole).value<void *> ());  
   
230          if (pInstrument == NULL)          if (pInstrument == NULL)
231                  return;                  return;
232    
233          // Save current key values...          // Save current key values...
234          qsamplerInstrument oldInstrument(*pInstrument);          int iMap  = pInstrument->map();
235            int iBank = pInstrument->bank();
236            int iProg = pInstrument->prog();
237    
238            Instrument instrument(iMap, iBank, iProg);
239    
240          // Do the edit dance...          // Do the edit dance...
241          InstrumentForm form(this);          InstrumentForm form(this);
242          form.setup(pInstrument);          form.setup(pInstrument);
243          if (form.exec()) {          if (!form.exec())
244                  // Commit...                  return;
245                  pInstrument->mapInstrument();          
246                  // Check whether we changed instrument key...          // Commit...
247                  if (oldInstrument.map()  == pInstrument->map()  &&          pInstrument->mapInstrument();
248                          oldInstrument.bank() == pInstrument->bank() &&  
249                          oldInstrument.prog() == pInstrument->prog()) {          // Check whether we changed instrument key...
250                          // just update tree item...          if (pInstrument->map()  == iMap  &&
251                          //pItem->update();                  pInstrument->bank() == iBank &&
252                  } else {                  pInstrument->prog() == iProg) {
253                          // Unmap old instance...                  // Just update tree item...
254                          oldInstrument.unmapInstrument();                  m_pInstrumentListView->updateInstrument(pInstrument);
255                          // correct the position of the instrument in the model          } else {
256                          m_model.resort(*pInstrument);                  // Unmap old instance...
257                  }                  instrument.unmapInstrument();
258                  // Notify we've changes...                  // Correct the position of the instrument in the model
259                  emit m_model.reset();                  m_pInstrumentListView->resortInstrument(pInstrument);
260          }          }
261    
262            stabilizeForm();
263  }  }
264    
265    
266  void InstrumentListForm::newInstrument (void)  void InstrumentListForm::deleteInstrument (void)
267  {  {
268          qsamplerInstrument instrument;          const QModelIndex& index = m_pInstrumentListView->currentIndex();
269            if (!index.isValid())
270                    return;
271    
272          InstrumentForm form(this);          Instrument *pInstrument
273          form.setup(&instrument);                  = static_cast<Instrument *> (index.internalPointer());
274          if (!form.exec())          if (pInstrument == NULL)
275                  return;                  return;
276    
277          // Commit...          MainForm *pMainForm = MainForm::getInstance();
278          instrument.mapInstrument();          if (pMainForm == NULL)
279          // add new item to the table model                  return;
280          m_model.resort(instrument);  
281          // Notify we've changes...          // Prompt user if this is for real...
282          //emit model.reset();          Options *pOptions = pMainForm->options();
283          //FIXME: call above didnt really refresh, so we use this for now ...          if (pOptions && pOptions->bConfirmRemove) {
284          refreshInstruments();                  const QString& sTitle = QSAMPLER_TITLE ": " + tr("Warning");
285                    const QString& sText = tr(
286                            "About to delete instrument map entry:\n\n"
287                            "%1\n\n"
288                            "Are you sure?")
289                            .arg(pInstrument->name());
290             #if 0
291                     if (QMessageBox::warning(this, sTitle, sText,
292                             QMessageBox::Ok | QMessageBox::Cancel) == QMessageBox::Cancel)
293                             return;
294             #else
295                     QMessageBox mbox(this);
296                     mbox.setIcon(QMessageBox::Warning);
297                     mbox.setWindowTitle(sTitle);
298                     mbox.setText(sText);
299                     mbox.setStandardButtons(QMessageBox::Ok | QMessageBox::Cancel);
300                     QCheckBox cbox(tr("Don't ask this again"));
301                     cbox.setChecked(false);
302                     cbox.blockSignals(true);
303                     mbox.addButton(&cbox, QMessageBox::ActionRole);
304                     if (mbox.exec() == QMessageBox::Cancel)
305                             return;
306                     if (cbox.isChecked())
307                             pOptions->bConfirmRemove = false;
308             #endif
309            }
310    
311            pInstrument->unmapInstrument();
312    
313            // Let the instrument vanish from the table model...
314            m_pInstrumentListView->removeInstrument(pInstrument);
315    
316            stabilizeForm();
317  }  }
318    
319    
320  void InstrumentListForm::deleteInstrument (void)  // Update form actions enablement...
321    void InstrumentListForm::stabilizeForm (void)
322  {  {
323          const QModelIndex& index = m_ui.InstrumentTable->currentIndex();          MainForm *pMainForm = MainForm::getInstance();
         if (!index.isValid() || !index.data(Qt::UserRole).isValid())  
                 return;  
324    
325          qsamplerInstrument* pInstrument =          bool bEnabled = (pMainForm && pMainForm->client());
326                  static_cast<qsamplerInstrument*> (          m_ui.newInstrumentAction->setEnabled(bEnabled);
327                          index.data(Qt::UserRole).value<void *> ());          const QModelIndex& index = m_pInstrumentListView->currentIndex();
328            bEnabled = (bEnabled && index.isValid());
329            m_ui.editInstrumentAction->setEnabled(bEnabled);
330            m_ui.deleteInstrumentAction->setEnabled(bEnabled);
331    }
332    
         if (pInstrument == NULL)  
                 return;  
333    
334          pInstrument->unmapInstrument();  // Context menu request.
335          // let the instrument vanish from the table model  void InstrumentListForm::contextMenuEvent (
336          m_model.removeInstrument(*pInstrument);          QContextMenuEvent *pContextMenuEvent )
337          // Notify we've changes...  {
338          emit m_model.reset();          QMenu menu(this);
339    
340            menu.addAction(m_ui.newInstrumentAction);
341            menu.addSeparator();
342            menu.addAction(m_ui.editInstrumentAction);
343            menu.addAction(m_ui.deleteInstrumentAction);
344            menu.addSeparator();
345            menu.addAction(m_ui.refreshInstrumentsAction);
346    
347            menu.exec(pContextMenuEvent->globalPos());
348  }  }
349    
350    
351  } // namespace QSampler  } // namespace QSampler
352    
353    

Legend:
Removed from v.1509  
changed lines
  Added in v.2722

  ViewVC Help
Powered by ViewVC