/[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 2064 by capela, Fri Mar 12 16:02:32 2010 UTC revision 3555 by capela, Tue Aug 13 10:19:32 2019 UTC
# Line 1  Line 1 
1  // qsamplerInstrumentListForm.cpp  // qsamplerInstrumentListForm.cpp
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2003-2010, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2003-2019, 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 33  Line 33 
33    
34  #include <QHeaderView>  #include <QHeaderView>
35  #include <QMessageBox>  #include <QMessageBox>
36    #include <QContextMenuEvent>
37    
38    #include <QCheckBox>
39    
40    
41  namespace QSampler {  namespace QSampler {
# Line 47  InstrumentListForm::InstrumentListForm ( Line 50  InstrumentListForm::InstrumentListForm (
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_pInstrumentListView = new InstrumentListView(this);  
   
         QHeaderView *pHeader = m_pInstrumentListView->header();  
         pHeader->setDefaultAlignment(Qt::AlignLeft);  
         pHeader->setMovable(false);  
         pHeader->setStretchLastSection(true);  
         pHeader->resizeSection(0, 120);                                         // Name  
         m_pInstrumentListView->resizeColumnToContents(1);       // Map  
         m_pInstrumentListView->resizeColumnToContents(2);       // Bank  
         m_pInstrumentListView->resizeColumnToContents(3);       // Prog  
         m_pInstrumentListView->resizeColumnToContents(4);       // Engine  
         pHeader->resizeSection(5, 240);                                         // File  
         m_pInstrumentListView->resizeColumnToContents(6);       // Nr  
         pHeader->resizeSection(7, 60);                                          // Vol  
   
         // Enable custom context menu...  
         m_pInstrumentListView->setContextMenuPolicy(Qt::CustomContextMenu);  
   
         QMainWindow::setCentralWidget(m_pInstrumentListView);  
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(          QObject::connect(m_pInstrumentListView->selectionModel(),
74                  m_pInstrumentListView,                  SIGNAL(currentRowChanged(const QModelIndex&,const QModelIndex&)),
                 SIGNAL(customContextMenuRequested(const QPoint&)),  
                 SLOT(contextMenu(const QPoint&)));  
         QObject::connect(  
                 m_pInstrumentListView,  
                 SIGNAL(pressed(const QModelIndex&)),  
75                  SLOT(stabilizeForm()));                  SLOT(stabilizeForm()));
76          QObject::connect(          QObject::connect(
77                  m_pInstrumentListView,                  m_pInstrumentListView,
# Line 120  InstrumentListForm::InstrumentListForm ( Line 101  InstrumentListForm::InstrumentListForm (
101    
102  InstrumentListForm::~InstrumentListForm (void)  InstrumentListForm::~InstrumentListForm (void)
103  {  {
         delete m_pInstrumentListView;  
104          delete m_pMapComboBox;          delete m_pMapComboBox;
105            delete m_pInstrumentListView;
106  }  }
107    
108    
# Line 162  void InstrumentListForm::closeEvent ( QC Line 143  void InstrumentListForm::closeEvent ( QC
143  void InstrumentListForm::refreshInstruments (void)  void InstrumentListForm::refreshInstruments (void)
144  {  {
145          MainForm* pMainForm = MainForm::getInstance();          MainForm* pMainForm = MainForm::getInstance();
146          if (pMainForm == NULL)          if (pMainForm == nullptr)
147                  return;                  return;
148    
149          Options *pOptions = pMainForm->options();          Options *pOptions = pMainForm->options();
150          if (pOptions == NULL)          if (pOptions == nullptr)
151                  return;                  return;
152    
153          // Get/save current map selection...          // Get/save current map selection...
# Line 193  void InstrumentListForm::refreshInstrume Line 174  void InstrumentListForm::refreshInstrume
174  void InstrumentListForm::activateMap ( int iMap )  void InstrumentListForm::activateMap ( int iMap )
175  {  {
176          MainForm* pMainForm = MainForm::getInstance();          MainForm* pMainForm = MainForm::getInstance();
177          if (pMainForm == NULL)          if (pMainForm == nullptr)
178                  return;                  return;
179    
180          Options *pOptions = pMainForm->options();          Options *pOptions = pMainForm->options();
181          if (pOptions == NULL)          if (pOptions == nullptr)
182                  return;                  return;
183    
184          int iMidiMap = iMap - 1;          int iMidiMap = iMap - 1;
# Line 211  void InstrumentListForm::activateMap ( i Line 192  void InstrumentListForm::activateMap ( i
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_pInstrumentListView->currentIndex());          editInstrument(m_pInstrumentListView->currentIndex());
# Line 224  void InstrumentListForm::editInstrument Line 227  void InstrumentListForm::editInstrument
227    
228          Instrument *pInstrument          Instrument *pInstrument
229                  = static_cast<Instrument *> (index.internalPointer());                  = static_cast<Instrument *> (index.internalPointer());
230          if (pInstrument == NULL)          if (pInstrument == nullptr)
                 return;  
   
         if (pInstrument == NULL)  
231                  return;                  return;
232    
233          // Save current key values...          // Save current key values...
234          Instrument oldInstrument(          int iMap  = pInstrument->map();
235                  pInstrument->map(),          int iBank = pInstrument->bank();
236                  pInstrument->bank(),          int iProg = pInstrument->prog();
237                  pInstrument->prog());  
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);
         if (form.exec()) {  
                 // Commit...  
                 pInstrument->mapInstrument();  
                 // Check whether we changed instrument key...  
                 if (oldInstrument.map()  == pInstrument->map()  &&  
                         oldInstrument.bank() == pInstrument->bank() &&  
                         oldInstrument.prog() == pInstrument->prog()) {  
                         // Just update tree item...  
                         //pItem->update();  
                 } else {  
                         // Unmap old instance...  
                         oldInstrument.unmapInstrument();  
                         // correct the position of the instrument in the model  
                         m_pInstrumentListView->updateInstrument(pInstrument);  
                 }  
         }  
 }  
   
   
 void InstrumentListForm::newInstrument (void)  
 {  
         Instrument instrument;  
   
         InstrumentForm form(this);  
         form.setup(&instrument);  
243          if (!form.exec())          if (!form.exec())
244                  return;                  return;
245            
246          // Commit...          // Commit...
247          instrument.mapInstrument();          pInstrument->mapInstrument();
248    
249          // add new item to the table model          // Check whether we changed instrument key...
250          m_pInstrumentListView->addInstrument(          if (pInstrument->map()  == iMap  &&
251                  instrument.map(),                  pInstrument->bank() == iBank &&
252                  instrument.bank(),                  pInstrument->prog() == iProg) {
253                  instrument.prog());                  // Just update tree item...
254                    m_pInstrumentListView->updateInstrument(pInstrument);
255            } else {
256                    // Unmap old instance...
257                    instrument.unmapInstrument();
258                    // Correct the position of the instrument in the model
259                    m_pInstrumentListView->resortInstrument(pInstrument);
260            }
261    
262            stabilizeForm();
263  }  }
264    
265    
# Line 286  void InstrumentListForm::deleteInstrumen Line 271  void InstrumentListForm::deleteInstrumen
271    
272          Instrument *pInstrument          Instrument *pInstrument
273                  = static_cast<Instrument *> (index.internalPointer());                  = static_cast<Instrument *> (index.internalPointer());
274          if (pInstrument == NULL)          if (pInstrument == nullptr)
275                  return;                  return;
276    
277          MainForm *pMainForm = MainForm::getInstance();          MainForm *pMainForm = MainForm::getInstance();
278          if (pMainForm == NULL)          if (pMainForm == nullptr)
279                  return;                  return;
280    
281          // Prompt user if this is for real...          // Prompt user if this is for real...
282          Options *pOptions = pMainForm->options();          Options *pOptions = pMainForm->options();
283          if (pOptions && pOptions->bConfirmRemove) {          if (pOptions && pOptions->bConfirmRemove) {
284                  if (QMessageBox::warning(this,                  const QString& sTitle = QSAMPLER_TITLE ": " + tr("Warning");
285                          QSAMPLER_TITLE ": " + tr("Warning"),                  const QString& sText = tr(
286                          tr("About to delete instrument map entry:\n\n"                          "About to delete instrument map entry:\n\n"
287                          "%1\n\n"                          "%1\n\n"
288                          "Are you sure?")                          "Are you sure?")
289                          .arg(pInstrument->name()),                          .arg(pInstrument->name());
290                          QMessageBox::Ok | QMessageBox::Cancel)           #if 0
291                          == QMessageBox::Cancel)                   if (QMessageBox::warning(this, sTitle, sText,
292                          return;                           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();          pInstrument->unmapInstrument();
312    
313          // let the instrument vanish from the table model          // Let the instrument vanish from the table model...
314          m_pInstrumentListView->removeInstrument(pInstrument);          m_pInstrumentListView->removeInstrument(pInstrument);
315    
316            stabilizeForm();
317  }  }
318    
319    
# Line 328  void InstrumentListForm::stabilizeForm ( Line 331  void InstrumentListForm::stabilizeForm (
331  }  }
332    
333    
334  // Handle custom context menu here...  // Context menu request.
335  void InstrumentListForm::contextMenu ( const QPoint& pos )  void InstrumentListForm::contextMenuEvent (
336  {          QContextMenuEvent *pContextMenuEvent )
337          if (!m_ui.newInstrumentAction->isEnabled())  {
338                  return;          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          m_ui.contextMenu->exec(          menu.exec(pContextMenuEvent->globalPos());
                 (m_pInstrumentListView->viewport())->mapToGlobal(pos));  
348  }  }
349    
350    

Legend:
Removed from v.2064  
changed lines
  Added in v.3555

  ViewVC Help
Powered by ViewVC