Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

77 lines
2.7KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2017 - ROLI Ltd.
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 5 End-User License
  8. Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
  9. 27th April 2017).
  10. End User License Agreement: www.juce.com/juce-5-licence
  11. Privacy Policy: www.juce.com/juce-5-privacy-policy
  12. Or: You may also use this code under the terms of the GPL v3 (see
  13. www.gnu.org/licenses).
  14. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  15. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  16. DISCLAIMED.
  17. ==============================================================================
  18. */
  19. #pragma once
  20. //==============================================================================
  21. /**
  22. A component that simply displays an image.
  23. Use setImage to give it an image, and it'll display it - simple as that!
  24. */
  25. class JUCE_API ImageComponent : public Component,
  26. public SettableTooltipClient
  27. {
  28. public:
  29. //==============================================================================
  30. /** Creates an ImageComponent. */
  31. ImageComponent (const String& componentName = String());
  32. /** Destructor. */
  33. ~ImageComponent();
  34. //==============================================================================
  35. /** Sets the image that should be displayed. */
  36. void setImage (const Image& newImage);
  37. /** Sets the image that should be displayed, and its placement within the component. */
  38. void setImage (const Image& newImage,
  39. RectanglePlacement placementToUse);
  40. /** Returns the current image. */
  41. const Image& getImage() const;
  42. /** Sets the method of positioning that will be used to fit the image within the component's bounds.
  43. By default the positioning is centred, and will fit the image inside the component's bounds
  44. whilst keeping its aspect ratio correct, but you can change it to whatever layout you need.
  45. */
  46. void setImagePlacement (RectanglePlacement newPlacement);
  47. /** Returns the current image placement. */
  48. RectanglePlacement getImagePlacement() const;
  49. //==============================================================================
  50. /** @internal */
  51. void paint (Graphics&) override;
  52. private:
  53. Image image;
  54. RectanglePlacement placement;
  55. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ImageComponent)
  56. };