/** * * Copyright (c) 2015 Pascal Gauthier. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ #include "ProgramListBox.h" #include "PluginData.h" #include "DXLookNFeel.h" #include "Dexed.h" ProgramListBox::ProgramListBox(const String name, int numCols) : Component(name) { cols = numCols; rows = 32 / numCols; selectedPgm = -1; hasContent = false; dragCandidate = -1; readOnly = false; programNames.clear(); } void ProgramListBox::paint(Graphics &g) { int pgm = 0; g.setColour(Colour(20,18,18)); g.fillRect(0,0,getWidth(), getHeight()); g.setColour(Colour(0,0,0)); g.drawLine(0,0,getWidth(), 0, 2); g.setColour(Colour(3,3,1)); g.drawLine(0,0,0,getHeight(),2); g.setColour(Colour(34,32,32)); g.drawLine(getWidth(), 3, getWidth(), getHeight(), 2); g.setColour(Colour(75,73,73)); g.drawLine(0,getHeight(),getWidth(),getHeight(), 2); const float dashLength[] = { 4, 4 }; g.setColour(Colour(83,76,69)); for(int i=1;i line(cellWidth*i,0,cellWidth*i,getHeight()); g.drawDashedLine(line, dashLength, 2); } for(int i=1;i line(2, cellHeight*i,getWidth(),cellHeight*i); g.drawDashedLine(line, dashLength, 2); } for(int i=0;ilistener = listener; } int ProgramListBox::programPosition(int x, int y) { return (y / cellHeight) + ((x / cellWidth) * rows); } void ProgramListBox::mouseDoubleClick(const MouseEvent &event) { if ( ! hasContent ) return; if ( ! event.mods.isLeftButtonDown() ) return; int pos = programPosition(event.getMouseDownX(), event.getMouseDownY()); if ( listener != nullptr ) listener->programSelected(this, pos); } void ProgramListBox::mouseDown(const MouseEvent &event) { if ( ! hasContent ) return; if ( ! event.mods.isRightButtonDown() ) return; int pos = programPosition(event.getMouseDownX(), event.getMouseDownY()); if ( listener != nullptr ) listener->programRightClicked(this, pos); } void ProgramListBox::mouseDrag(const MouseEvent &event) { if ( ! hasContent ) return; if ( dragCandidate != -1 ) return; if ( event.getDistanceFromDragStart() < 7 ) return; if (DragAndDropContainer* const dragContainer = DragAndDropContainer::findParentDragContainerFor(this)) { Image snapshot (Image::ARGB, cellWidth, cellHeight, true); int position = programPosition(event.getMouseDownX(), event.getMouseDownY()); Graphics g(snapshot); g.setColour(DXLookNFeel::lightBackground); g.fillRect(0,0,cellWidth, cellHeight); g.setColour(Colours::white); g.drawFittedText(programNames[position], 0, 0, cellWidth, cellHeight, Justification::centred, true); void *src = cartContent.getRawVoice() + (position*128); var description = var(src, 128); dragContainer->startDragging(description, this, snapshot, false); } } void ProgramListBox::setSelected(int idx) { selectedPgm = idx; } Cartridge &ProgramListBox::getCurrentCart() { return cartContent; } bool ProgramListBox::isInterestedInDragSource (const SourceDetails& dragSourceDetail) { if ( readOnly ) return false; if ( ! hasContent ) return false; Component *comp = dragSourceDetail.sourceComponent.get(); if ( comp == nullptr ) return false; if ( dynamic_cast(comp) == nullptr ) return false; return true; } void ProgramListBox::itemDropped(const SourceDetails& dragSourceDetails) { dragCandidate = programPosition(dragSourceDetails.localPosition.x, dragSourceDetails.localPosition.y); MemoryBlock* block = dragSourceDetails.description.getBinaryData(); if ( listener != nullptr ) listener->programDragged(this, dragCandidate, (char *)block->getData()); dragCandidate = -1; repaint(); } void ProgramListBox::itemDragEnter(const SourceDetails &dragSourceDetails) { dragCandidate = programPosition(dragSourceDetails.localPosition.x, dragSourceDetails.localPosition.y); repaint(); } void ProgramListBox::itemDragMove(const SourceDetails &dragSourceDetails) { dragCandidate = programPosition(dragSourceDetails.localPosition.x, dragSourceDetails.localPosition.y); repaint(); } void ProgramListBox::itemDragExit(const SourceDetails &dragSourceDetails) { dragCandidate = -1; repaint(); }