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.

99 lines
4.2KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2020 - 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 6 End-User License
  8. Agreement and JUCE Privacy Policy (both effective as of the 16th June 2020).
  9. End User License Agreement: www.juce.com/juce-6-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 latest JUCE look-and-feel style, as introduced in 2013.
  23. @see LookAndFeel, LookAndFeel_V1, LookAndFeel_V2
  24. @tags{GUI}
  25. */
  26. class JUCE_API LookAndFeel_V3 : public LookAndFeel_V2
  27. {
  28. public:
  29. LookAndFeel_V3();
  30. ~LookAndFeel_V3() override;
  31. //==============================================================================
  32. void drawButtonBackground (Graphics&, Button&, const Colour& backgroundColour,
  33. bool shouldDrawButtonAsHighlighted, bool shouldDrawButtonAsDown) override;
  34. void drawTableHeaderBackground (Graphics&, TableHeaderComponent&) override;
  35. void drawTreeviewPlusMinusBox (Graphics&, const Rectangle<float>& area,
  36. Colour backgroundColour, bool isOpen, bool isMouseOver) override;
  37. bool areLinesDrawnForTreeView (TreeView&) override;
  38. int getTreeViewIndentSize (TreeView&) override;
  39. Button* createDocumentWindowButton (int buttonType) override;
  40. void drawComboBox (Graphics&, int width, int height, bool isButtonDown,
  41. int buttonX, int buttonY, int buttonW, int buttonH, ComboBox& box) override;
  42. void drawKeymapChangeButton (Graphics&, int width, int height, Button& button, const String& keyDescription) override;
  43. void drawPopupMenuBackground (Graphics&, int width, int height) override;
  44. void drawMenuBarBackground (Graphics&, int width, int height, bool, MenuBarComponent&) override;
  45. int getTabButtonOverlap (int tabDepth) override;
  46. int getTabButtonSpaceAroundImage() override;
  47. void drawTabButton (TabBarButton&, Graphics&, bool isMouseOver, bool isMouseDown) override;
  48. void drawTabAreaBehindFrontButton (TabbedButtonBar& bar, Graphics& g, int w, int h) override;
  49. void drawTextEditorOutline (Graphics&, int width, int height, TextEditor&) override;
  50. void drawStretchableLayoutResizerBar (Graphics&, int w, int h, bool isVerticalBar, bool isMouseOver, bool isMouseDragging) override;
  51. bool areScrollbarButtonsVisible() override;
  52. void drawScrollbar (Graphics&, ScrollBar&, int x, int y, int width, int height, bool isScrollbarVertical,
  53. int thumbStartPosition, int thumbSize, bool isMouseOver, bool isMouseDown) override;
  54. void drawLinearSlider (Graphics&, int x, int y, int width, int height,
  55. float sliderPos, float minSliderPos, float maxSliderPos,
  56. const Slider::SliderStyle, Slider&) override;
  57. void drawLinearSliderBackground (Graphics&, int x, int y, int width, int height,
  58. float sliderPos, float minSliderPos, float maxSliderPos,
  59. const Slider::SliderStyle, Slider&) override;
  60. void drawConcertinaPanelHeader (Graphics&, const Rectangle<int>& area, bool isMouseOver, bool isMouseDown,
  61. ConcertinaPanel&, Component&) override;
  62. Path getTickShape (float height) override;
  63. Path getCrossShape (float height) override;
  64. static void createTabTextLayout (const TabBarButton& button, float length, float depth, Colour colour, TextLayout&);
  65. private:
  66. Image backgroundTexture;
  67. Colour backgroundTextureBaseColour;
  68. };
  69. } // namespace juce