/[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 1234 by capela, Wed Jun 13 21:54:07 2007 UTC revision 1499 by capela, Tue Nov 20 16:48:04 2007 UTC
# Line 2  Line 2 
2  //  //
3  /****************************************************************************  /****************************************************************************
4     Copyright (C) 2003-2007, 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 <qapplication.h>  #include <QApplication>
33  #include <qmessagebox.h>  #include <QMessageBox>
34  #include <qeventloop.h>  #include <QMenu>
35  #include <qaction.h>  #include <QAction>
36  #include <qcursor.h>  #include <QCursor>
37  #include <qfileinfo.h>  #include <QFileInfo>
 #include <qpopupmenu.h>  
38    
39  // Needed for lroundf()  // Needed for lroundf()
40  #include <math.h>  #include <math.h>
# Line 49  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  qsamplerInstrumentList *qsamplerInstrumentGroup::listView (void) const  // MidiInstrumentsModel - data model for MIDI prog mappings (used for QTableView)
 {  
         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"));  
         }  
         // Open it up...  
         QListViewItem::setOpen(bOpen);  
   
         // 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;  
 }  
   
   
 //----------------------------------------------------------------------  
 // class qsamplerInstrumentItem -- custom file list view item.  
57  //  //
58    
59  // Constructors.  MidiInstrumentsModel::MidiInstrumentsModel(QObject* parent) : QAbstractTableModel(parent) {
60  qsamplerInstrumentItem::qsamplerInstrumentItem (      m_iMidiMap = LSCP_MIDI_MAP_ALL;
         qsamplerInstrumentList *pListView,  
         qsamplerInstrument *pInstrument,  
         QListViewItem *pItemAfter )  
         : qsamplerInstrumentGroup(pListView, pInstrument->name(), pItemAfter)  
 {  
         m_pInstrument = pInstrument;  
   
         update();  
61  }  }
62    
63  qsamplerInstrumentItem::qsamplerInstrumentItem (  int MidiInstrumentsModel::rowCount(const QModelIndex& /*parent*/) const {
64          qsamplerInstrumentGroup *pGroupItem,      if (m_iMidiMap == LSCP_MIDI_MAP_ALL) {
65          qsamplerInstrument *pInstrument )          int n = 0;
66          : qsamplerInstrumentGroup(pGroupItem, pInstrument->name())          for (InstrumentsMap::const_iterator itMap = instruments.begin(); itMap != instruments.end(); ++itMap)
67  {              n += (*itMap).size();
68          m_pInstrument = pInstrument;          return n;
69        }
70          update();      InstrumentsMap::const_iterator itMap = instruments.find(m_iMidiMap);
71        if (itMap == instruments.end()) return 0;
72        return (*itMap).size();
73    }
74    
75    int MidiInstrumentsModel::columnCount(const QModelIndex& /*parent*/) const {
76        return 9;
77    }
78    
79    QVariant MidiInstrumentsModel::data(const QModelIndex &index, int role) const {
80        if (!index.isValid()) return QVariant();
81    
82        const qsamplerInstrument* pInstr = NULL;
83    
84        if (m_iMidiMap == LSCP_MIDI_MAP_ALL) {
85            int n = 0;
86            for (InstrumentsMap::const_iterator itMap = instruments.begin(); itMap != instruments.end(); ++itMap) {
87                n += (*itMap).size();
88                if (index.row() < n)
89                    pInstr = &(*itMap)[index.row() + (*itMap).size() - n];
90            }
91        } else {
92            // resolve MIDI instrument map
93            InstrumentsMap::const_iterator itMap = instruments.find(m_iMidiMap);
94            if (itMap == instruments.end()) return QVariant();
95            // resolve instrument in that map
96            if (index.row() >= (*itMap).size()) return QVariant();
97            pInstr = &(*itMap)[index.row()];
98        }
99    
100        if (!pInstr) return QVariant();
101    
102        if (role == Qt::UserRole) {
103            return QVariant::fromValue((void*)pInstr);
104        }
105    
106        if (role == Qt::DisplayRole) {
107            switch (index.column()) {
108                case 0: return pInstr->name();
109                case 1: return QVariant::fromValue(pInstr->map());
110                case 2: return QVariant::fromValue(pInstr->bank());
111                case 3: return QVariant::fromValue(pInstr->prog());
112                case 4: return pInstr->engineName();
113                case 5: return pInstr->instrumentFile();
114                case 6: return QVariant::fromValue(pInstr->instrumentNr());
115                case 7: return QString::number(pInstr->volume() * 100.0) + " %";
116                case 8: {
117                    switch (pInstr->loadMode()) {
118                        case 3: return QObject::tr("Persistent");
119                        case 2: return QObject::tr("On Demand Hold");
120                        case 1: return QObject::tr("On Demand");
121                        default: return QVariant();
122                    }
123                }
124                default: return QVariant();
125            }
126        }
127    
128        return QVariant();
129    }
130    
131    QVariant MidiInstrumentsModel::headerData(int section, Qt::Orientation orientation, int role) const {
132        if (orientation != Qt::Horizontal || role != Qt::DisplayRole)
133            return QVariant();
134    
135        switch (section) {
136            case 0: return tr("Name");
137            case 1: return tr("Map");
138            case 2: return tr("Bank");
139            case 3: return tr("Prog");
140            case 4: return tr("Engine");
141            case 5: return tr("File");
142            case 6: return tr("Nr");
143            case 7: return tr("Vol");
144            case 8: return tr("Mode");
145            default: return QVariant();
146        }
147    }
148    
149    qsamplerInstrument* MidiInstrumentsModel::addInstrument(int iMap, int iBank, int iProg) {
150        // Check it there's already one instrument item
151        // with the very same key (bank, program);
152        // if yes, just remove it without prejudice...
153        for (int i = 0; i < instruments[iMap].size(); i++) {
154            if (
155                instruments[iMap][i].bank() == iBank &&
156                instruments[iMap][i].prog() == iProg
157            ) {
158                instruments[iMap].removeAt(i);
159                break;
160            }
161        }
162    
163        // resolve the appropriate place, we keep the list sorted that way ...
164        int i = 0;
165        for (; i < instruments[iMap].size(); i++)
166            if (
167                iBank > instruments[iMap][i].bank() ||
168                ( iBank == instruments[iMap][i].bank() &&
169                  iProg > instruments[iMap][i].prog() )
170            ) break;
171    
172        instruments[iMap].insert(i, qsamplerInstrument(iMap, iBank, iProg));
173        qsamplerInstrument& instr = instruments[iMap][i];
174        if (!instr.getInstrument())
175            instruments[iMap].removeAt(i);
176    
177        return &instr;
178    }
179    
180    void MidiInstrumentsModel::removeInstrument(const qsamplerInstrument& instrument) {
181        const int iMap  = instrument.map();
182        const int iBank = instrument.bank();
183        const int iProg = instrument.prog();
184        for (int i = 0; i < instruments[iMap].size(); i++) {
185            if (
186                instruments[iMap][i].bank() == iBank &&
187                instruments[iMap][i].prog() == iProg
188            ) {
189                instruments[iMap].removeAt(i);
190                break;
191            }
192        }
193    }
194    
195    // reposition the instrument in the model (called when map/bank/prg changed)
196    void MidiInstrumentsModel::resort(const qsamplerInstrument instrument) {
197        const int iMap  = instrument.map();
198        const int iBank = instrument.bank();
199        const int iProg = instrument.prog();
200        // remove given instrument from its current list
201        removeInstrument(instrument);
202        // re-add the instrument
203        addInstrument(iMap, iBank, iProg);
204    }
205    
206    void MidiInstrumentsModel::setMidiMap(int iMidiMap) {
207        if (iMidiMap < 0)
208            iMidiMap = LSCP_MIDI_MAP_ALL;
209    
210        m_iMidiMap = iMidiMap;
211  }  }
212    
213    int MidiInstrumentsModel::midiMap() const {
214  // Default destructor.      return m_iMidiMap;
 qsamplerInstrumentItem::~qsamplerInstrumentItem (void)  
 {  
         if (m_pInstrument)  
                 delete m_pInstrument;  
 }  
   
   
 // To virtually distinguish between list view items.  
 int qsamplerInstrumentItem::rtti (void) const  
 {  
         return qsamplerInstrumentList::Item;  
215  }  }
216    
217    void MidiInstrumentsModel::refresh() {
218            instruments.clear();
219    
220  // Payload accessor.          MainForm* pMainForm = MainForm::getInstance();
 qsamplerInstrument *qsamplerInstrumentItem::instrument (void) const  
 {  
         return m_pInstrument;  
 }  
   
   
 // Item refreshment.  
 void qsamplerInstrumentItem::update (void)  
 {  
         QListViewItem::setPixmap(0, QPixmap::fromMimeSource("itemFile.png"));  
   
         const QString s = "-";  
         if (m_pInstrument) {  
                 setText(0, m_pInstrument->name());  
                 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;  
                 }  
                 setText(8, sLoadMode);  
         } else {  
                 for (int i = 0; i < listView()->columns(); i++)  
                         setText(i, s);  
         }  
 }  
   
   
 //----------------------------------------------------------------------------  
 // qsamplerInstrumentList -- MIDI instrument list view.  
 //  
   
 // Constructor.  
 qsamplerInstrumentList::qsamplerInstrumentList (  
         QWidget *pParent, const char *pszName )  
         : QListView(pParent, pszName)  
 {  
         m_iMidiMap = LSCP_MIDI_MAP_ALL;  
   
 //  QListView::setRootIsDecorated(true);  
         QListView::setAllColumnsShowFocus(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(  
                 QIconSet(QPixmap::fromMimeSource("itemGroupNew.png")),  
                 tr("New &Group"), tr("Ctrl+G"), this);  
         m_pNewItemAction  = new QAction(  
                 QIconSet(QPixmap::fromMimeSource("itemNew.png")),  
                 tr("New &Instrument..."), tr("Ins"), this);  
         m_pEditItemAction = new QAction(  
                 QIconSet(QPixmap::fromMimeSource("formEdit.png")),  
                 tr("&Edit..."), tr("Enter"), this);  
         m_pRenameAction   = new QAction(tr("&Rename"), tr("F2"), this);  
         m_pDeleteAction   = new QAction(  
                 QIconSet(QPixmap::fromMimeSource("formRemove.png")),  
                 tr("&Delete"), tr("Del"), this);  
         m_pRefreshAction  = new QAction(  
                 QIconSet(QPixmap::fromMimeSource("formRefresh.png")),  
                 tr("Re&fresh"), tr("F5"), this);  
   
         m_pNewGroupAction->setToolTip(tr("New Group"));  
         m_pNewItemAction->setToolTip(tr("New Instrument"));  
         m_pEditItemAction->setToolTip(tr("Edit"));  
         m_pRenameAction->setToolTip(tr("Rename"));  
         m_pDeleteAction->setToolTip(tr("Delete"));  
         m_pRefreshAction->setToolTip(tr("Refresh"));  
   
         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 )  
 {  
         // 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) {  
                 // If exactly the same, just update view and bail out...  
                 if (pItem->instrument() == pInstrument) {  
                         pItem->update();  
                         return pItem;  
                 }  
                 // Remove it, as instrument keys must be unique.  
                 delete pItem;  
         }  
   
         // Add the new item under proper group one, if any...  
         if (pParentGroup) {  
                 pParentGroup->setOpen(true);  
                 pItem = new qsamplerInstrumentItem(pParentGroup, pInstrument);  
         } else {  
                 pItem = new qsamplerInstrumentItem(this, pInstrument);  
         }  
   
         // Set it as current selection...  
         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) {  
                         pParentGroup->setOpen(true);  
                         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()->map()  == pInstrument->map()  
                                 && pItem->instrument()->bank() == pInstrument->bank()  
                                 && pItem->instrument()->prog() == pInstrument->prog())  
                                 return pItem;  
                 }  
                 ++iter;  
         }  
         // 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);  
 }  
   
   
 // Add a new group item below the current one.  
 void qsamplerInstrumentList::newGroupSlot (void)  
 {  
         qsamplerInstrumentGroup *pNewGroup  
                 = addGroup(tr("New Group"), groupItem(QListView::selectedItem()));  
         if (pNewGroup)  
                 pNewGroup->startRename(0);  
   
         selectionChangedSlot();  
 }  
   
   
 // Map selector.  
 void qsamplerInstrumentList::setMidiMap ( int iMidiMap )  
 {  
         if (iMidiMap < 0)  
                 iMidiMap = LSCP_MIDI_MAP_ALL;  
   
         m_iMidiMap = iMidiMap;  
 }  
   
 int qsamplerInstrumentList::midiMap (void) const  
 {  
         return m_iMidiMap;  
 }  
   
   
 // List actions accessors.  
 QAction *qsamplerInstrumentList::newGroupAction (void) const  
 {  
         return m_pNewGroupAction;  
 }  
   
 QAction *qsamplerInstrumentList::newItemAction (void) const  
 {  
         return m_pNewItemAction;  
 }  
   
 QAction *qsamplerInstrumentList::editItemAction (void) const  
 {  
         return m_pEditItemAction;  
 }  
   
 QAction *qsamplerInstrumentList::renameAction (void) const  
 {  
         return m_pRenameAction;  
 }  
   
 QAction *qsamplerInstrumentList::deleteAction (void) const  
 {  
         return m_pDeleteAction;  
 }  
   
 QAction *qsamplerInstrumentList::refreshAction (void) const  
 {  
         return m_pRefreshAction;  
 }  
   
   
 // 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;  
         }  
   
         // Commit...  
         pInstrument->mapInstrument();  
         // add new item to the tree...  
         addItem(pInstrument, groupItem(QListView::selectedItem()));  
         // Notify we've changes...  
         emit instrumentsChanged();  
   
         selectionChangedSlot();  
 }  
   
   
 // Edit current item below the current one.  
 void qsamplerInstrumentList::editItemSlot (void)  
 {  
         QListViewItem *pListItem = QListView::selectedItem();  
         if (pListItem == NULL)  
                 return;  
         if (pListItem->rtti() == Item) {  
                 qsamplerInstrument *pInstrument = NULL;  
                 qsamplerInstrumentItem *pItem  
                         = static_cast<qsamplerInstrumentItem *> (pListItem);  
                 if (pItem)  
                         pInstrument = pItem->instrument();  
                 if (pInstrument) {  
                         // Save current key values...  
                         qsamplerInstrument oldInstrument(*pInstrument);  
                         // Do the edit dance...  
                         qsamplerInstrumentForm form(this);  
                         form.setup(pInstrument);  
                         if (form.exec()) {  
                                 // Commit...  
                                 pInstrument->mapInstrument();  
                                 // Check whether we changed instrument key...  
                                 if (oldInstrument.map()  == pInstrument->map()  &&  
                                         oldInstrument.bank() == pInstrument->bank() &&  
                                         oldInstrument.prog() == pInstrument->prog()) {  
                                         // just update tree item...  
                                         pItem->update();  
                                 } else {  
                                         // Unmap old instance...  
                                         oldInstrument.unmapInstrument();  
                                         // Change item tree, whether applicable...  
                                         if (m_iMidiMap < 0 || m_iMidiMap == pInstrument->map()) {  
                                                 // Add new brand item into view...  
                                                 addItem(pInstrument, groupItem(pListItem));  
                                         } else {  
                                                 // Just remove/hide old one.  
                                                 delete pItem;  
                                         }  
                                 }  
                                 // Notify we've changes...  
                                 emit instrumentsChanged();  
                         }  
                 }  
         }  
   
         selectionChangedSlot();  
 }  
   
   
 // Rename current group/item.  
 void qsamplerInstrumentList::renameSlot (void)  
 {  
         QListViewItem *pListItem = QListView::selectedItem();  
         if (pListItem)  
                 pListItem->startRename(0);  
   
         selectionChangedSlot();  
 }  
   
   
 // Remove current group/item.  
 void qsamplerInstrumentList::deleteSlot (void)  
 {  
         QListViewItem *pListItem = QListView::selectedItem();  
         if (pListItem == NULL)  
                 return;  
   
         qsamplerMainForm *pMainForm = qsamplerMainForm::getInstance();  
         if (pMainForm == NULL)  
                 return;  
   
         // Prompt user if this is for real...  
         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;  
         }  
   
         // Unmap instrument entry...  
         if (pListItem->rtti() == Item) {  
                 qsamplerInstrumentItem *pItem  
                         = static_cast<qsamplerInstrumentItem *> (pListItem);  
                 if (pItem && pItem->instrument()) {  
                         pItem->instrument()->unmapInstrument();  
                         emit instrumentsChanged();  
                 }  
         }  
   
         // Do it for real...  
         delete pListItem;  
   
         selectionChangedSlot();  
 }  
   
   
 // In-place selection slot.  
 void qsamplerInstrumentList::selectionChangedSlot (void)  
 {  
         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);  
 }  
   
   
 // In-place activation slot.  
 void qsamplerInstrumentList::activatedSlot ( QListViewItem *pListItem )  
 {  
         // FIXME: Hope the list view item is the one selected.  
         if (pListItem && pListItem->rtti() == Item)  
                 editItemSlot();  
 }  
   
   
 // In-place aliasing slot.  
 void qsamplerInstrumentList::renamedSlot ( QListViewItem *pListItem )  
 {  
         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();  
                 }  
         }  
 }  
   
   
 // Context menu request event handler.  
 void qsamplerInstrumentList::contextMenuEvent (  
         QContextMenuEvent *pContextMenuEvent )  
 {  
         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());  
 }  
   
   
 // General reloader.  
 void qsamplerInstrumentList::refresh (void)  
 {  
         clear();  
   
         qsamplerMainForm *pMainForm = qsamplerMainForm::getInstance();  
221          if (pMainForm == NULL)          if (pMainForm == NULL)
222                  return;                  return;
223          if (pMainForm->client() == NULL)          if (pMainForm->client() == NULL)
# Line 696  void qsamplerInstrumentList::refresh (vo Line 226  void qsamplerInstrumentList::refresh (vo
226          QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));          QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
227    
228          // Load the whole bunch of instrument items...          // Load the whole bunch of instrument items...
229          qsamplerInstrumentItem *pItem = NULL;          lscp_midi_instrument_t* pInstrs
         lscp_midi_instrument_t *pInstrs  
230                  = ::lscp_list_midi_instruments(pMainForm->client(), m_iMidiMap);                  = ::lscp_list_midi_instruments(pMainForm->client(), m_iMidiMap);
231          for (int iInstr = 0; pInstrs && pInstrs[iInstr].map >= 0; ++iInstr) {          for (int iInstr = 0; pInstrs && pInstrs[iInstr].map >= 0; ++iInstr) {
232                  int iMap  = pInstrs[iInstr].map;                  const int iMap  = pInstrs[iInstr].map;
233                  int iBank = pInstrs[iInstr].bank;                  const int iBank = pInstrs[iInstr].bank;
234                  int iProg = pInstrs[iInstr].prog;                  const int iProg = pInstrs[iInstr].prog;
235                  qsamplerInstrument *pInstrument                  addInstrument(iMap, iBank, iProg);
                         = new qsamplerInstrument(iMap, iBank, iProg);  
                 if (pInstrument->getInstrument())  
                         pItem = new qsamplerInstrumentItem(this, pInstrument, pItem);  
236                  // Try to keep it snappy :)                  // Try to keep it snappy :)
237                  QApplication::eventLoop()->processEvents(QEventLoop::ExcludeUserInput);                  QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
238          }          }
239    
240          QApplication::restoreOverrideCursor();          QApplication::restoreOverrideCursor();
# Line 718  void qsamplerInstrumentList::refresh (vo Line 244  void qsamplerInstrumentList::refresh (vo
244                  pMainForm->appendMessagesError(tr("Could not get current list of MIDI instrument mappings.\n\nSorry."));                  pMainForm->appendMessagesError(tr("Could not get current list of MIDI instrument mappings.\n\nSorry."));
245          }          }
246    
247          selectionChangedSlot();          // inform the outer world (QTableView) that our data changed
248            QAbstractTableModel::reset();
249  }  }
250    
251    
252  // end of qsamplerInstrumentList.cpp  //-------------------------------------------------------------------------
253    // MidiInstrumentsDelegate - table cell renderer for MIDI prog mappings
254    // (doesn't actually do anything ATM, but is already there for a future
255    // cell editor widget implementation)
256    
257    MidiInstrumentsDelegate::MidiInstrumentsDelegate(QObject* parent) : QItemDelegate(parent) {
258    }
259    
260    QWidget* MidiInstrumentsDelegate::createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const {
261        return QItemDelegate::createEditor(parent, option, index);
262        //return new QLabel(index.model()->data(index, Qt::DisplayRole).toString(), parent);
263    }
264    
265    void MidiInstrumentsDelegate::setEditorData(QWidget* /*editor*/, const QModelIndex& /*index*/) const {
266    }
267    
268    void MidiInstrumentsDelegate::setModelData(QWidget* /*editor*/, QAbstractItemModel* /*model*/, const QModelIndex& /*index*/) const {
269    }
270    
271    void MidiInstrumentsDelegate::updateEditorGeometry(QWidget* editor, const QStyleOptionViewItem& option, const QModelIndex& index) const {
272        QItemDelegate::updateEditorGeometry(editor, option, index);
273        //if (editor) editor->setGeometry(option.rect);
274    }
275    
276    
277    // end of qsamplerInstrumentList.cpp

Legend:
Removed from v.1234  
changed lines
  Added in v.1499

  ViewVC Help
Powered by ViewVC