Home
last modified time | relevance | path

Searched refs:listBoxInstruments (Results 1 – 12 of 12) sorted by relevance

/dports/audio/milkytracker/MilkyTracker-1.03.00/src/tracker/
H A DSectionAbstract.cpp74 PPSize size = tracker.listBoxInstruments->getSize(); in replaceAndResizeInstrumentListContainer()
77 tracker.listBoxInstruments->setSize(size); in replaceAndResizeInstrumentListContainer()
79 PPPoint p = tracker.listBoxInstruments->getLocation(); in replaceAndResizeInstrumentListContainer()
82 tracker.listBoxInstruments->setLocation(p); in replaceAndResizeInstrumentListContainer()
120 oldInstrumentListSize = tracker.listBoxInstruments->getSize(); in replaceInstrumentListBoxes()
121 oldInstrumentListLocation = tracker.listBoxInstruments->getLocation(); in replaceInstrumentListBoxes()
160 tracker.listBoxInstruments->hide(false); in replaceInstrumentListBoxes()
190 tracker.listBoxInstruments->setSize(oldInstrumentListSize); in replaceInstrumentListBoxes()
191 tracker.listBoxInstruments->setLocation(oldInstrumentListLocation); in replaceInstrumentListBoxes()
H A DDialogHandlers.cpp53 tracker.listBoxInstruments->getSelectedIndex(), in ActionOkay()
59 tracker.listBoxInstruments->getSelectedIndex(), in ActionOkay()
76 tracker.listBoxInstruments->getSelectedIndex(), in ActionUser1()
82 tracker.listBoxInstruments->getSelectedIndex(), in ActionUser1()
144 tracker.moduleEditor->zapInstrument(tracker.listBoxInstruments->getSelectedIndex()); in ActionOkay()
H A DTrackerUpdate.cpp75 pp_int32 ins = listBoxInstruments->getSelectedIndex() + 1; in updatePianoControl()
442 fillSampleListBox(listBoxSamples, listBoxInstruments->getSelectedIndex()); in updateSamplesListBox()
452 pp_int32 i = listBoxInstruments->getSelectedIndex(); in updateSamplesListBox()
474 listBoxInstruments->saveState(); in updateInstrumentsListBox()
476 listBoxInstruments->clear(); in updateInstrumentsListBox()
478 fillInstrumentListBox(listBoxInstruments); in updateInstrumentsListBox()
480 listBoxInstruments->restoreState(); in updateInstrumentsListBox()
486 screen->paintControl(listBoxInstruments, repaint); in updateInstrumentsListBox()
986 listBoxInstruments->setSelectedIndex(0); in updateAfterLoad()
1092 listBoxInstruments->setSelectedIndex(moduleEditor->getCurrentInstrumentIndex(), false); in updateAfterTabSwitch()
H A DTrackerShortCuts.cpp204 listBoxInstruments->dispatchEvent(&e); in selectNextInstrument()
211 listBoxInstruments->dispatchEvent(&e); in selectPreviousInstrument()
435 listBoxInstruments->dispatchEvent(event); in processShortcutsFastTracker()
582 listBoxInstruments->setShowFocus(b); in switchEditMode()
594 screen->setFocus(listBoxInstruments, false); in switchEditMode()
H A DSectionInstruments.cpp421 tracker.listBoxInstruments->getSelectedIndex(), in handleEvent()
439 tracker.listBoxInstruments->getSelectedIndex(), in handleEvent()
454 ins = moduleEditor->getInstrumentInfo(tracker.listBoxInstruments->getSelectedIndex()); in handleEvent()
456 moduleEditor->updateInstrumentData(tracker.listBoxInstruments->getSelectedIndex()); in handleEvent()
501 moduleEditor->updateInstrumentData(tracker.listBoxInstruments->getSelectedIndex()); in handleEvent()
511 moduleEditor->updateInstrumentData(tracker.listBoxInstruments->getSelectedIndex()); in handleEvent()
521 moduleEditor->updateInstrumentData(tracker.listBoxInstruments->getSelectedIndex()); in handleEvent()
531 moduleEditor->updateInstrumentData(tracker.listBoxInstruments->getSelectedIndex()); in handleEvent()
540 pp_int32 i = tracker.listBoxInstruments->getSelectedIndex(); in handleEvent()
1581 tracker.moduleEditor->reloadEnvelope(tracker.listBoxInstruments->getSelectedIndex(), in updateEnvelopeEditor()
[all …]
H A DTracker.cpp1181 pp_uint32 i = listBoxInstruments->getSelectedIndex(); in handleEvent()
1185 if (listBoxInstruments->getSelectedIndex() != i) in handleEvent()
1452 moduleEditor->setInstrumentName(listBoxInstruments->getSelectedIndex(), in handleEvent()
1911 if (listBoxInstruments->getSelectedIndex() == listBoxDst->getSelectedIndex() && in swapAndCopyHandler()
2021 listBox = listBoxInstruments; in isActiveEditing()
2472 listBoxInstruments->setOnlyShowIndexSelection(!b); in enableInstrument()
2473 screen->paintControl(listBoxInstruments); in enableInstrument()
2479 if (listBoxInstruments->isEditing()) in commitListBoxChanges()
2480 listBoxInstruments->commitChanges(); in commitListBoxChanges()
2768 listBoxInstruments->getSelectedIndex(), in loadTypeFromFile()
[all …]
H A DTrackerKeyboard.cpp469 …cast<PPControl*>(sectionDiskMenu->getListBoxFiles()) : static_cast<PPControl*>(listBoxInstruments); in eventKeyDownBinding_Edit()
749 tp.insRangeStart = tp.insRangeEnd = listBoxInstruments->getSelectedIndex() + 1; in eventKeyDownBinding_TransposeCurInsTrackDown()
768 tp.insRangeStart = tp.insRangeEnd = listBoxInstruments->getSelectedIndex() + 1; in eventKeyDownBinding_TransposeCurInsTrackUp()
787 tp.insRangeStart = tp.insRangeEnd = listBoxInstruments->getSelectedIndex() + 1; in eventKeyDownBinding_TransposeCurInsPatternDown()
806 tp.insRangeStart = tp.insRangeEnd = listBoxInstruments->getSelectedIndex() + 1; in eventKeyDownBinding_TransposeCurInsPatternUp()
825 tp.insRangeStart = tp.insRangeEnd = listBoxInstruments->getSelectedIndex() + 1; in eventKeyDownBinding_TransposeCurInsBlockDown()
844 tp.insRangeStart = tp.insRangeEnd = listBoxInstruments->getSelectedIndex() + 1; in eventKeyDownBinding_TransposeCurInsBlockUp()
H A DTrackerInit.cpp1110 listBoxInstruments->setShowIndex(true); in initListboxesSection()
1114 fillInstrumentListBox(listBoxInstruments); in initListboxesSection()
1116 container->addControl(listBoxInstruments); in initListboxesSection()
1698 listBoxInstruments->setShowIndex(true); in initAdvEdit()
1700 fillInstrumentListBox(listBoxInstruments); in initAdvEdit()
1703 listBoxInstruments->setSelectedIndex(srcSelection, false); in initAdvEdit()
1705 container->addControl(listBoxInstruments); in initAdvEdit()
1713 listBoxInstruments->setShowIndex(true); in initAdvEdit()
1715 fillInstrumentListBox(listBoxInstruments); in initAdvEdit()
1717 container->addControl(listBoxInstruments); in initAdvEdit()
[all …]
H A DToolInvokeHelper.cpp147 tracker.listBoxInstruments->setSelectedIndex(value-1, false); in ActionOkay()
H A DTracker.h186 PPListBox* listBoxInstruments; variable
H A DSectionDiskMenu.cpp1381 …*file = tracker.moduleEditor->getInstrumentFileName(tracker.listBoxInstruments->getSelectedIndex()… in updateFilenameEditField()
1387 …*file = tracker.moduleEditor->getSampleFileName(tracker.listBoxInstruments->getSelectedIndex(), tr… in updateFilenameEditField()
H A DSectionSamples.cpp1152 …tracker.moduleEditor->reloadSample(tracker.listBoxInstruments->getSelectedIndex(), tracker.listBox… in realUpdate()
1271 …tracker.moduleEditor->reloadSample(tracker.listBoxInstruments->getSelectedIndex(), tracker.listBox… in getSampleEditorControl()