/[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 971 by capela, Thu Dec 7 10:36:26 2006 UTC revision 3520 by capela, Mon Jul 1 10:53:41 2019 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-2015, 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 23  Line 24 
24  #include "qsamplerInstrumentList.h"  #include "qsamplerInstrumentList.h"
25    
26  #include "qsamplerInstrument.h"  #include "qsamplerInstrument.h"
 #include "qsamplerInstrumentForm.h"  
27    
28    #include "qsamplerOptions.h"
29  #include "qsamplerMainForm.h"  #include "qsamplerMainForm.h"
30    
31  #include <qaction.h>  #include <QApplication>
32  #include <qfileinfo.h>  #include <QHeaderView>
33  #include <qpopupmenu.h>  #include <QCursor>
   
 // Needed for lroundf()  
 #include <math.h>  
   
 #ifdef __BORLANDC__  
 static long lroundf ( float fval )  
 {  
         double fint = 0.0;  
     float  frac = float(::modf(fval, &fint));  
     long   lint = long(fint);  
     if (frac >= +0.5f)  
         lint++;  
     else  
     if (frac <= -0.5f)  
         lint--;  
     return lint;  
 }  
 #endif  
34    
35    
36  //----------------------------------------------------------------------  namespace QSampler {
37  // class qsamplerInstrumentGroup -- custom group list view item.  
38    //-------------------------------------------------------------------------
39    // QSampler::InstrumentListModel - data model for MIDI prog mappings
40  //  //
41    
42  // Constructors.  InstrumentListModel::InstrumentListModel ( QObject *pParent )
43  qsamplerInstrumentGroup::qsamplerInstrumentGroup (          : QAbstractItemModel(pParent), m_iMidiMap(LSCP_MIDI_MAP_ALL)
         qsamplerInstrumentList *pListView, const QString& sName,  
         QListViewItem *pItemAfter )  
         : QListViewItem(pListView, pItemAfter ? pItemAfter : pListView->lastItem())  
44  {  {
45          QListViewItem::setRenameEnabled(0, true);  //      QAbstractItemModel::reset();
   
         QListViewItem::setPixmap(0, QPixmap::fromMimeSource("itemGroup.png"));  
         QListViewItem::setText(0, sName);  
46  }  }
47    
48    InstrumentListModel::~InstrumentListModel (void)
 qsamplerInstrumentGroup::qsamplerInstrumentGroup (  
         qsamplerInstrumentGroup *pGroupItem, const QString& sName )  
         : QListViewItem(pGroupItem, sName)  
49  {  {
50          QListViewItem::setRenameEnabled(0, true);          clear();
   
         QListViewItem::setPixmap(0, QPixmap::fromMimeSource("itemGroup.png"));  
51  }  }
52    
53    
54  // Default destructor.  int InstrumentListModel::rowCount ( const QModelIndex& /*parent*/) const
 qsamplerInstrumentGroup::~qsamplerInstrumentGroup (void)  
55  {  {
56  }          int nrows = 0;
57    
58            if (m_iMidiMap == LSCP_MIDI_MAP_ALL) {
59                    InstrumentMap::const_iterator itMap = m_instruments.constBegin();
60                    for ( ; itMap != m_instruments.constEnd(); ++itMap)
61                            nrows += (*itMap).size();
62            } else {
63                    InstrumentMap::const_iterator itMap = m_instruments.find(m_iMidiMap);
64                    if (itMap != m_instruments.constEnd())
65                            nrows += (*itMap).size();
66            }
67    
68  // Instance accessors.          return nrows;
 void qsamplerInstrumentGroup::setName ( const QString& sName )  
 {  
         QListViewItem::setText(0, sName);  
69  }  }
70    
71    
72  QString qsamplerInstrumentGroup::name (void) const  int InstrumentListModel::columnCount ( const QModelIndex& /*parent*/) const
73  {  {
74          return QListViewItem::text(0);          return 9;
75  }  }
76    
77    
78  qsamplerInstrumentGroup *qsamplerInstrumentGroup::groupItem (void) const  QVariant InstrumentListModel::data (
79            const QModelIndex &index, int role ) const
80  {  {
81          QListViewItem *pParent = QListViewItem::parent();          if (!index.isValid())
82          while (pParent && pParent->rtti() != qsamplerInstrumentList::Group)                  return QVariant();
83                  pParent = pParent->parent();          const Instrument *pInstr
84          return static_cast<qsamplerInstrumentGroup *> (pParent);                  = static_cast<Instrument *> (index.internalPointer());
 }  
85    
86            if (pInstr && role == Qt::DisplayRole) {
87                    switch (index.column()) {
88                            case 0: return pInstr->name();
89                            case 1: return QVariant::fromValue(pInstr->map());
90                            case 2: return QVariant::fromValue(pInstr->bank());
91                            case 3: return QVariant::fromValue(pInstr->prog() + 1);
92                            case 4: return pInstr->engineName();
93                            case 5: return pInstr->instrumentFile();
94                            case 6: return QVariant::fromValue(pInstr->instrumentNr());
95                            case 7: return QString::number(pInstr->volume() * 100.0) + " %";
96                            case 8: {
97                                    switch (pInstr->loadMode()) {
98                                            case 3: return tr("Persistent");
99                                            case 2: return tr("On Demand Hold");
100                                            case 1: return tr("On Demand");
101                                    }
102                            }
103                            default:
104                                    break;
105                    }
106            }
107    
108  qsamplerInstrumentList *qsamplerInstrumentGroup::listView (void) const          return QVariant();
 {  
         return static_cast<qsamplerInstrumentList *> (QListViewItem::listView());  
109  }  }
110    
111    
112  // To show up whether its open or not.  QModelIndex InstrumentListModel::index (
113  void qsamplerInstrumentGroup::setOpen ( bool bOpen )          int row, int col, const QModelIndex& /*parent*/ ) const
114  {  {
115          // Set the proper pixmap of this...          const Instrument *pInstr = NULL;
116          if (rtti() == qsamplerInstrumentList::Group) {  
117                  QListViewItem::setPixmap(0, QPixmap::fromMimeSource(          if (m_iMidiMap == LSCP_MIDI_MAP_ALL) {
118                          bOpen ? "itemGroupOpen.png" : "itemGroup.png"));                  int nrows = 0;
119                    InstrumentMap::const_iterator itMap = m_instruments.constBegin();
120                    for ( ; itMap != m_instruments.constEnd(); ++itMap) {
121                            const InstrumentList& list = *itMap;
122                            nrows += list.size();
123                            if (row < nrows) {
124                                    pInstr = list.at(row + list.size() - nrows);
125                                    break;
126                            }
127                    }
128            } else {
129                    // Resolve MIDI instrument map...
130                    InstrumentMap::const_iterator itMap     = m_instruments.find(m_iMidiMap);
131                    if (itMap != m_instruments.constEnd()) {
132                            const InstrumentList& list = *itMap;
133                            if (row < list.size())
134                                    pInstr = list.at(row);
135                    }
136          }          }
         // Open it up...  
         QListViewItem::setOpen(bOpen);  
137    
138          // All ancestors should be also visible.          if (pInstr)
139          if (bOpen && QListViewItem::parent())                  return createIndex(row, col, (void *) pInstr);
140                  QListViewItem::parent()->setOpen(true);          else
141                    return QModelIndex();
142  }  }
143    
144    
145  // To virtually distinguish between list view items.  QModelIndex InstrumentListModel::parent ( const QModelIndex& /*child*/ ) const
 int qsamplerInstrumentGroup::rtti (void) const  
146  {  {
147          return qsamplerInstrumentList::Group;          return QModelIndex();
148  }  }
149    
150    
151  //----------------------------------------------------------------------  QVariant InstrumentListModel::headerData (
152  // class qsamplerInstrumentItem -- custom file list view item.          int section, Qt::Orientation orientation, int role ) const
 //  
   
 // Constructors.  
 qsamplerInstrumentItem::qsamplerInstrumentItem (  
         qsamplerInstrumentList *pListView,  
         qsamplerInstrument *pInstrument,  
         QListViewItem *pItemAfter )  
         : qsamplerInstrumentGroup(pListView, pInstrument->name(), pItemAfter)  
153  {  {
154          m_pInstrument = pInstrument;          if (orientation == Qt::Horizontal && role == Qt::DisplayRole) {
155                    switch (section) {
156          update();                          case 0: return tr("Name");
157  }                          case 1: return tr("Map");
158                            case 2: return tr("Bank");
159  qsamplerInstrumentItem::qsamplerInstrumentItem (                          case 3: return tr("Prog");
160          qsamplerInstrumentGroup *pGroupItem,                          case 4: return tr("Engine");
161          qsamplerInstrument *pInstrument )                          case 5: return tr("File");
162          : qsamplerInstrumentGroup(pGroupItem, pInstrument->name())                          case 6: return tr("Nr");
163  {                          case 7: return tr("Vol");
164          m_pInstrument = pInstrument;                          case 8: return tr("Mode");
165                    }
166            }
167    
168          update();          return QAbstractItemModel::headerData(section, orientation, role);
169  }  }
170    
171    
172  // Default destructor.  void InstrumentListModel::setMidiMap ( int iMidiMap )
 qsamplerInstrumentItem::~qsamplerInstrumentItem (void)  
173  {  {
174          if (m_pInstrument)          if (iMidiMap < 0)
175                  delete m_pInstrument;                  iMidiMap = LSCP_MIDI_MAP_ALL;
 }  
176    
177            m_iMidiMap = iMidiMap;
 // To virtually distinguish between list view items.  
 int qsamplerInstrumentItem::rtti (void) const  
 {  
         return qsamplerInstrumentList::Item;  
178  }  }
179    
180    
181  // Payload accessor.  int InstrumentListModel::midiMap (void) const
 qsamplerInstrument *qsamplerInstrumentItem::instrument (void) const  
182  {  {
183          return m_pInstrument;          return m_iMidiMap;
184  }  }
185    
186    
187  // Item refreshment.  const Instrument *InstrumentListModel::addInstrument (
188  void qsamplerInstrumentItem::update (void)          int iMap, int iBank, int iProg )
189  {  {
190          QListViewItem::setPixmap(0, QPixmap::fromMimeSource("itemFile.png"));          // Check it there's already one instrument item
191            // with the very same key (bank, program);
192            // if yes, just remove it without prejudice...
193            InstrumentList& list = m_instruments[iMap];
194    
195          const QString s = "-";          int i = 0;
196          if (m_pInstrument) {          for ( ; i < list.size(); ++i) {
197                  setText(0, m_pInstrument->name());                  const Instrument *pInstr = list.at(i);
198                  setText(1, QString::number(m_pInstrument->bank()));                  if (pInstr->bank() == iBank && pInstr->prog() == iProg) {
199                  setText(2, QString::number(m_pInstrument->program() + 1));                          delete pInstr;
200                  setText(3, m_pInstrument->engineName());                          list.removeAt(i);
                 setText(4, QFileInfo(m_pInstrument->instrumentFile()).fileName());  
                 setText(5, QString::number(m_pInstrument->instrumentNr()));  
                 setText(6, 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");  
201                          break;                          break;
202                  case 1:                  }
203                          sLoadMode = QObject::tr("On Demand");          }
204    
205            // Resolve the appropriate place, we keep the list sorted that way...
206            for (i = 0; i < list.size(); ++i) {
207                    const Instrument *pInstr = list.at(i);
208                    if (iBank < pInstr->bank()
209                            || (iBank == pInstr->bank() && iProg < pInstr->prog())) {
210                          break;                          break;
211                  }                  }
212                  setText(7, sLoadMode);          }
213    
214            Instrument *pInstr = new Instrument(iMap, iBank, iProg);
215            if (pInstr->getInstrument()) {
216                    list.insert(i, pInstr);
217          } else {          } else {
218                  for (int i = 0; i < listView()->columns(); i++)                  delete pInstr;
219                          setText(i, s);                  pInstr = NULL;
220          }          }
221    
222            return pInstr;
223  }  }
224    
225    
226  //----------------------------------------------------------------------------  void InstrumentListModel::removeInstrument ( Instrument *pInstrument )
227  // qsamplerInstrumentList -- MIDI instrument list view.  {
228  //          const int iMap = pInstrument->map();
229    
230  // Constructor.          if (m_instruments.contains(iMap)) {
231  qsamplerInstrumentList::qsamplerInstrumentList (                  InstrumentList& list = m_instruments[iMap];
232          QWidget *pParent, const char *pszName )                  for (int i = 0; i < list.size(); ++i) {
233          : QListView(pParent, pszName)                          if (pInstrument == list.at(i)) {
234  {                                  delete pInstrument;
235  //  QListView::setRootIsDecorated(true);                                  list.removeAt(i);
236          QListView::setResizeMode(QListView::NoColumn);                                  break;
237  //      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("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);     // Bank  
         QListView::setColumnAlignment(2, Qt::AlignHCenter);     // Prog  
         QListView::setColumnAlignment(5, Qt::AlignHCenter);     // Nr  
         QListView::setColumnAlignment(6, Qt::AlignHCenter);     // Vol  
   
         QListView::setColumnWidth(0, 60);       // Name  
         QListView::setColumnWidth(0, 120);      // File  
   
         m_pNewGroupAction = new QAction(tr("New &Group"), tr("Ctrl+G"), this);  
         m_pNewItemAction  = new QAction(tr("New &Instrument..."), tr("Ctrl+I"), this);  
         m_pEditItemAction = new QAction(tr("&Edit..."), tr("Ctrl+E"), this);  
         m_pRenameAction   = new QAction(tr("&Rename"), tr("Ctrl+R"), this);  
         m_pDeleteAction   = new QAction(tr("&Delete"), tr("Ctrl+D"), this);  
         m_pRefreshAction  = new QAction(tr("Re&fresh"), tr("Ctrl+F"), 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;  
 }  
   
   
 // Add a new instrument group, optionally under another group.  
 qsamplerInstrumentGroup *qsamplerInstrumentList::addGroup (  
         const QString& sName, qsamplerInstrumentGroup *pParentGroup )  
 {  
         qsamplerInstrumentGroup *pGroup = findGroup(sName);  
         if (pGroup == NULL) {  
                 if (pParentGroup)  
                         pGroup = new qsamplerInstrumentGroup(pParentGroup, sName);  
                 else  
                         pGroup = new qsamplerInstrumentGroup(this, sName);  
         }  
         QListView::setSelected(pGroup, true);  
         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()->bank() == pInstrument->bank()  
                                 && pItem->instrument()->program() == pInstrument->program())  
                                 return pItem;  
238                  }                  }
                 ++iter;  
239          }          }
         // Not found.  
         return NULL;  
240  }  }
241    
242    
243  // Find and return the nearest group item...  void InstrumentListModel::updateInstrument ( Instrument *pInstrument )
 qsamplerInstrumentGroup *qsamplerInstrumentList::groupItem (  
         QListViewItem *pItem ) const  
244  {  {
245          while (pItem && pItem->rtti() != Group)          pInstrument->getInstrument();
                 pItem = pItem->parent();  
         return static_cast<qsamplerInstrumentGroup *> (pItem);  
246  }  }
247    
248    
249  // Add a new group item below the current one.  // Reposition the instrument in the model (called when map/bank/prg changed)
250  void qsamplerInstrumentList::newGroupSlot (void)  void InstrumentListModel::resortInstrument ( Instrument *pInstrument )
251  {  {
252          qsamplerInstrumentGroup *pParentGroup          const int iMap  = pInstrument->map();
253                  = groupItem(QListView::selectedItem());          const int iBank = pInstrument->bank();
254          qsamplerInstrumentGroup *pNewGroup          const int iProg = pInstrument->prog();
255                  = addGroup(tr("New Group"), pParentGroup);  
256          if (pParentGroup)          // Remove given instrument from its current list...
257                  pParentGroup->setOpen(true);          removeInstrument(pInstrument);
         if (pNewGroup)  
                 pNewGroup->startRename(0);  
258    
259          selectionChangedSlot();          // Re-add the instrument...
260            addInstrument(iMap, iBank, iProg);
261  }  }
262    
263    
264  // Add a new instrument item below the current one.  void InstrumentListModel::refresh (void)
 void qsamplerInstrumentList::newItemSlot (void)  
265  {  {
266          qsamplerInstrument *pInstrument = new qsamplerInstrument();          MainForm *pMainForm = MainForm::getInstance();
267            if (pMainForm == NULL)
268          qsamplerInstrumentForm form(this);                  return;
269          form.setup(pInstrument);          if (pMainForm->client() == NULL)
         if (!form.exec()) {  
                 delete pInstrument;  
270                  return;                  return;
         }  
271    
272          // Check it there's already one instrument item          QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
         // with the very same key (bank, program);  
         // if yes, just remove it without prejudice...  
         qsamplerInstrumentItem *pItem = findItem(pInstrument);  
         if (pItem)  
                 delete pItem;  
273    
274          pInstrument->map();          clear();
         emit instrumentsChanged();  
275    
276          qsamplerInstrumentGroup *pParentGroup          // Load the whole bunch of instrument items...
277                  = groupItem(QListView::selectedItem());          lscp_midi_instrument_t *pInstrs
278          addItem(pInstrument, pParentGroup);                  = ::lscp_list_midi_instruments(pMainForm->client(), m_iMidiMap);
279          if (pParentGroup)          for (int iInstr = 0; pInstrs && pInstrs[iInstr].map >= 0; ++iInstr) {
280                  pParentGroup->setOpen(true);                  const int iMap  = pInstrs[iInstr].map;
281                    const int iBank = pInstrs[iInstr].bank;
282                    const int iProg = pInstrs[iInstr].prog;
283                    addInstrument(iMap, iBank, iProg);
284                    // Try to keep it snappy :)
285                    QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
286            }
287    
288          selectionChangedSlot();          QApplication::restoreOverrideCursor();
 }  
289    
290            if (pInstrs == NULL && ::lscp_client_get_errno(pMainForm->client())) {
291                    pMainForm->appendMessagesClient("lscp_list_midi_instruments");
292                    pMainForm->appendMessagesError(
293                            tr("Could not get current list of MIDI instrument mappings.\n\nSorry."));
294            }
295    }
296    
297  // Edit current item below the current one.  void InstrumentListModel::beginReset (void)
 void qsamplerInstrumentList::editItemSlot (void)  
298  {  {
299          QListViewItem *pListItem = QListView::selectedItem();  #if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0)
300          if (pListItem == NULL)          QAbstractItemModel::beginResetModel();
301                  return;  #endif
302          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()->map();  
                                 emit instrumentsChanged();  
                                 pItem->update();  
                         }  
                 }  
         }  
303    
304          selectionChangedSlot();  void InstrumentListModel::endReset (void)
305    {
306    #if QT_VERSION >= QT_VERSION_CHECK(4, 6, 0)
307            QAbstractItemModel::endResetModel();
308    #else
309            QAbstractItemModel::reset();
310    #endif
311  }  }
312    
313    
314  // Rename current group/item.  // Map clear.
315  void qsamplerInstrumentList::renameSlot (void)  void InstrumentListModel::clear (void)
316  {  {
317          QListViewItem *pListItem = QListView::selectedItem();          InstrumentMap::iterator itMap = m_instruments.begin();
318          if (pListItem)          for ( ; itMap != m_instruments.end(); ++itMap) {
319                  pListItem->startRename(0);                  InstrumentList& list = itMap.value();
320                    qDeleteAll(list);
321                    list.clear();
322            }
323    
324          selectionChangedSlot();          m_instruments.clear();
325  }  }
326    
327    
328  // Remove current group/item.  //-------------------------------------------------------------------------
329  void qsamplerInstrumentList::deleteSlot (void)  // QSampler::InstrumentListView - list view for MIDI prog mappings
330    //
331    
332    // Constructor.
333    InstrumentListView::InstrumentListView ( QWidget *pParent )
334            : QTreeView(pParent)
335  {  {
336          QListViewItem *pListItem = QListView::selectedItem();          m_pListModel = new InstrumentListModel(this);
337          if (pListItem) {  
338                  if (pListItem->rtti() == Item) {          QTreeView::setModel(m_pListModel);
                         qsamplerInstrumentItem *pItem  
                                 = static_cast<qsamplerInstrumentItem *> (pListItem);  
                         if (pItem && pItem->instrument()) {  
                                 pItem->instrument()->unmap();  
                                 emit instrumentsChanged();  
                         }  
                 }  
                 delete pListItem;  
         }  
339    
340          selectionChangedSlot();          QTreeView::setRootIsDecorated(false);
341            QTreeView::setUniformRowHeights(true);
342            QTreeView::setAlternatingRowColors(true);
343            QTreeView::setSelectionBehavior(QAbstractItemView::SelectRows);
344            QTreeView::setSelectionMode(QAbstractItemView::SingleSelection);
345            QTreeView::setItemsExpandable(false);
346    
347            QHeaderView *pHeader = QTreeView::header();
348            pHeader->setDefaultAlignment(Qt::AlignLeft);
349    #if QT_VERSION < QT_VERSION_CHECK(5, 0, 0)
350            pHeader->setMovable(false);
351    #endif
352            pHeader->setStretchLastSection(true);
353            pHeader->resizeSection(0, 120);                 // Name
354            QTreeView::resizeColumnToContents(1);   // Map
355            QTreeView::resizeColumnToContents(2);   // Bank
356            QTreeView::resizeColumnToContents(3);   // Prog
357            QTreeView::resizeColumnToContents(4);   // Engine
358            pHeader->resizeSection(5, 240);                 // File
359            QTreeView::resizeColumnToContents(6);   // Nr
360            pHeader->resizeSection(7, 60);                  // Vol
361  }  }
362    
363    
364  // In-place selection slot.  // Destructor.
365  void qsamplerInstrumentList::selectionChangedSlot (void)  InstrumentListView::~InstrumentListView (void)
366  {  {
367          qsamplerMainForm *pMainForm = qsamplerMainForm::getInstance();          delete m_pListModel;
         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);  
368  }  }
369    
370    
371  // In-place activation slot.  void InstrumentListView::setMidiMap ( int iMidiMap )
 void qsamplerInstrumentList::activatedSlot ( QListViewItem *pListItem )  
372  {  {
373          // FIXME: Hope the list view item is the one selected.          m_pListModel->setMidiMap(iMidiMap);
         if (pListItem->rtti() == Item)  
                 editItemSlot();  
374  }  }
375    
376    
377  // In-place aliasing slot.  int InstrumentListView::midiMap (void) const
 void qsamplerInstrumentList::renamedSlot ( QListViewItem *pListItem )  
378  {  {
379          if (pListItem->rtti() == Item) {          return m_pListModel->midiMap();
                 qsamplerInstrumentItem *pItem  
                         = static_cast<qsamplerInstrumentItem *> (pListItem);  
                 if (pItem && pItem->instrument()) {  
                         pItem->instrument()->setName(pListItem->text(0));  
                         pItem->instrument()->map();  
                         emit instrumentsChanged();  
                         pItem->update();  
                 }  
         }  
380  }  }
381    
382    
383  // Context menu request event handler.  const Instrument *InstrumentListView::addInstrument (
384  void qsamplerInstrumentList::contextMenuEvent (          int iMap, int iBank, int iProg )
         QContextMenuEvent *pContextMenuEvent )  
385  {  {
386          if (!m_pNewItemAction->isEnabled())          m_pListModel->beginReset();
387                  return;          const Instrument *pInstrument
388                    = m_pListModel->addInstrument(iMap, iBank, iProg);
389            m_pListModel->endReset();
390    
391          QPopupMenu menu(this);          return pInstrument;
392    }
393    
         // 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);  
394    
395          menu.exec(pContextMenuEvent->globalPos());  void InstrumentListView::removeInstrument ( Instrument *pInstrument )
396    {
397            m_pListModel->beginReset();
398            m_pListModel->removeInstrument(pInstrument);
399            m_pListModel->endReset();
400  }  }
401    
402    
403  // General reloader.  void InstrumentListView::updateInstrument ( Instrument *pInstrument )
 void qsamplerInstrumentList::refresh (void)  
404  {  {
405          clear();          m_pListModel->beginReset();
406            m_pListModel->updateInstrument(pInstrument);
407            m_pListModel->endReset();
408    }
409    
         qsamplerMainForm *pMainForm = qsamplerMainForm::getInstance();  
         if (pMainForm == NULL)  
                 return;  
         if (pMainForm->client() == NULL)  
                 return;  
410    
411          qsamplerInstrumentItem *pItem = NULL;  // Reposition the instrument in the model (called when map/bank/prg changed)
412          lscp_midi_instrument_t *pInstrs  void InstrumentListView::resortInstrument ( Instrument *pInstrument )
413                  = ::lscp_list_midi_instruments(pMainForm->client());  {
414          for (int iInstr = 0; pInstrs && pInstrs[iInstr].program >= 0; ++iInstr) {          m_pListModel->beginReset();
415                  int iBank = (pInstrs[iInstr].bank_msb << 7) | pInstrs[iInstr].bank_lsb;          m_pListModel->resortInstrument(pInstrument);
416                  int iProgram = pInstrs[iInstr].program;          m_pListModel->endReset();
417                  qsamplerInstrument *pInstrument  }
                         = new qsamplerInstrument(iBank, iProgram);  
                 if (pInstrument->get())  
                         pItem = new qsamplerInstrumentItem(this, pInstrument, pItem);  
         }  
418    
         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."));  
         }  
419    
420          selectionChangedSlot();  // Refreshener.
421    void InstrumentListView::refresh (void)
422    {
423            m_pListModel->beginReset();
424            m_pListModel->refresh();
425            m_pListModel->endReset();
426  }  }
427    
428    
429  // end of qsamplerInstrumentList.cpp  } // namespace QSampler
430    
431    
432    // end of qsamplerInstrumentList.cpp

Legend:
Removed from v.971  
changed lines
  Added in v.3520

  ViewVC Help
Powered by ViewVC