123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265 |
- /*
- ==============================================================================
- This file is part of the JUCE library.
- Copyright (c) 2013 - Raw Material Software Ltd.
- Permission is granted to use this software under the terms of either:
- a) the GPL v2 (or any later version)
- b) the Affero GPL v3
- Details of these licenses can be found at: www.gnu.org/licenses
- JUCE 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.
- ------------------------------------------------------------------------------
- To release a closed-source product which uses JUCE, commercial licenses are
- available: visit www.juce.com for more information.
- ==============================================================================
- */
- FileSearchPathListComponent::FileSearchPathListComponent()
- : addButton ("+"),
- removeButton ("-"),
- changeButton (TRANS ("change...")),
- upButton (String::empty, DrawableButton::ImageOnButtonBackground),
- downButton (String::empty, DrawableButton::ImageOnButtonBackground)
- {
- listBox.setModel (this);
- addAndMakeVisible (listBox);
- listBox.setColour (ListBox::backgroundColourId, Colours::black.withAlpha (0.02f));
- listBox.setColour (ListBox::outlineColourId, Colours::black.withAlpha (0.1f));
- listBox.setOutlineThickness (1);
- addAndMakeVisible (addButton);
- addButton.addListener (this);
- addButton.setConnectedEdges (Button::ConnectedOnLeft | Button::ConnectedOnRight | Button::ConnectedOnBottom | Button::ConnectedOnTop);
- addAndMakeVisible (removeButton);
- removeButton.addListener (this);
- removeButton.setConnectedEdges (Button::ConnectedOnLeft | Button::ConnectedOnRight | Button::ConnectedOnBottom | Button::ConnectedOnTop);
- addAndMakeVisible (changeButton);
- changeButton.addListener (this);
- addAndMakeVisible (upButton);
- upButton.addListener (this);
- {
- Path arrowPath;
- arrowPath.addArrow (Line<float> (50.0f, 100.0f, 50.0f, 0.0f), 40.0f, 100.0f, 50.0f);
- DrawablePath arrowImage;
- arrowImage.setFill (Colours::black.withAlpha (0.4f));
- arrowImage.setPath (arrowPath);
- upButton.setImages (&arrowImage);
- }
- addAndMakeVisible (downButton);
- downButton.addListener (this);
- {
- Path arrowPath;
- arrowPath.addArrow (Line<float> (50.0f, 0.0f, 50.0f, 100.0f), 40.0f, 100.0f, 50.0f);
- DrawablePath arrowImage;
- arrowImage.setFill (Colours::black.withAlpha (0.4f));
- arrowImage.setPath (arrowPath);
- downButton.setImages (&arrowImage);
- }
- updateButtons();
- }
- FileSearchPathListComponent::~FileSearchPathListComponent()
- {
- }
- void FileSearchPathListComponent::updateButtons()
- {
- const bool anythingSelected = listBox.getNumSelectedRows() > 0;
- removeButton.setEnabled (anythingSelected);
- changeButton.setEnabled (anythingSelected);
- upButton.setEnabled (anythingSelected);
- downButton.setEnabled (anythingSelected);
- }
- void FileSearchPathListComponent::changed()
- {
- listBox.updateContent();
- listBox.repaint();
- updateButtons();
- }
- //==============================================================================
- void FileSearchPathListComponent::setPath (const FileSearchPath& newPath)
- {
- if (newPath.toString() != path.toString())
- {
- path = newPath;
- changed();
- }
- }
- void FileSearchPathListComponent::setDefaultBrowseTarget (const File& newDefaultDirectory)
- {
- defaultBrowseTarget = newDefaultDirectory;
- }
- //==============================================================================
- int FileSearchPathListComponent::getNumRows()
- {
- return path.getNumPaths();
- }
- void FileSearchPathListComponent::paintListBoxItem (int rowNumber, Graphics& g, int width, int height, bool rowIsSelected)
- {
- if (rowIsSelected)
- g.fillAll (findColour (TextEditor::highlightColourId));
- g.setColour (findColour (ListBox::textColourId));
- Font f (height * 0.7f);
- f.setHorizontalScale (0.9f);
- g.setFont (f);
- g.drawText (path [rowNumber].getFullPathName(),
- 4, 0, width - 6, height,
- Justification::centredLeft, true);
- }
- void FileSearchPathListComponent::deleteKeyPressed (int row)
- {
- if (isPositiveAndBelow (row, path.getNumPaths()))
- {
- path.remove (row);
- changed();
- }
- }
- void FileSearchPathListComponent::returnKeyPressed (int row)
- {
- #if JUCE_MODAL_LOOPS_PERMITTED
- FileChooser chooser (TRANS("Change folder..."), path [row], "*");
- if (chooser.browseForDirectory())
- {
- path.remove (row);
- path.add (chooser.getResult(), row);
- changed();
- }
- #endif
- }
- void FileSearchPathListComponent::listBoxItemDoubleClicked (int row, const MouseEvent&)
- {
- returnKeyPressed (row);
- }
- void FileSearchPathListComponent::selectedRowsChanged (int)
- {
- updateButtons();
- }
- void FileSearchPathListComponent::paint (Graphics& g)
- {
- g.fillAll (findColour (backgroundColourId));
- }
- void FileSearchPathListComponent::resized()
- {
- const int buttonH = 22;
- const int buttonY = getHeight() - buttonH - 4;
- listBox.setBounds (2, 2, getWidth() - 4, buttonY - 5);
- addButton.setBounds (2, buttonY, buttonH, buttonH);
- removeButton.setBounds (addButton.getRight(), buttonY, buttonH, buttonH);
- changeButton.changeWidthToFitText (buttonH);
- downButton.setSize (buttonH * 2, buttonH);
- upButton.setSize (buttonH * 2, buttonH);
- downButton.setTopRightPosition (getWidth() - 2, buttonY);
- upButton.setTopRightPosition (downButton.getX() - 4, buttonY);
- changeButton.setTopRightPosition (upButton.getX() - 8, buttonY);
- }
- bool FileSearchPathListComponent::isInterestedInFileDrag (const StringArray&)
- {
- return true;
- }
- void FileSearchPathListComponent::filesDropped (const StringArray& filenames, int, int mouseY)
- {
- for (int i = filenames.size(); --i >= 0;)
- {
- const File f (filenames[i]);
- if (f.isDirectory())
- {
- const int row = listBox.getRowContainingPosition (0, mouseY - listBox.getY());
- path.add (f, row);
- changed();
- }
- }
- }
- void FileSearchPathListComponent::buttonClicked (Button* button)
- {
- const int currentRow = listBox.getSelectedRow();
- if (button == &removeButton)
- {
- deleteKeyPressed (currentRow);
- }
- else if (button == &addButton)
- {
- File start (defaultBrowseTarget);
- if (start == File::nonexistent)
- start = path [0];
- if (start == File::nonexistent)
- start = File::getCurrentWorkingDirectory();
- #if JUCE_MODAL_LOOPS_PERMITTED
- FileChooser chooser (TRANS("Add a folder..."), start, "*");
- if (chooser.browseForDirectory())
- path.add (chooser.getResult(), currentRow);
- #else
- jassertfalse; // needs rewriting to deal with non-modal environments
- #endif
- }
- else if (button == &changeButton)
- {
- returnKeyPressed (currentRow);
- }
- else if (button == &upButton)
- {
- if (currentRow > 0 && currentRow < path.getNumPaths())
- {
- const File f (path[currentRow]);
- path.remove (currentRow);
- path.add (f, currentRow - 1);
- listBox.selectRow (currentRow - 1);
- }
- }
- else if (button == &downButton)
- {
- if (currentRow >= 0 && currentRow < path.getNumPaths() - 1)
- {
- const File f (path[currentRow]);
- path.remove (currentRow);
- path.add (f, currentRow + 1);
- listBox.selectRow (currentRow + 1);
- }
- }
- changed();
- }
|