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

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

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

revision 987 by capela, Tue Dec 19 11:19:55 2006 UTC revision 1558 by capela, Thu Dec 6 09:35:33 2007 UTC
# Line 1  Line 1 
1  // qsamplerInstrumentList.cpp  // qsamplerInstrumentList.cpp
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2003-2005, rncbc aka Rui Nuno Capela. All rights reserved.     Copyright (C) 2003-2007, rncbc aka Rui Nuno Capela. All rights reserved.
5       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
8     modify it under the terms of the GNU General Public License     modify it under the terms of the GNU General Public License
# Line 28  Line 29 
29  #include "qsamplerOptions.h"  #include "qsamplerOptions.h"
30  #include "qsamplerMainForm.h"  #include "qsamplerMainForm.h"
31    
32  #include <qmessagebox.h>  #include <QApplication>
33  #include <qaction.h>  #include <QMessageBox>
34  #include <qfileinfo.h>  #include <QMenu>
35  #include <qpopupmenu.h>  #include <QAction>
36    #include <QCursor>
37    #include <QFileInfo>
38    
39  // Needed for lroundf()  // Needed for lroundf()
40  #include <math.h>  #include <math.h>
# Line 46  static inline long lroundf ( float x ) Line 49  static inline long lroundf ( float x )
49  }  }
50  #endif  #endif
51    
52    using namespace QSampler;
53    
 //----------------------------------------------------------------------  
 // class qsamplerInstrumentGroup -- custom group list view item.  
 //  
   
 // Constructors.  
 qsamplerInstrumentGroup::qsamplerInstrumentGroup (  
         qsamplerInstrumentList *pListView, const QString& sName,  
         QListViewItem *pItemAfter )  
         : QListViewItem(pListView, pItemAfter ? pItemAfter : pListView->lastItem())  
 {  
         QListViewItem::setRenameEnabled(0, true);  
   
         QListViewItem::setPixmap(0, QPixmap::fromMimeSource("itemGroup.png"));  
         QListViewItem::setText(0, sName);  
 }  
   
   
 qsamplerInstrumentGroup::qsamplerInstrumentGroup (  
         qsamplerInstrumentGroup *pGroupItem, const QString& sName )  
         : QListViewItem(pGroupItem, sName)  
 {  
         QListViewItem::setRenameEnabled(0, true);  
   
         QListViewItem::setPixmap(0, QPixmap::fromMimeSource("itemGroup.png"));  
 }  
   
   
 // Default destructor.  
 qsamplerInstrumentGroup::~qsamplerInstrumentGroup (void)  
 {  
 }  
54    
55    //-------------------------------------------------------------------------
56    // QSampler::MidiInstrumentsModel - data model for MIDI prog mappings
57    //                                  (used for QTableView)
58    
59  // Instance accessors.  MidiInstrumentsModel::MidiInstrumentsModel ( QObject* pParent)
60  void qsamplerInstrumentGroup::setName ( const QString& sName )          : QAbstractTableModel(pParent)
61  {  {
62          QListViewItem::setText(0, sName);          m_iMidiMap = LSCP_MIDI_MAP_ALL;
63  }  }
64    
65    
66  QString qsamplerInstrumentGroup::name (void) const  int MidiInstrumentsModel::rowCount ( const QModelIndex& /*parent*/) const
67  {  {
68          return QListViewItem::text(0);          if (m_iMidiMap == LSCP_MIDI_MAP_ALL) {
69  }                  int n = 0;
70                    for (InstrumentsMap::const_iterator itMap = m_instruments.begin();
71                                    itMap != m_instruments.end(); ++itMap)
72  qsamplerInstrumentGroup *qsamplerInstrumentGroup::groupItem (void) const                          n += (*itMap).size();
73  {                  return n;
         QListViewItem *pParent = QListViewItem::parent();  
         while (pParent && pParent->rtti() != qsamplerInstrumentList::Group)  
                 pParent = pParent->parent();  
         return static_cast<qsamplerInstrumentGroup *> (pParent);  
 }  
   
   
 qsamplerInstrumentList *qsamplerInstrumentGroup::listView (void) const  
 {  
         return static_cast<qsamplerInstrumentList *> (QListViewItem::listView());  
 }  
   
   
 // To show up whether its open or not.  
 void qsamplerInstrumentGroup::setOpen ( bool bOpen )  
 {  
         // Set the proper pixmap of this...  
         if (rtti() == qsamplerInstrumentList::Group) {  
                 QListViewItem::setPixmap(0, QPixmap::fromMimeSource(  
                         bOpen ? "itemGroupOpen.png" : "itemGroup.png"));  
74          }          }
75          // Open it up...          InstrumentsMap::const_iterator itMap = m_instruments.find(m_iMidiMap);
76          QListViewItem::setOpen(bOpen);          if (itMap == m_instruments.end()) return 0;
77            return (*itMap).size();
         // All ancestors should be also visible.  
         if (bOpen && QListViewItem::parent())  
                 QListViewItem::parent()->setOpen(true);  
 }  
   
   
 // To virtually distinguish between list view items.  
 int qsamplerInstrumentGroup::rtti (void) const  
 {  
         return qsamplerInstrumentList::Group;  
78  }  }
79    
80    
81  //----------------------------------------------------------------------  int MidiInstrumentsModel::columnCount ( const QModelIndex& /*parent*/) const
 // class qsamplerInstrumentItem -- custom file list view item.  
 //  
   
 // Constructors.  
 qsamplerInstrumentItem::qsamplerInstrumentItem (  
         qsamplerInstrumentList *pListView,  
         qsamplerInstrument *pInstrument,  
         QListViewItem *pItemAfter )  
         : qsamplerInstrumentGroup(pListView, pInstrument->name(), pItemAfter)  
 {  
         m_pInstrument = pInstrument;  
   
         update();  
 }  
   
 qsamplerInstrumentItem::qsamplerInstrumentItem (  
         qsamplerInstrumentGroup *pGroupItem,  
         qsamplerInstrument *pInstrument )  
         : qsamplerInstrumentGroup(pGroupItem, pInstrument->name())  
 {  
         m_pInstrument = pInstrument;  
   
         update();  
 }  
   
   
 // Default destructor.  
 qsamplerInstrumentItem::~qsamplerInstrumentItem (void)  
 {  
         if (m_pInstrument)  
                 delete m_pInstrument;  
 }  
   
   
 // To virtually distinguish between list view items.  
 int qsamplerInstrumentItem::rtti (void) const  
82  {  {
83          return qsamplerInstrumentList::Item;          return 9;
84  }  }
85    
86    
87  // Payload accessor.  QVariant MidiInstrumentsModel::data ( const QModelIndex &index, int role ) const
 qsamplerInstrument *qsamplerInstrumentItem::instrument (void) const  
88  {  {
89          return m_pInstrument;          if (!index.isValid())
90  }                  return QVariant();
91    
92            const Instrument* pInstr = NULL;
93    
94  // Item refreshment.          if (m_iMidiMap == LSCP_MIDI_MAP_ALL) {
95  void qsamplerInstrumentItem::update (void)                  int n = 0;
96  {                  for (InstrumentsMap::const_iterator itMap = m_instruments.begin();
97          QListViewItem::setPixmap(0, QPixmap::fromMimeSource("itemFile.png"));                                  itMap != m_instruments.end(); ++itMap) {
98                            n += (*itMap).size();
99          const QString s = "-";                          if (index.row() < n) {
100          if (m_pInstrument) {                                  pInstr = &(*itMap)[index.row() + (*itMap).size() - n];
101                  setText(0, m_pInstrument->name());                                  break;
102                  setText(1, QString::number(m_pInstrument->map()));                          }
                 setText(2, QString::number(m_pInstrument->bank()));  
                 setText(3, QString::number(m_pInstrument->prog() + 1));  
                 setText(4, m_pInstrument->engineName());  
                 setText(5, QFileInfo(m_pInstrument->instrumentFile()).fileName());  
                 setText(6, QString::number(m_pInstrument->instrumentNr()));  
                 setText(7, QString::number(::lroundf(100.0f * m_pInstrument->volume())));  
                 QString sLoadMode = s;  
                 switch (m_pInstrument->loadMode()) {  
                 case 3:  
                         sLoadMode = QObject::tr("Persistent");  
                         break;  
                 case 2:  
                         sLoadMode = QObject::tr("On Demand Hold");  
                         break;  
                 case 1:  
                         sLoadMode = QObject::tr("On Demand");  
                         break;  
103                  }                  }
                 setText(8, sLoadMode);  
104          } else {          } else {
105                  for (int i = 0; i < listView()->columns(); i++)                  // resolve MIDI instrument map
106                          setText(i, s);                  InstrumentsMap::const_iterator itMap = m_instruments.find(m_iMidiMap);
107                    if (itMap == m_instruments.end()) return QVariant();
108                    // resolve instrument in that map
109                    if (index.row() >= (*itMap).size()) return QVariant();
110                    pInstr = &(*itMap)[index.row()];
111            }
112    
113            if (!pInstr)
114                    return QVariant();
115    
116            if (role == Qt::UserRole)
117                    return QVariant::fromValue((void *) pInstr);
118    
119            if (role == Qt::DisplayRole) {
120                    switch (index.column()) {
121                            case 0: return pInstr->name();
122                            case 1: return QVariant::fromValue(pInstr->map());
123                            case 2: return QVariant::fromValue(pInstr->bank());
124                            case 3: return QVariant::fromValue(pInstr->prog() + 1);
125                            case 4: return pInstr->engineName();
126                            case 5: return pInstr->instrumentFile();
127                            case 6: return QVariant::fromValue(pInstr->instrumentNr());
128                            case 7: return QString::number(pInstr->volume() * 100.0) + " %";
129                            case 8: {
130                                    switch (pInstr->loadMode()) {
131                                            case 3: return QObject::tr("Persistent");
132                                            case 2: return QObject::tr("On Demand Hold");
133                                            case 1: return QObject::tr("On Demand");
134                                    }
135                            }
136                            default: return QVariant();
137                    }
138          }          }
 }  
   
   
 //----------------------------------------------------------------------------  
 // qsamplerInstrumentList -- MIDI instrument list view.  
 //  
139    
140  // Constructor.          return QVariant();
 qsamplerInstrumentList::qsamplerInstrumentList (  
         QWidget *pParent, const char *pszName )  
         : QListView(pParent, pszName)  
 {  
 //  QListView::setRootIsDecorated(true);  
         QListView::setResizeMode(QListView::NoColumn);  
 //      QListView::setAcceptDrops(true);  
         QListView::setDragAutoScroll(true);  
         QListView::setSizePolicy(  
                 QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding));  
 //      QListView::setShowToolTips(false);  
         QListView::setSortColumn(-1);  
   
         QListView::addColumn(tr("Name"));  
         QListView::addColumn(tr("Map"));  
         QListView::addColumn(tr("Bank"));  
         QListView::addColumn(tr("Prog"));  
         QListView::addColumn(tr("Engine"));  
         QListView::addColumn(tr("File"));  
         QListView::addColumn(tr("Nr"));  
         QListView::addColumn(tr("Vol"));  
         QListView::addColumn(tr("Mode"));  
   
         QListView::setColumnAlignment(1, Qt::AlignHCenter);     // Map  
         QListView::setColumnAlignment(2, Qt::AlignHCenter);     // Bank  
         QListView::setColumnAlignment(3, Qt::AlignHCenter);     // Prog  
         QListView::setColumnAlignment(6, Qt::AlignHCenter);     // Nr  
         QListView::setColumnAlignment(7, Qt::AlignHCenter);     // Vol  
   
         QListView::setColumnWidth(0, 120);      // Name  
         QListView::setColumnWidth(5, 240);      // File  
   
         m_pNewGroupAction = new QAction(tr("New &Group"), tr("Ctrl+G"), this);  
         m_pNewItemAction  = new QAction(tr("New &Instrument..."), tr("Ins"), this);  
         m_pEditItemAction = new QAction(tr("&Edit..."), tr("Enter"), this);  
         m_pRenameAction   = new QAction(tr("&Rename"), tr("F2"), this);  
         m_pDeleteAction   = new QAction(tr("&Delete"), tr("Del"), this);  
         m_pRefreshAction  = new QAction(tr("Re&fresh"), tr("F5"), this);  
   
         QObject::connect(m_pNewGroupAction,  
                 SIGNAL(activated()),  
                 SLOT(newGroupSlot()));  
         QObject::connect(m_pNewItemAction,  
                 SIGNAL(activated()),  
                 SLOT(newItemSlot()));  
         QObject::connect(m_pEditItemAction,  
                 SIGNAL(activated()),  
                 SLOT(editItemSlot()));  
         QObject::connect(m_pRenameAction,  
                 SIGNAL(activated()),  
                 SLOT(renameSlot()));  
         QObject::connect(m_pDeleteAction,  
                 SIGNAL(activated()),  
                 SLOT(deleteSlot()));  
         QObject::connect(m_pRefreshAction,  
                 SIGNAL(activated()),  
                 SLOT(refresh()));  
   
         QObject::connect(this,  
                 SIGNAL(selectionChanged()),  
                 SLOT(selectionChangedSlot()));  
         QObject::connect(this,  
                 SIGNAL(doubleClicked(QListViewItem*, const QPoint&, int)),  
                 SLOT(activatedSlot(QListViewItem*)));  
         QObject::connect(this,  
                 SIGNAL(returnPressed(QListViewItem*)),  
                 SLOT(activatedSlot(QListViewItem*)));  
         QObject::connect(this,  
                 SIGNAL(itemRenamed(QListViewItem*,int)),  
                 SLOT(renamedSlot(QListViewItem*)));  
   
         selectionChangedSlot();  
 }  
   
   
 // Default destructor.  
 qsamplerInstrumentList::~qsamplerInstrumentList (void)  
 {  
         delete m_pNewGroupAction;  
         delete m_pNewItemAction;  
         delete m_pEditItemAction;  
         delete m_pRenameAction;  
         delete m_pDeleteAction;  
 }  
   
   
 // Add a new instrument item, optionally under a given group.  
 qsamplerInstrumentItem *qsamplerInstrumentList::addItem (  
         qsamplerInstrument *pInstrument,  
         qsamplerInstrumentGroup *pParentGroup )  
 {  
         qsamplerInstrumentItem *pItem = findItem(pInstrument);  
         if (pItem == NULL) {  
                 if (pParentGroup)  
                         pItem = new qsamplerInstrumentItem(pParentGroup, pInstrument);  
                 else  
                         pItem = new qsamplerInstrumentItem(this, pInstrument);  
         }  
         QListView::setSelected(pItem, true);  
         return pItem;  
141  }  }
142    
143    
144  // Add a new instrument group, optionally under another group.  QVariant MidiInstrumentsModel::headerData (
145  qsamplerInstrumentGroup *qsamplerInstrumentList::addGroup (          int section, Qt::Orientation orientation, int role ) const
         const QString& sName, qsamplerInstrumentGroup *pParentGroup )  
146  {  {
147          qsamplerInstrumentGroup *pGroup = findGroup(sName);          if (orientation != Qt::Horizontal || role != Qt::DisplayRole)
148          if (pGroup == NULL) {                  return QVariant();
149                  if (pParentGroup)  
150                          pGroup = new qsamplerInstrumentGroup(pParentGroup, sName);          switch (section) {
151                  else                  case 0: return tr("Name");
152                          pGroup = new qsamplerInstrumentGroup(this, sName);                  case 1: return tr("Map");
153                    case 2: return tr("Bank");
154                    case 3: return tr("Prog");
155                    case 4: return tr("Engine");
156                    case 5: return tr("File");
157                    case 6: return tr("Nr");
158                    case 7: return tr("Vol");
159                    case 8: return tr("Mode");
160                    default: return QVariant();
161          }          }
         QListView::setSelected(pGroup, true);  
         return pGroup;  
162  }  }
163    
164    
165  // Find a group item, given its name.  Instrument* MidiInstrumentsModel::addInstrument (
166  qsamplerInstrumentGroup *qsamplerInstrumentList::findGroup (          int iMap, int iBank, int iProg )
167          const QString& sName ) const  {
168  {          // Check it there's already one instrument item
169          // Iterate all over the place to search for the group.          // with the very same key (bank, program);
170          QListViewItemIterator iter((QListView *) this);          // if yes, just remove it without prejudice...
171          while (iter.current()) {          for (int i = 0; i < m_instruments[iMap].size(); i++) {
172                  QListViewItem *pItem = iter.current();                  if (m_instruments[iMap][i].bank() == iBank &&
173                  if (pItem->rtti() == Group && pItem->text(0) == sName)                          m_instruments[iMap][i].prog() == iProg) {
174                          return static_cast<qsamplerInstrumentGroup *> (pItem);                          m_instruments[iMap].removeAt(i);
175                  ++iter;                          break;
176                    }
177          }          }
         // Not found.  
         return NULL;  
 }  
178    
179            // Resolve the appropriate place, we keep the list sorted that way ...
180  // Find a file item, given its name.          int i = 0;
181  qsamplerInstrumentItem *qsamplerInstrumentList::findItem (          for (; i < m_instruments[iMap].size(); ++i) {
182          qsamplerInstrument *pInstrument ) const                  if (iBank < m_instruments[iMap][i].bank()
183  {                          || (iBank == m_instruments[iMap][i].bank() &&
184          if (pInstrument == NULL)                                  iProg < m_instruments[iMap][i].prog())) {
185                  return NULL;                          break;
   
         // Iterate all over the place to search for the group.  
         QListViewItemIterator iter((QListView *) this);  
         while (iter.current()) {  
                 QListViewItem *pListItem = iter.current();  
                 if (pListItem->rtti() == Item) {  
                         qsamplerInstrumentItem *pItem  
                                 = static_cast<qsamplerInstrumentItem *> (pListItem);  
                         if (pItem && pItem->instrument()  
                                 && pItem->instrument()->map()  == pInstrument->map()  
                                 && pItem->instrument()->bank() == pInstrument->bank()  
                                 && pItem->instrument()->prog() == pInstrument->prog())  
                                 return pItem;  
186                  }                  }
                 ++iter;  
187          }          }
         // Not found.  
         return NULL;  
 }  
188    
189            m_instruments[iMap].insert(i, Instrument(iMap, iBank, iProg));
190            Instrument& instr = m_instruments[iMap][i];
191            if (!instr.getInstrument())
192                    m_instruments[iMap].removeAt(i);
193    
194  // Find and return the nearest group item...          return &instr;
 qsamplerInstrumentGroup *qsamplerInstrumentList::groupItem (  
         QListViewItem *pItem ) const  
 {  
         while (pItem && pItem->rtti() != Group)  
                 pItem = pItem->parent();  
         return static_cast<qsamplerInstrumentGroup *> (pItem);  
195  }  }
196    
197    
198  // Add a new group item below the current one.  void MidiInstrumentsModel::removeInstrument (
199  void qsamplerInstrumentList::newGroupSlot (void)          const Instrument& instrument )
200  {  {
201          qsamplerInstrumentGroup *pParentGroup          const int iMap  = instrument.map();
202                  = groupItem(QListView::selectedItem());          const int iBank = instrument.bank();
203          qsamplerInstrumentGroup *pNewGroup          const int iProg = instrument.prog();
204                  = addGroup(tr("New Group"), pParentGroup);          for (int i = 0; i < m_instruments[iMap].size(); i++) {
205          if (pParentGroup)                  if (m_instruments[iMap][i].bank() == iBank &&
206                  pParentGroup->setOpen(true);                          m_instruments[iMap][i].prog() == iProg) {
207          if (pNewGroup)                          m_instruments[iMap].removeAt(i);
208                  pNewGroup->startRename(0);                          break;
209                    }
210          selectionChangedSlot();          }
211  }  }
212    
213    
214  // Add a new instrument item below the current one.  // Reposition the instrument in the model (called when map/bank/prg changed)
215  void qsamplerInstrumentList::newItemSlot (void)  void MidiInstrumentsModel::resort ( const Instrument& instrument )
216  {  {
217          qsamplerInstrument *pInstrument = new qsamplerInstrument();          const int iMap  = instrument.map();
218            const int iBank = instrument.bank();
219          qsamplerInstrumentForm form(this);          const int iProg = instrument.prog();
220          form.setup(pInstrument);          // Remove given instrument from its current list
221          if (!form.exec()) {          removeInstrument(instrument);
222                  delete pInstrument;          // Re-add the instrument
223                  return;          addInstrument(iMap, iBank, iProg);
         }  
   
         // Check it there's already one instrument item  
         // with the very same key (bank, program);  
         // if yes, just remove it without prejudice...  
         qsamplerInstrumentItem *pItem = findItem(pInstrument);  
         if (pItem)  
                 delete pItem;  
   
         pInstrument->mapInstrument();  
         emit instrumentsChanged();  
   
         qsamplerInstrumentGroup *pParentGroup  
                 = groupItem(QListView::selectedItem());  
         addItem(pInstrument, pParentGroup);  
         if (pParentGroup)  
                 pParentGroup->setOpen(true);  
   
         selectionChangedSlot();  
224  }  }
225    
226    
227  // Edit current item below the current one.  void MidiInstrumentsModel::setMidiMap ( int iMidiMap )
 void qsamplerInstrumentList::editItemSlot (void)  
228  {  {
229          QListViewItem *pListItem = QListView::selectedItem();          if (iMidiMap < 0)
230          if (pListItem == NULL)                  iMidiMap = LSCP_MIDI_MAP_ALL;
                 return;  
         if (pListItem->rtti() == Item) {  
                 qsamplerInstrumentItem *pItem  
                         = static_cast<qsamplerInstrumentItem *> (pListItem);  
                 if (pItem && pItem->instrument()) {  
                         qsamplerInstrumentForm form(this);  
                         form.setup(pItem->instrument());  
                         if (form.exec()) {  
                                 pItem->instrument()->mapInstrument();  
                                 emit instrumentsChanged();  
                                 pItem->update();  
                         }  
                 }  
         }  
231    
232          selectionChangedSlot();          m_iMidiMap = iMidiMap;
233  }  }
234    
235    
236  // Rename current group/item.  int MidiInstrumentsModel::midiMap (void) const
 void qsamplerInstrumentList::renameSlot (void)  
237  {  {
238          QListViewItem *pListItem = QListView::selectedItem();          return m_iMidiMap;
         if (pListItem)  
                 pListItem->startRename(0);  
   
         selectionChangedSlot();  
239  }  }
240    
241    void MidiInstrumentsModel::refresh (void)
 // Remove current group/item.  
 void qsamplerInstrumentList::deleteSlot (void)  
242  {  {
243          QListViewItem *pListItem = QListView::selectedItem();          m_instruments.clear();
         if (pListItem == NULL)  
                 return;  
244    
245          qsamplerMainForm *pMainForm = qsamplerMainForm::getInstance();          MainForm* pMainForm = MainForm::getInstance();
246          if (pMainForm == NULL)          if (pMainForm == NULL)
247                  return;                  return;
248            if (pMainForm->client() == NULL)
249                    return;
250    
251          // Prompt user if this is for real...          QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
         qsamplerOptions *pOptions = pMainForm->options();  
         if (pOptions && pOptions->bConfirmRemove) {  
                 if (QMessageBox::warning(this,  
                         QSAMPLER_TITLE ": " + tr("Warning"),  
                         tr("Delete %1:\n\n"  
                         "%2\n\n"  
                         "Are you sure?")  
                         .arg(pListItem->rtti() == Item ? tr("instrument") : tr("group"))  
                         .arg(pListItem->text(0)),  
                         tr("OK"), tr("Cancel")) > 0)  
                         return;  
         }  
252    
253          // Unmap instrument entry...          // Load the whole bunch of instrument items...
254          if (pListItem->rtti() == Item) {          lscp_midi_instrument_t* pInstrs
255                  qsamplerInstrumentItem *pItem                  = ::lscp_list_midi_instruments(pMainForm->client(), m_iMidiMap);
256                          = static_cast<qsamplerInstrumentItem *> (pListItem);          for (int iInstr = 0; pInstrs && pInstrs[iInstr].map >= 0; ++iInstr) {
257                  if (pItem && pItem->instrument()) {                  const int iMap  = pInstrs[iInstr].map;
258                          pItem->instrument()->unmapInstrument();                  const int iBank = pInstrs[iInstr].bank;
259                          emit instrumentsChanged();                  const int iProg = pInstrs[iInstr].prog;
260                  }                  addInstrument(iMap, iBank, iProg);
261                    // Try to keep it snappy :)
262                    QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
263          }          }
264    
265          // Do it for real...          QApplication::restoreOverrideCursor();
         delete pListItem;  
266    
267          selectionChangedSlot();          if (pInstrs == NULL && ::lscp_client_get_errno(pMainForm->client())) {
268                    pMainForm->appendMessagesClient("lscp_list_midi_instruments");
269                    pMainForm->appendMessagesError(
270                            tr("Could not get current list of MIDI instrument mappings.\n\nSorry."));
271            }
272    
273            // inform the outer world (QTableView) that our data changed
274            QAbstractTableModel::reset();
275  }  }
276    
277    
278  // In-place selection slot.  //-------------------------------------------------------------------------
279  void qsamplerInstrumentList::selectionChangedSlot (void)  // QSampler::MidiInstrumentsDelegate - table cell renderer for MIDI prog
280    // mappings (doesn't actually do anything ATM, but is already there for a
281    // future cell editor widget implementation)
282    
283    MidiInstrumentsDelegate::MidiInstrumentsDelegate ( QObject* pParent )
284            : QItemDelegate(pParent)
285  {  {
         qsamplerMainForm *pMainForm = qsamplerMainForm::getInstance();  
         QListViewItem *pListItem = QListView::selectedItem();  
         bool bEnabled = (pMainForm && pMainForm->client());  
         m_pNewItemAction->setEnabled(bEnabled);  
         bEnabled = (bEnabled && pListItem != NULL);  
         m_pEditItemAction->setEnabled(bEnabled && pListItem->rtti() == Item);  
         m_pRenameAction->setEnabled(bEnabled);  
         m_pDeleteAction->setEnabled(bEnabled);  
286  }  }
287    
288    
289  // In-place activation slot.  QWidget* MidiInstrumentsDelegate::createEditor ( QWidget* pParent,
290  void qsamplerInstrumentList::activatedSlot ( QListViewItem *pListItem )          const QStyleOptionViewItem& option, const QModelIndex& index ) const
291  {  {
292          // FIXME: Hope the list view item is the one selected.          return QItemDelegate::createEditor(pParent, option, index);
293          if (pListItem->rtti() == Item)  //      return new QLabel(index.model()->data(index, Qt::DisplayRole).toString(), parent);
                 editItemSlot();  
294  }  }
295    
296    
297  // In-place aliasing slot.  void MidiInstrumentsDelegate::setEditorData ( QWidget */*pEditor*/,
298  void qsamplerInstrumentList::renamedSlot ( QListViewItem *pListItem )          const QModelIndex& /*index*/) const
299  {  {
         if (pListItem->rtti() == Item) {  
                 qsamplerInstrumentItem *pItem  
                         = static_cast<qsamplerInstrumentItem *> (pListItem);  
                 if (pItem && pItem->instrument()) {  
                         pItem->instrument()->setName(pListItem->text(0));  
                         pItem->instrument()->mapInstrument();  
                         emit instrumentsChanged();  
                         pItem->update();  
                 }  
         }  
300  }  }
301    
302    
303  // Context menu request event handler.  void MidiInstrumentsDelegate::setModelData ( QWidget */*pEditor*/,
304  void qsamplerInstrumentList::contextMenuEvent (          QAbstractItemModel* /*model*/, const QModelIndex& /*index*/) const
         QContextMenuEvent *pContextMenuEvent )  
305  {  {
         if (!m_pNewItemAction->isEnabled())  
                 return;  
   
         QPopupMenu menu(this);  
   
         // Construct context menu.  
         m_pNewItemAction->addTo(&menu);  
 //      m_pNewGroupAction->addTo(&menu);  
         menu.insertSeparator();  
         m_pEditItemAction->addTo(&menu);  
         m_pRenameAction->addTo(&menu);  
         m_pDeleteAction->addTo(&menu);  
         menu.insertSeparator();  
         m_pRefreshAction->addTo(&menu);  
   
         menu.exec(pContextMenuEvent->globalPos());  
306  }  }
307    
308    
309  // General reloader.  void MidiInstrumentsDelegate::updateEditorGeometry ( QWidget *pEditor,
310  void qsamplerInstrumentList::refresh (void)          const QStyleOptionViewItem& option, const QModelIndex& index) const
311  {  {
312          clear();          QItemDelegate::updateEditorGeometry(pEditor, option, index);
313    //      if (pEditor) pEditor->setGeometry(option.rect);
         qsamplerMainForm *pMainForm = qsamplerMainForm::getInstance();  
         if (pMainForm == NULL)  
                 return;  
         if (pMainForm->client() == NULL)  
                 return;  
   
         qsamplerInstrumentItem *pItem = NULL;  
         lscp_midi_instrument_t *pInstrs  
                 = ::lscp_list_midi_instruments(pMainForm->client(), LSCP_MIDI_MAP_ALL);  
         for (int iInstr = 0; pInstrs && pInstrs[iInstr].map >= 0; ++iInstr) {  
                 int iMap  = pInstrs[iInstr].map;  
                 int iBank = pInstrs[iInstr].bank;  
                 int iProg = pInstrs[iInstr].prog;  
                 qsamplerInstrument *pInstrument  
                         = new qsamplerInstrument(iMap, iBank, iProg);  
                 if (pInstrument->getInstrument())  
                         pItem = new qsamplerInstrumentItem(this, pInstrument, pItem);  
         }  
   
         if (pInstrs == NULL && ::lscp_client_get_errno(pMainForm->client())) {  
                 pMainForm->appendMessagesClient("lscp_list_midi_instruments");  
                 pMainForm->appendMessagesError(tr("Could not get current list of MIDI instrument mappings.\n\nSorry."));  
         }  
   
         selectionChangedSlot();  
314  }  }
315    
316    
317  // end of qsamplerInstrumentList.cpp  // end of qsamplerInstrumentList.cpp
   

Legend:
Removed from v.987  
changed lines
  Added in v.1558

  ViewVC Help
Powered by ViewVC