/* ============================================================================== This file is part of the dRowAudio JUCE module Copyright 2004-13 by dRowAudio. ------------------------------------------------------------------------------ dRowAudio is provided under the terms of The MIT License (MIT): Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ============================================================================== */ //================================================================================== class BrowserColumn : public BasicFileBrowser, public DragAndDropContainer, public ChangeBroadcaster { public: //================================================================================== BrowserColumn (WildcardFileFilter* filesToDisplay_) : BasicFileBrowser (BasicFileBrowser::openMode + BasicFileBrowser::canSelectFiles + BasicFileBrowser::canSelectDirectories + BasicFileBrowser::canSelectMultipleItems, File::getSpecialLocation (File::userMusicDirectory), filesToDisplay_), fileDragEnabled (false) { addMouseListener (this, true); } ~BrowserColumn() { } void mouseDrag (const MouseEvent& /*e*/) { if (fileDragEnabled) { StringArray files; for (int i = 0; i < getNumSelectedFiles(); i++) { File file (getSelectedFile (i)); if (file.existsAsFile()) files.add (file.getFullPathName()); } fileDragEnabled = false; performExternalDragDropOfFiles (files, false); } } void mouseUp (const MouseEvent& /*e*/) { fileDragEnabled = false; } void selectionChanged() { BasicFileBrowser::selectionChanged(); sendSynchronousChangeMessage(); } void fileClicked (const File& /*file*/, const MouseEvent& /*e*/) { fileDragEnabled = true; } void fileDoubleClicked (const File& /*f*/) {} private: //================================================================================== bool fileDragEnabled; JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (BrowserColumn); }; //================================================================================== class ColumnFileBrowserContents : public Component, public FileBrowserListener, public ChangeListener, public ComponentListener { public: //================================================================================== ColumnFileBrowserContents (WildcardFileFilter* filesToDisplay_, Viewport* parentViewport); ~ColumnFileBrowserContents(); void resized(); void selectionChanged () {} void fileClicked (const File& /*file*/, const MouseEvent& /*e*/) {} void fileDoubleClicked (const File& /*file*/) {} void browserRootChanged (const File& /*newRoot*/) {} void selectedFileChanged (const File& file); bool addColumn (const File& rootDirectory); void removeColumn (int numColumns = 1); void changeListenerCallback (ChangeBroadcaster* changedComponent); void componentMovedOrResized (Component &component, bool wasMoved, bool wasResized); bool keyPressed (const KeyPress& key); private: //================================================================================== WildcardFileFilter* filesToDisplay; Viewport* viewport; OwnedArray columns; int activeColumn; friend class ColumnFileBrowser; ScopedPointer activeLookAndFeel; ScopedPointer inactiveLookAndFeel; //================================================================================== int getNumValidChildFiles (const File& sourceFile); //================================================================================== JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ColumnFileBrowserContents); }; //================================================================================== ColumnFileBrowserContents::ColumnFileBrowserContents (WildcardFileFilter* filesToDisplay_, Viewport* parentViewport) : filesToDisplay (filesToDisplay_), viewport (parentViewport) { activeLookAndFeel = new ColumnFileBrowserLookAndFeel(); activeLookAndFeel->setColour (DirectoryContentsDisplayComponent::highlightColourId, Colours::darkorange); inactiveLookAndFeel = new ColumnFileBrowserLookAndFeel(); columns.add (new BrowserColumn (filesToDisplay_)); addAndMakeVisible (columns[0]); columns[0]->setSize (300, 50); columns[0]->addListener (this); columns[0]->addChangeListener (this); columns[0]->addComponentListener (this); columns[0]->setLookAndFeel (activeLookAndFeel); activeColumn = 0; } ColumnFileBrowserContents::~ColumnFileBrowserContents() { } void ColumnFileBrowserContents::resized() { int width = 0; const int height = getHeight(); for (int i = 0; i < columns.size(); i++) { columns[i]->setBounds (width, 0, columns[i]->getWidth(), height); width += columns[i]->getWidth(); } setSize (width, height); } void ColumnFileBrowserContents::selectedFileChanged (const File& file) { // if last column clicked add new column if (columns[activeColumn] == columns.getLast()) { addColumn (file); } else // otherwise remove uneeded columns and change last { for (int i = 0; i < columns.size(); i++) { if (columns[activeColumn] == columns[i]) { const int numColumnsToRemove = columns.size() - i - (file.isDirectory() ? 1 : 0); removeColumn (numColumnsToRemove); if (file.isDirectory()) columns.getLast()->setRoot (file); break; } } resized(); } // stick to edges of viewport if (getWidth() < viewport->getWidth()) { viewport->setViewPosition (0, 0); } else if (file.exists() || (getRight() < viewport->getRight())) { const int ammountToSubtract = viewport->getRight() - getRight(); viewport->setViewPosition (viewport->getViewPositionX() - ammountToSubtract, 0); } } bool ColumnFileBrowserContents::addColumn (const File& rootDirectory) { if (rootDirectory.isDirectory() && rootDirectory.exists()) { const int startingWidth = columns.getLast()->getWidth(); BrowserColumn* newColumn = new BrowserColumn (filesToDisplay); newColumn->setLookAndFeel (inactiveLookAndFeel); newColumn->setRoot (rootDirectory); newColumn->setSize (startingWidth, 50); newColumn->addListener (this); newColumn->addChangeListener (this); newColumn->addComponentListener (this); columns.add (newColumn); addAndMakeVisible (newColumn); resized(); return true; } return false; } void ColumnFileBrowserContents::removeColumn (int numColumns) { for (int i = numColumns; i <= 0; i--) { columns[i]->removeListener (this); columns[i]->removeChangeListener (this); columns[i]->removeComponentListener (this); } columns.removeLast (numColumns - 1); } void ColumnFileBrowserContents::changeListenerCallback (ChangeBroadcaster* changedComponent) { BrowserColumn* changedColumn = static_cast (changedComponent); if (changedColumn->getHighlightedFile().getFileName().isNotEmpty()) { columns[activeColumn]->setLookAndFeel (inactiveLookAndFeel); activeColumn = columns.indexOf (changedColumn); columns[activeColumn]->setLookAndFeel (activeLookAndFeel); columns[activeColumn]->repaint(); selectedFileChanged (changedColumn->getHighlightedFile()); } } void ColumnFileBrowserContents::componentMovedOrResized (Component& /*component*/, bool /*wasMoved*/, bool wasResized) { if (wasResized) resized(); } bool ColumnFileBrowserContents::keyPressed (const KeyPress& key) { if (key.isKeyCode (KeyPress::leftKey)) { if (activeColumn != 0) { FileListComponent* list = dynamic_cast (columns[activeColumn]->getDisplayComponent()); list->deselectAllRows(); int newActiveColumn = jmax (0, activeColumn - 1); columns[newActiveColumn]->selectionChanged(); columns[newActiveColumn]->grabKeyboardFocus(); } return true; } else if (key.isKeyCode (KeyPress::rightKey)) { if (columns[activeColumn]->getNumSelectedFiles() == 1 && columns[activeColumn]->getSelectedFile (0).isDirectory() && getNumValidChildFiles (columns[activeColumn]->getSelectedFile (0)) > 0) { int newActiveColumn = activeColumn + 1; addColumn (columns[activeColumn]->getSelectedFile (0)); FileListComponent* list = dynamic_cast (columns[newActiveColumn]->getDisplayComponent()); if (list != nullptr) { ListBoxModel* model = list->getModel(); if (model != nullptr) { if (model->getNumRows() > 0) { columns[newActiveColumn]->grabKeyboardFocus(); list->selectRow (0); } } } } return true; } return false; } //================================================================================== int ColumnFileBrowserContents::getNumValidChildFiles (const File& sourceFile) { const int numChildFiles = sourceFile.getNumberOfChildFiles (File::findFilesAndDirectories + File::ignoreHiddenFiles, filesToDisplay == nullptr ? "*" : filesToDisplay->getDescription().fromFirstOccurrenceOf ("(", false, false).upToFirstOccurrenceOf (")", false, false)); return numChildFiles; } //================================================================================== ColumnFileBrowser::ColumnFileBrowser (WildcardFileFilter* filesToDisplay_) : Viewport ("ColumnFileBrowser"), wildcard (filesToDisplay_) { addMouseListener (this, true); setWantsKeyboardFocus (false); setScrollBarsShown (false, true); setScrollBarThickness (10); fileBrowser = new ColumnFileBrowserContents (filesToDisplay_, this); setViewedComponent (fileBrowser); } ColumnFileBrowser::~ColumnFileBrowser() { } void ColumnFileBrowser::setActiveColumHighlightColour (const Colour& colour) { fileBrowser->activeLookAndFeel->setColour (DirectoryContentsDisplayComponent::highlightColourId, colour); } void ColumnFileBrowser::resized() { Viewport::resized(); fileBrowser->setSize (fileBrowser->getWidth(), getMaximumVisibleHeight()); } void ColumnFileBrowser::visibleAreaChanged (const Rectangle& /*newVisibleArea*/) { resized(); } void ColumnFileBrowser::mouseWheelMove (const MouseEvent& e, const MouseWheelDetails& wheel) { if (! (e.mods.isAltDown() || e.mods.isCtrlDown())) { if (e.eventComponent != this && e.eventComponent != &getHorizontalScrollBar()) if (wheel.deltaX != 0.0f) Viewport::useMouseWheelMoveIfNeeded (e, wheel); } }