/[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 1509 by capela, Thu Nov 22 11:10:44 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)  
 {  
 }  
   
   
 // Instance accessors.  
 void qsamplerInstrumentGroup::setName ( const QString& sName )  
 {  
         QListViewItem::setText(0, sName);  
 }  
   
   
 QString qsamplerInstrumentGroup::name (void) const  
 {  
         return QListViewItem::text(0);  
 }  
   
   
 qsamplerInstrumentGroup *qsamplerInstrumentGroup::groupItem (void) const  
 {  
         QListViewItem *pParent = QListViewItem::parent();  
         while (pParent && pParent->rtti() != qsamplerInstrumentList::Group)  
                 pParent = pParent->parent();  
         return static_cast<qsamplerInstrumentGroup *> (pParent);  
 }  
54    
55    //-------------------------------------------------------------------------
56    // MidiInstrumentsModel - data model for MIDI prog mappings (used for QTableView)
57    //
58    
59  qsamplerInstrumentList *qsamplerInstrumentGroup::listView (void) const  MidiInstrumentsModel::MidiInstrumentsModel ( QObject* pParent)
60            : QAbstractTableModel(pParent)
61  {  {
62          return static_cast<qsamplerInstrumentList *> (QListViewItem::listView());          m_iMidiMap = LSCP_MIDI_MAP_ALL;
63  }  }
64    
65    
66  // To show up whether its open or not.  int MidiInstrumentsModel::rowCount ( const QModelIndex& /*parent*/) const
 void qsamplerInstrumentGroup::setOpen ( bool bOpen )  
67  {  {
68          // Set the proper pixmap of this...          if (m_iMidiMap == LSCP_MIDI_MAP_ALL) {
69          if (rtti() == qsamplerInstrumentList::Group) {                  int n = 0;
70                  QListViewItem::setPixmap(0, QPixmap::fromMimeSource(                  for (InstrumentsMap::const_iterator itMap = m_instruments.begin();
71                          bOpen ? "itemGroupOpen.png" : "itemGroup.png"));                                  itMap != m_instruments.end(); ++itMap)
72                            n += (*itMap).size();
73                    return n;
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);  
78  }  }
79    
80    
81  // To virtually distinguish between list view items.  int MidiInstrumentsModel::columnCount ( const QModelIndex& /*parent*/) const
 int qsamplerInstrumentGroup::rtti (void) const  
82  {  {
83          return qsamplerInstrumentList::Group;          return 9;
84  }  }
85    
86    
87  //----------------------------------------------------------------------  QVariant MidiInstrumentsModel::data ( const QModelIndex &index, int role ) const
 // class qsamplerInstrumentItem -- custom file list view item.  
 //  
   
 // Constructors.  
 qsamplerInstrumentItem::qsamplerInstrumentItem (  
         qsamplerInstrumentList *pListView,  
         qsamplerInstrument *pInstrument,  
         QListViewItem *pItemAfter )  
         : qsamplerInstrumentGroup(pListView, pInstrument->name(), pItemAfter)  
88  {  {
89          m_pInstrument = pInstrument;          if (!index.isValid())
90                    return QVariant();
91    
92          update();          const qsamplerInstrument* pInstr = NULL;
 }  
   
 qsamplerInstrumentItem::qsamplerInstrumentItem (  
         qsamplerInstrumentGroup *pGroupItem,  
         qsamplerInstrument *pInstrument )  
         : qsamplerInstrumentGroup(pGroupItem, pInstrument->name())  
 {  
         m_pInstrument = pInstrument;  
   
         update();  
 }  
93    
94            if (m_iMidiMap == LSCP_MIDI_MAP_ALL) {
95                    int n = 0;
96                    for (InstrumentsMap::const_iterator itMap = m_instruments.begin();
97                                    itMap != m_instruments.end(); ++itMap) {
98                            n += (*itMap).size();
99                            if (index.row() < n)
100                                    pInstr = &(*itMap)[index.row() + (*itMap).size() - n];
101                    }
102            } else {
103                    // resolve MIDI instrument map
104                    InstrumentsMap::const_iterator itMap = m_instruments.find(m_iMidiMap);
105                    if (itMap == m_instruments.end()) return QVariant();
106                    // resolve instrument in that map
107                    if (index.row() >= (*itMap).size()) return QVariant();
108                    pInstr = &(*itMap)[index.row()];
109            }
110    
111            if (!pInstr)
112                    return QVariant();
113    
114            if (role == Qt::UserRole)
115                    return QVariant::fromValue((void *) pInstr);
116    
117            if (role == Qt::DisplayRole) {
118                    switch (index.column()) {
119                            case 0: return pInstr->name();
120                            case 1: return QVariant::fromValue(pInstr->map());
121                            case 2: return QVariant::fromValue(pInstr->bank());
122                            case 3: return QVariant::fromValue(pInstr->prog());
123                            case 4: return pInstr->engineName();
124                            case 5: return pInstr->instrumentFile();
125                            case 6: return QVariant::fromValue(pInstr->instrumentNr());
126                            case 7: return QString::number(pInstr->volume() * 100.0) + " %";
127                            case 8: {
128                                    switch (pInstr->loadMode()) {
129                                            case 3: return QObject::tr("Persistent");
130                                            case 2: return QObject::tr("On Demand Hold");
131                                            case 1: return QObject::tr("On Demand");
132                                            default: return QVariant();
133                                    }
134                            }
135                            default: return QVariant();
136                    }
137            }
138    
139  // Default destructor.          return QVariant();
 qsamplerInstrumentItem::~qsamplerInstrumentItem (void)  
 {  
         if (m_pInstrument)  
                 delete m_pInstrument;  
140  }  }
141    
142    
143  // To virtually distinguish between list view items.  QVariant MidiInstrumentsModel::headerData (
144  int qsamplerInstrumentItem::rtti (void) const          int section, Qt::Orientation orientation, int role ) const
145  {  {
146          return qsamplerInstrumentList::Item;          if (orientation != Qt::Horizontal || role != Qt::DisplayRole)
147  }                  return QVariant();
   
148    
149  // Payload accessor.          switch (section) {
150  qsamplerInstrument *qsamplerInstrumentItem::instrument (void) const                  case 0: return tr("Name");
151  {                  case 1: return tr("Map");
152          return m_pInstrument;                  case 2: return tr("Bank");
153                    case 3: return tr("Prog");
154                    case 4: return tr("Engine");
155                    case 5: return tr("File");
156                    case 6: return tr("Nr");
157                    case 7: return tr("Vol");
158                    case 8: return tr("Mode");
159                    default: return QVariant();
160            }
161  }  }
162    
163    
164  // Item refreshment.  qsamplerInstrument* MidiInstrumentsModel::addInstrument (
165  void qsamplerInstrumentItem::update (void)          int iMap, int iBank, int iProg )
166  {  {
167          QListViewItem::setPixmap(0, QPixmap::fromMimeSource("itemFile.png"));          // Check it there's already one instrument item
168            // with the very same key (bank, program);
169          const QString s = "-";          // if yes, just remove it without prejudice...
170          if (m_pInstrument) {          for (int i = 0; i < m_instruments[iMap].size(); i++) {
171                  setText(0, m_pInstrument->name());                  if (m_instruments[iMap][i].bank() == iBank &&
172                  setText(1, QString::number(m_pInstrument->map()));                          m_instruments[iMap][i].prog() == iProg) {
173                  setText(2, QString::number(m_pInstrument->bank()));                          m_instruments[iMap].removeAt(i);
                 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");  
174                          break;                          break;
175                  }                  }
                 setText(8, sLoadMode);  
         } else {  
                 for (int i = 0; i < listView()->columns(); i++)  
                         setText(i, s);  
176          }          }
 }  
177    
178            // resolve the appropriate place, we keep the list sorted that way ...
179            int i = 0;
180            for (; i < m_instruments[iMap].size(); i++)
181                    if (iBank > m_instruments[iMap][i].bank()
182                            || (iBank == m_instruments[iMap][i].bank() &&
183                                    iProg > m_instruments[iMap][i].prog()))
184                            break;
185    
186  //----------------------------------------------------------------------------          m_instruments[iMap].insert(i, qsamplerInstrument(iMap, iBank, iProg));
187  // qsamplerInstrumentList -- MIDI instrument list view.          qsamplerInstrument& instr = m_instruments[iMap][i];
188  //          if (!instr.getInstrument())
189                    m_instruments[iMap].removeAt(i);
190    
191  // Constructor.          return &instr;
 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;  
192  }  }
193    
194    
195  // Add a new instrument group, optionally under another group.  void MidiInstrumentsModel::removeInstrument (
196  qsamplerInstrumentGroup *qsamplerInstrumentList::addGroup (          const qsamplerInstrument& instrument )
         const QString& sName, qsamplerInstrumentGroup *pParentGroup )  
197  {  {
198          qsamplerInstrumentGroup *pGroup = findGroup(sName);          const int iMap  = instrument.map();
199          if (pGroup == NULL) {          const int iBank = instrument.bank();
200                  if (pParentGroup)          const int iProg = instrument.prog();
201                          pGroup = new qsamplerInstrumentGroup(pParentGroup, sName);          for (int i = 0; i < m_instruments[iMap].size(); i++) {
202                  else                  if (m_instruments[iMap][i].bank() == iBank &&
203                          pGroup = new qsamplerInstrumentGroup(this, sName);                          m_instruments[iMap][i].prog() == iProg) {
204          }                          m_instruments[iMap].removeAt(i);
205          QListView::setSelected(pGroup, true);                          break;
         return pGroup;  
 }  
   
   
 // Find a group item, given its name.  
 qsamplerInstrumentGroup *qsamplerInstrumentList::findGroup (  
         const QString& sName ) const  
 {  
         // Iterate all over the place to search for the group.  
         QListViewItemIterator iter((QListView *) this);  
         while (iter.current()) {  
                 QListViewItem *pItem = iter.current();  
                 if (pItem->rtti() == Group && pItem->text(0) == sName)  
                         return static_cast<qsamplerInstrumentGroup *> (pItem);  
                 ++iter;  
         }  
         // Not found.  
         return NULL;  
 }  
   
   
 // Find a file item, given its name.  
 qsamplerInstrumentItem *qsamplerInstrumentList::findItem (  
         qsamplerInstrument *pInstrument ) const  
 {  
         if (pInstrument == NULL)  
                 return NULL;  
   
         // 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;  
206                  }                  }
                 ++iter;  
207          }          }
         // Not found.  
         return NULL;  
 }  
   
   
 // Find and return the nearest group item...  
 qsamplerInstrumentGroup *qsamplerInstrumentList::groupItem (  
         QListViewItem *pItem ) const  
 {  
         while (pItem && pItem->rtti() != Group)  
                 pItem = pItem->parent();  
         return static_cast<qsamplerInstrumentGroup *> (pItem);  
208  }  }
209    
210    
211  // Add a new group item below the current one.  // Reposition the instrument in the model (called when map/bank/prg changed)
212  void qsamplerInstrumentList::newGroupSlot (void)  void MidiInstrumentsModel::resort ( const qsamplerInstrument instrument )
213  {  {
214          qsamplerInstrumentGroup *pParentGroup          const int iMap  = instrument.map();
215                  = groupItem(QListView::selectedItem());          const int iBank = instrument.bank();
216          qsamplerInstrumentGroup *pNewGroup          const int iProg = instrument.prog();
217                  = addGroup(tr("New Group"), pParentGroup);          // remove given instrument from its current list
218          if (pParentGroup)          removeInstrument(instrument);
219                  pParentGroup->setOpen(true);          // re-add the instrument
220          if (pNewGroup)          addInstrument(iMap, iBank, iProg);
                 pNewGroup->startRename(0);  
   
         selectionChangedSlot();  
 }  
   
   
 // Add a new instrument item below the current one.  
 void qsamplerInstrumentList::newItemSlot (void)  
 {  
         qsamplerInstrument *pInstrument = new qsamplerInstrument();  
   
         qsamplerInstrumentForm form(this);  
         form.setup(pInstrument);  
         if (!form.exec()) {  
                 delete pInstrument;  
                 return;  
         }  
   
         // 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();  
221  }  }
222    
223    
224  // Edit current item below the current one.  void MidiInstrumentsModel::setMidiMap ( int iMidiMap )
 void qsamplerInstrumentList::editItemSlot (void)  
225  {  {
226          QListViewItem *pListItem = QListView::selectedItem();          if (iMidiMap < 0)
227          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();  
                         }  
                 }  
         }  
228    
229          selectionChangedSlot();          m_iMidiMap = iMidiMap;
230  }  }
231    
232    
233  // Rename current group/item.  int MidiInstrumentsModel::midiMap (void) const
 void qsamplerInstrumentList::renameSlot (void)  
234  {  {
235          QListViewItem *pListItem = QListView::selectedItem();          return m_iMidiMap;
         if (pListItem)  
                 pListItem->startRename(0);  
   
         selectionChangedSlot();  
236  }  }
237    
238    void MidiInstrumentsModel::refresh (void)
 // Remove current group/item.  
 void qsamplerInstrumentList::deleteSlot (void)  
239  {  {
240          QListViewItem *pListItem = QListView::selectedItem();          m_instruments.clear();
         if (pListItem == NULL)  
                 return;  
241    
242          qsamplerMainForm *pMainForm = qsamplerMainForm::getInstance();          MainForm* pMainForm = MainForm::getInstance();
243          if (pMainForm == NULL)          if (pMainForm == NULL)
244                  return;                  return;
245            if (pMainForm->client() == NULL)
246                    return;
247    
248          // 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;  
         }  
249    
250          // Unmap instrument entry...          // Load the whole bunch of instrument items...
251          if (pListItem->rtti() == Item) {          lscp_midi_instrument_t* pInstrs
252                  qsamplerInstrumentItem *pItem                  = ::lscp_list_midi_instruments(pMainForm->client(), m_iMidiMap);
253                          = static_cast<qsamplerInstrumentItem *> (pListItem);          for (int iInstr = 0; pInstrs && pInstrs[iInstr].map >= 0; ++iInstr) {
254                  if (pItem && pItem->instrument()) {                  const int iMap  = pInstrs[iInstr].map;
255                          pItem->instrument()->unmapInstrument();                  const int iBank = pInstrs[iInstr].bank;
256                          emit instrumentsChanged();                  const int iProg = pInstrs[iInstr].prog;
257                  }                  addInstrument(iMap, iBank, iProg);
258                    // Try to keep it snappy :)
259                    QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
260          }          }
261    
262          // Do it for real...          QApplication::restoreOverrideCursor();
         delete pListItem;  
263    
264          selectionChangedSlot();          if (pInstrs == NULL && ::lscp_client_get_errno(pMainForm->client())) {
265                    pMainForm->appendMessagesClient("lscp_list_midi_instruments");
266                    pMainForm->appendMessagesError(
267                            tr("Could not get current list of MIDI instrument mappings.\n\nSorry."));
268            }
269    
270            // inform the outer world (QTableView) that our data changed
271            QAbstractTableModel::reset();
272  }  }
273    
274    
275  // In-place selection slot.  //-------------------------------------------------------------------------
276  void qsamplerInstrumentList::selectionChangedSlot (void)  // MidiInstrumentsDelegate - table cell renderer for MIDI prog mappings
277    // (doesn't actually do anything ATM, but is already there for a future
278    // cell editor widget implementation)
279    
280    MidiInstrumentsDelegate::MidiInstrumentsDelegate ( QObject* pParent )
281            : QItemDelegate(pParent)
282  {  {
         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);  
283  }  }
284    
285    
286  // In-place activation slot.  QWidget* MidiInstrumentsDelegate::createEditor ( QWidget* pParent,
287  void qsamplerInstrumentList::activatedSlot ( QListViewItem *pListItem )          const QStyleOptionViewItem& option, const QModelIndex& index ) const
288  {  {
289          // FIXME: Hope the list view item is the one selected.          return QItemDelegate::createEditor(pParent, option, index);
290          if (pListItem->rtti() == Item)  //      return new QLabel(index.model()->data(index, Qt::DisplayRole).toString(), parent);
                 editItemSlot();  
291  }  }
292    
293    
294  // In-place aliasing slot.  void MidiInstrumentsDelegate::setEditorData ( QWidget */*pEditor*/,
295  void qsamplerInstrumentList::renamedSlot ( QListViewItem *pListItem )          const QModelIndex& /*index*/) const
296  {  {
         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();  
                 }  
         }  
297  }  }
298    
299    
300  // Context menu request event handler.  void MidiInstrumentsDelegate::setModelData ( QWidget */*pEditor*/,
301  void qsamplerInstrumentList::contextMenuEvent (          QAbstractItemModel* /*model*/, const QModelIndex& /*index*/) const
         QContextMenuEvent *pContextMenuEvent )  
302  {  {
         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());  
303  }  }
304    
305    
306  // General reloader.  void MidiInstrumentsDelegate::updateEditorGeometry ( QWidget *pEditor,
307  void qsamplerInstrumentList::refresh (void)          const QStyleOptionViewItem& option, const QModelIndex& index) const
308  {  {
309          clear();          QItemDelegate::updateEditorGeometry(pEditor, option, index);
310    //      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();  
311  }  }
312    
313    
314  // end of qsamplerInstrumentList.cpp  // end of qsamplerInstrumentList.cpp
   

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

  ViewVC Help
Powered by ViewVC