mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
123 lines
4.7 KiB
C++
123 lines
4.7 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE library.
|
|
Copyright (c) 2017 - ROLI Ltd.
|
|
|
|
JUCE is an open source library subject to commercial or open-source
|
|
licensing.
|
|
|
|
By using JUCE, you agree to the terms of both the JUCE 5 End-User License
|
|
Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
|
|
27th April 2017).
|
|
|
|
End User License Agreement: www.juce.com/juce-5-licence
|
|
Privacy Policy: www.juce.com/juce-5-privacy-policy
|
|
|
|
Or: You may also use this code under the terms of the GPL v3 (see
|
|
www.gnu.org/licenses).
|
|
|
|
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
|
|
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
|
|
DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#include "../JuceDemoHeader.h"
|
|
|
|
//==============================================================================
|
|
class ImagesDemo : public Component,
|
|
public FileBrowserListener
|
|
{
|
|
public:
|
|
ImagesDemo()
|
|
: imagesWildcardFilter ("*.jpeg;*.jpg;*.png;*.gif", "*", "Image File Filter"),
|
|
directoryThread ("Image File Scanner Thread"),
|
|
imageList (&imagesWildcardFilter, directoryThread),
|
|
fileTree (imageList),
|
|
resizerBar (&stretchableManager, 1, false)
|
|
{
|
|
setOpaque (true);
|
|
imageList.setDirectory (File::getSpecialLocation (File::userPicturesDirectory), true, true);
|
|
directoryThread.startThread (1);
|
|
|
|
fileTree.addListener (this);
|
|
fileTree.setColour (TreeView::backgroundColourId, Colours::grey);
|
|
addAndMakeVisible (fileTree);
|
|
|
|
addAndMakeVisible (resizerBar);
|
|
|
|
addAndMakeVisible (imagePreview);
|
|
|
|
// we have to set up our StretchableLayoutManager so it know the limits and preferred sizes of it's contents
|
|
stretchableManager.setItemLayout (0, // for the fileTree
|
|
-0.1, -0.9, // must be between 50 pixels and 90% of the available space
|
|
-0.3); // and its preferred size is 30% of the total available space
|
|
|
|
stretchableManager.setItemLayout (1, // for the resize bar
|
|
5, 5, 5); // hard limit to 5 pixels
|
|
|
|
stretchableManager.setItemLayout (2, // for the imagePreview
|
|
-0.1, -0.9, // size must be between 50 pixels and 90% of the available space
|
|
-0.7); // and its preferred size is 70% of the total available space
|
|
}
|
|
|
|
~ImagesDemo()
|
|
{
|
|
fileTree.removeListener (this);
|
|
}
|
|
|
|
void paint (Graphics& g) override
|
|
{
|
|
g.fillAll (Colours::white);
|
|
}
|
|
|
|
void resized() override
|
|
{
|
|
auto r = getLocalBounds().reduced (4);
|
|
|
|
// make a list of two of our child components that we want to reposition
|
|
Component* comps[] = { &fileTree, &resizerBar, &imagePreview };
|
|
|
|
// this will position the 3 components, one above the other, to fit
|
|
// vertically into the rectangle provided.
|
|
stretchableManager.layOutComponents (comps, 3,
|
|
r.getX(), r.getY(), r.getWidth(), r.getHeight(),
|
|
true, true);
|
|
}
|
|
|
|
private:
|
|
WildcardFileFilter imagesWildcardFilter;
|
|
TimeSliceThread directoryThread;
|
|
DirectoryContentsList imageList;
|
|
FileTreeComponent fileTree;
|
|
|
|
ImageComponent imagePreview;
|
|
|
|
StretchableLayoutManager stretchableManager;
|
|
StretchableLayoutResizerBar resizerBar;
|
|
|
|
void selectionChanged() override
|
|
{
|
|
// we're only really interested in when the selection changes, regardless of if it was
|
|
// clicked or not so we'll only override this method
|
|
const File selectedFile (fileTree.getSelectedFile());
|
|
|
|
if (selectedFile.existsAsFile())
|
|
imagePreview.setImage (ImageCache::getFromFile (selectedFile));
|
|
|
|
// the image cahce is a handly way to load images from files or directly from memory and
|
|
// will keep them hanging around for a few seconds in case they are requested elsewhere
|
|
}
|
|
|
|
void fileClicked (const File&, const MouseEvent&) override {}
|
|
void fileDoubleClicked (const File&) override {}
|
|
void browserRootChanged (const File&) override {}
|
|
|
|
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ImagesDemo)
|
|
};
|
|
|
|
|
|
// This static object will register this demo type in a global list of demos..
|
|
static JuceDemoType<ImagesDemo> demo ("20 Graphics: Image formats");
|