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.

106 lines
4.7KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2022 - Raw Material Software Limited
  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 7 End-User License
  8. Agreement and JUCE Privacy Policy.
  9. End User License Agreement: www.juce.com/juce-7-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. namespace juce
  19. {
  20. //==============================================================================
  21. /**
  22. The original JUCE look-and-feel, as used back from 2002 to about 2007ish.
  23. @see LookAndFeel, LookAndFeel_V2, LookAndFeel_V3
  24. @tags{GUI}
  25. */
  26. class JUCE_API LookAndFeel_V1 : public LookAndFeel_V2
  27. {
  28. public:
  29. LookAndFeel_V1();
  30. ~LookAndFeel_V1() override;
  31. //==============================================================================
  32. void drawButtonBackground (Graphics&, Button&, const Colour& backgroundColour,
  33. bool shouldDrawButtonAsHighlighted, bool shouldDrawButtonAsDown) override;
  34. void drawToggleButton (Graphics&, ToggleButton&,
  35. bool shouldDrawButtonAsHighlighted, bool shouldDrawButtonAsDown) override;
  36. void drawTickBox (Graphics&, Component&, float x, float y, float w, float h,
  37. bool ticked, bool isEnabled,
  38. bool shouldDrawButtonAsHighlighted, bool shouldDrawButtonAsDown) override;
  39. void drawProgressBar (Graphics&, ProgressBar&, int width, int height,
  40. double progress, const String& textToShow) override;
  41. //==============================================================================
  42. void drawScrollbarButton (Graphics&, ScrollBar&, int width, int height,
  43. int buttonDirection, bool isScrollbarVertical,
  44. bool shouldDrawButtonAsHighlighted, bool shouldDrawButtonAsDown) override;
  45. void drawScrollbar (Graphics&, ScrollBar&, int x, int y, int width, int height,
  46. bool isScrollbarVertical, int thumbStartPosition, int thumbSize,
  47. bool isMouseOver, bool isMouseDown) override;
  48. ImageEffectFilter* getScrollbarEffect() override;
  49. //==============================================================================
  50. void drawTextEditorOutline (Graphics&, int width, int height, TextEditor&) override;
  51. //==============================================================================
  52. void drawPopupMenuBackground (Graphics&, int width, int height) override;
  53. void drawMenuBarBackground (Graphics&, int width, int height, bool isMouseOverBar, MenuBarComponent&) override;
  54. //==============================================================================
  55. void drawComboBox (Graphics&, int width, int height, bool isButtonDown,
  56. int buttonX, int buttonY, int buttonW, int buttonH, ComboBox&) override;
  57. Font getComboBoxFont (ComboBox&) override;
  58. //==============================================================================
  59. void drawLinearSlider (Graphics&, int x, int y, int width, int height,
  60. float sliderPos, float minSliderPos, float maxSliderPos,
  61. const Slider::SliderStyle, Slider&) override;
  62. int getSliderThumbRadius (Slider&) override;
  63. Button* createSliderButton (Slider&, bool isIncrement) override;
  64. ImageEffectFilter* getSliderEffect (Slider&) override;
  65. //==============================================================================
  66. void drawCornerResizer (Graphics&, int w, int h, bool isMouseOver, bool isMouseDragging) override;
  67. Button* createDocumentWindowButton (int buttonType) override;
  68. void positionDocumentWindowButtons (DocumentWindow&,
  69. int titleBarX, int titleBarY, int titleBarW, int titleBarH,
  70. Button* minimiseButton, Button* maximiseButton, Button* closeButton,
  71. bool positionTitleBarButtonsOnLeft) override;
  72. private:
  73. DropShadowEffect scrollbarShadow;
  74. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (LookAndFeel_V1)
  75. };
  76. } // namespace juce