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.

2995 lines
125KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2015 - ROLI Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. namespace LookAndFeelHelpers
  18. {
  19. static Colour createBaseColour (Colour buttonColour,
  20. bool hasKeyboardFocus,
  21. bool isMouseOverButton,
  22. bool isButtonDown) noexcept
  23. {
  24. const float sat = hasKeyboardFocus ? 1.3f : 0.9f;
  25. const Colour baseColour (buttonColour.withMultipliedSaturation (sat));
  26. if (isButtonDown) return baseColour.contrasting (0.2f);
  27. if (isMouseOverButton) return baseColour.contrasting (0.1f);
  28. return baseColour;
  29. }
  30. static TextLayout layoutTooltipText (const String& text, Colour colour) noexcept
  31. {
  32. const float tooltipFontSize = 13.0f;
  33. const int maxToolTipWidth = 400;
  34. AttributedString s;
  35. s.setJustification (Justification::centred);
  36. s.append (text, Font (tooltipFontSize, Font::bold), colour);
  37. TextLayout tl;
  38. tl.createLayoutWithBalancedLineLengths (s, (float) maxToolTipWidth);
  39. return tl;
  40. }
  41. }
  42. //==============================================================================
  43. LookAndFeel_V2::LookAndFeel_V2()
  44. {
  45. // initialise the standard set of colours..
  46. const uint32 textButtonColour = 0xffbbbbff;
  47. const uint32 textHighlightColour = 0x401111ee;
  48. const uint32 standardOutlineColour = 0xb2808080;
  49. static const uint32 standardColours[] =
  50. {
  51. TextButton::buttonColourId, textButtonColour,
  52. TextButton::buttonOnColourId, 0xff4444ff,
  53. TextButton::textColourOnId, 0xff000000,
  54. TextButton::textColourOffId, 0xff000000,
  55. ToggleButton::textColourId, 0xff000000,
  56. ToggleButton::tickColourId, 0xff000000,
  57. ToggleButton::tickDisabledColourId, 0xff808080,
  58. TextEditor::backgroundColourId, 0xffffffff,
  59. TextEditor::textColourId, 0xff000000,
  60. TextEditor::highlightColourId, textHighlightColour,
  61. TextEditor::highlightedTextColourId, 0xff000000,
  62. TextEditor::outlineColourId, 0x00000000,
  63. TextEditor::focusedOutlineColourId, textButtonColour,
  64. TextEditor::shadowColourId, 0x38000000,
  65. CaretComponent::caretColourId, 0xff000000,
  66. Label::backgroundColourId, 0x00000000,
  67. Label::textColourId, 0xff000000,
  68. Label::outlineColourId, 0x00000000,
  69. ScrollBar::backgroundColourId, 0x00000000,
  70. ScrollBar::thumbColourId, 0xffffffff,
  71. TreeView::linesColourId, 0x4c000000,
  72. TreeView::backgroundColourId, 0x00000000,
  73. TreeView::dragAndDropIndicatorColourId, 0x80ff0000,
  74. TreeView::selectedItemBackgroundColourId, 0x00000000,
  75. TreeView::oddItemsColourId, 0x00000000,
  76. TreeView::evenItemsColourId, 0x00000000,
  77. PopupMenu::backgroundColourId, 0xffffffff,
  78. PopupMenu::textColourId, 0xff000000,
  79. PopupMenu::headerTextColourId, 0xff000000,
  80. PopupMenu::highlightedTextColourId, 0xffffffff,
  81. PopupMenu::highlightedBackgroundColourId, 0x991111aa,
  82. ComboBox::buttonColourId, 0xffbbbbff,
  83. ComboBox::outlineColourId, standardOutlineColour,
  84. ComboBox::textColourId, 0xff000000,
  85. ComboBox::backgroundColourId, 0xffffffff,
  86. ComboBox::arrowColourId, 0x99000000,
  87. PropertyComponent::backgroundColourId, 0x66ffffff,
  88. PropertyComponent::labelTextColourId, 0xff000000,
  89. TextPropertyComponent::backgroundColourId, 0xffffffff,
  90. TextPropertyComponent::textColourId, 0xff000000,
  91. TextPropertyComponent::outlineColourId, standardOutlineColour,
  92. BooleanPropertyComponent::backgroundColourId, 0xffffffff,
  93. BooleanPropertyComponent::outlineColourId, standardOutlineColour,
  94. ListBox::backgroundColourId, 0xffffffff,
  95. ListBox::outlineColourId, standardOutlineColour,
  96. ListBox::textColourId, 0xff000000,
  97. Slider::backgroundColourId, 0x00000000,
  98. Slider::thumbColourId, textButtonColour,
  99. Slider::trackColourId, 0x7fffffff,
  100. Slider::rotarySliderFillColourId, 0x7f0000ff,
  101. Slider::rotarySliderOutlineColourId, 0x66000000,
  102. Slider::textBoxTextColourId, 0xff000000,
  103. Slider::textBoxBackgroundColourId, 0xffffffff,
  104. Slider::textBoxHighlightColourId, textHighlightColour,
  105. Slider::textBoxOutlineColourId, standardOutlineColour,
  106. ResizableWindow::backgroundColourId, 0xff777777,
  107. //DocumentWindow::textColourId, 0xff000000, // (this is deliberately not set)
  108. AlertWindow::backgroundColourId, 0xffededed,
  109. AlertWindow::textColourId, 0xff000000,
  110. AlertWindow::outlineColourId, 0xff666666,
  111. ProgressBar::backgroundColourId, 0xffeeeeee,
  112. ProgressBar::foregroundColourId, 0xffaaaaee,
  113. TooltipWindow::backgroundColourId, 0xffeeeebb,
  114. TooltipWindow::textColourId, 0xff000000,
  115. TooltipWindow::outlineColourId, 0x4c000000,
  116. TabbedComponent::backgroundColourId, 0x00000000,
  117. TabbedComponent::outlineColourId, 0xff777777,
  118. TabbedButtonBar::tabOutlineColourId, 0x80000000,
  119. TabbedButtonBar::frontOutlineColourId, 0x90000000,
  120. Toolbar::backgroundColourId, 0xfff6f8f9,
  121. Toolbar::separatorColourId, 0x4c000000,
  122. Toolbar::buttonMouseOverBackgroundColourId, 0x4c0000ff,
  123. Toolbar::buttonMouseDownBackgroundColourId, 0x800000ff,
  124. Toolbar::labelTextColourId, 0xff000000,
  125. Toolbar::editingModeOutlineColourId, 0xffff0000,
  126. DrawableButton::textColourId, 0xff000000,
  127. DrawableButton::textColourOnId, 0xff000000,
  128. DrawableButton::backgroundColourId, 0x00000000,
  129. DrawableButton::backgroundOnColourId, 0xaabbbbff,
  130. HyperlinkButton::textColourId, 0xcc1111ee,
  131. GroupComponent::outlineColourId, 0x66000000,
  132. GroupComponent::textColourId, 0xff000000,
  133. BubbleComponent::backgroundColourId, 0xeeeeeebb,
  134. BubbleComponent::outlineColourId, 0x77000000,
  135. DirectoryContentsDisplayComponent::highlightColourId, textHighlightColour,
  136. DirectoryContentsDisplayComponent::textColourId, 0xff000000,
  137. 0x1000440, /*LassoComponent::lassoFillColourId*/ 0x66dddddd,
  138. 0x1000441, /*LassoComponent::lassoOutlineColourId*/ 0x99111111,
  139. 0x1005000, /*MidiKeyboardComponent::whiteNoteColourId*/ 0xffffffff,
  140. 0x1005001, /*MidiKeyboardComponent::blackNoteColourId*/ 0xff000000,
  141. 0x1005002, /*MidiKeyboardComponent::keySeparatorLineColourId*/ 0x66000000,
  142. 0x1005003, /*MidiKeyboardComponent::mouseOverKeyOverlayColourId*/ 0x80ffff00,
  143. 0x1005004, /*MidiKeyboardComponent::keyDownOverlayColourId*/ 0xffb6b600,
  144. 0x1005005, /*MidiKeyboardComponent::textLabelColourId*/ 0xff000000,
  145. 0x1005006, /*MidiKeyboardComponent::upDownButtonBackgroundColourId*/ 0xffd3d3d3,
  146. 0x1005007, /*MidiKeyboardComponent::upDownButtonArrowColourId*/ 0xff000000,
  147. 0x1005008, /*MidiKeyboardComponent::shadowColourId*/ 0x4c000000,
  148. 0x1004500, /*CodeEditorComponent::backgroundColourId*/ 0xffffffff,
  149. 0x1004502, /*CodeEditorComponent::highlightColourId*/ textHighlightColour,
  150. 0x1004503, /*CodeEditorComponent::defaultTextColourId*/ 0xff000000,
  151. 0x1004504, /*CodeEditorComponent::lineNumberBackgroundId*/ 0x44999999,
  152. 0x1004505, /*CodeEditorComponent::lineNumberTextId*/ 0x44000000,
  153. 0x1007000, /*ColourSelector::backgroundColourId*/ 0xffe5e5e5,
  154. 0x1007001, /*ColourSelector::labelTextColourId*/ 0xff000000,
  155. 0x100ad00, /*KeyMappingEditorComponent::backgroundColourId*/ 0x00000000,
  156. 0x100ad01, /*KeyMappingEditorComponent::textColourId*/ 0xff000000,
  157. FileSearchPathListComponent::backgroundColourId, 0xffffffff,
  158. FileChooserDialogBox::titleTextColourId, 0xff000000,
  159. };
  160. for (int i = 0; i < numElementsInArray (standardColours); i += 2)
  161. setColour ((int) standardColours [i], Colour ((uint32) standardColours [i + 1]));
  162. }
  163. LookAndFeel_V2::~LookAndFeel_V2() {}
  164. //==============================================================================
  165. void LookAndFeel_V2::drawButtonBackground (Graphics& g,
  166. Button& button,
  167. const Colour& backgroundColour,
  168. bool isMouseOverButton,
  169. bool isButtonDown)
  170. {
  171. const int width = button.getWidth();
  172. const int height = button.getHeight();
  173. const float outlineThickness = button.isEnabled() ? ((isButtonDown || isMouseOverButton) ? 1.2f : 0.7f) : 0.4f;
  174. const float halfThickness = outlineThickness * 0.5f;
  175. const float indentL = button.isConnectedOnLeft() ? 0.1f : halfThickness;
  176. const float indentR = button.isConnectedOnRight() ? 0.1f : halfThickness;
  177. const float indentT = button.isConnectedOnTop() ? 0.1f : halfThickness;
  178. const float indentB = button.isConnectedOnBottom() ? 0.1f : halfThickness;
  179. const Colour baseColour (LookAndFeelHelpers::createBaseColour (backgroundColour,
  180. button.hasKeyboardFocus (true),
  181. isMouseOverButton, isButtonDown)
  182. .withMultipliedAlpha (button.isEnabled() ? 1.0f : 0.5f));
  183. drawGlassLozenge (g,
  184. indentL,
  185. indentT,
  186. width - indentL - indentR,
  187. height - indentT - indentB,
  188. baseColour, outlineThickness, -1.0f,
  189. button.isConnectedOnLeft(),
  190. button.isConnectedOnRight(),
  191. button.isConnectedOnTop(),
  192. button.isConnectedOnBottom());
  193. }
  194. Font LookAndFeel_V2::getTextButtonFont (TextButton&, int buttonHeight)
  195. {
  196. return Font (jmin (15.0f, buttonHeight * 0.6f));
  197. }
  198. int LookAndFeel_V2::getTextButtonWidthToFitText (TextButton& b, int buttonHeight)
  199. {
  200. return getTextButtonFont (b, buttonHeight).getStringWidth (b.getButtonText()) + buttonHeight;
  201. }
  202. void LookAndFeel_V2::drawButtonText (Graphics& g, TextButton& button, bool /*isMouseOverButton*/, bool /*isButtonDown*/)
  203. {
  204. Font font (getTextButtonFont (button, button.getHeight()));
  205. g.setFont (font);
  206. g.setColour (button.findColour (button.getToggleState() ? TextButton::textColourOnId
  207. : TextButton::textColourOffId)
  208. .withMultipliedAlpha (button.isEnabled() ? 1.0f : 0.5f));
  209. const int yIndent = jmin (4, button.proportionOfHeight (0.3f));
  210. const int cornerSize = jmin (button.getHeight(), button.getWidth()) / 2;
  211. const int fontHeight = roundToInt (font.getHeight() * 0.6f);
  212. const int leftIndent = jmin (fontHeight, 2 + cornerSize / (button.isConnectedOnLeft() ? 4 : 2));
  213. const int rightIndent = jmin (fontHeight, 2 + cornerSize / (button.isConnectedOnRight() ? 4 : 2));
  214. const int textWidth = button.getWidth() - leftIndent - rightIndent;
  215. if (textWidth > 0)
  216. g.drawFittedText (button.getButtonText(),
  217. leftIndent, yIndent, textWidth, button.getHeight() - yIndent * 2,
  218. Justification::centred, 2);
  219. }
  220. void LookAndFeel_V2::drawTickBox (Graphics& g, Component& component,
  221. float x, float y, float w, float h,
  222. const bool ticked,
  223. const bool isEnabled,
  224. const bool isMouseOverButton,
  225. const bool isButtonDown)
  226. {
  227. const float boxSize = w * 0.7f;
  228. drawGlassSphere (g, x, y + (h - boxSize) * 0.5f, boxSize,
  229. LookAndFeelHelpers::createBaseColour (component.findColour (TextButton::buttonColourId)
  230. .withMultipliedAlpha (isEnabled ? 1.0f : 0.5f),
  231. true, isMouseOverButton, isButtonDown),
  232. isEnabled ? ((isButtonDown || isMouseOverButton) ? 1.1f : 0.5f) : 0.3f);
  233. if (ticked)
  234. {
  235. Path tick;
  236. tick.startNewSubPath (1.5f, 3.0f);
  237. tick.lineTo (3.0f, 6.0f);
  238. tick.lineTo (6.0f, 0.0f);
  239. g.setColour (component.findColour (isEnabled ? ToggleButton::tickColourId
  240. : ToggleButton::tickDisabledColourId));
  241. const AffineTransform trans (AffineTransform::scale (w / 9.0f, h / 9.0f)
  242. .translated (x, y));
  243. g.strokePath (tick, PathStrokeType (2.5f), trans);
  244. }
  245. }
  246. void LookAndFeel_V2::drawToggleButton (Graphics& g, ToggleButton& button,
  247. bool isMouseOverButton, bool isButtonDown)
  248. {
  249. if (button.hasKeyboardFocus (true))
  250. {
  251. g.setColour (button.findColour (TextEditor::focusedOutlineColourId));
  252. g.drawRect (0, 0, button.getWidth(), button.getHeight());
  253. }
  254. float fontSize = jmin (15.0f, button.getHeight() * 0.75f);
  255. const float tickWidth = fontSize * 1.1f;
  256. drawTickBox (g, button, 4.0f, (button.getHeight() - tickWidth) * 0.5f,
  257. tickWidth, tickWidth,
  258. button.getToggleState(),
  259. button.isEnabled(),
  260. isMouseOverButton,
  261. isButtonDown);
  262. g.setColour (button.findColour (ToggleButton::textColourId));
  263. g.setFont (fontSize);
  264. if (! button.isEnabled())
  265. g.setOpacity (0.5f);
  266. const int textX = (int) tickWidth + 5;
  267. g.drawFittedText (button.getButtonText(),
  268. textX, 0,
  269. button.getWidth() - textX - 2, button.getHeight(),
  270. Justification::centredLeft, 10);
  271. }
  272. void LookAndFeel_V2::changeToggleButtonWidthToFitText (ToggleButton& button)
  273. {
  274. Font font (jmin (15.0f, button.getHeight() * 0.6f));
  275. const int tickWidth = jmin (24, button.getHeight());
  276. button.setSize (font.getStringWidth (button.getButtonText()) + tickWidth + 8,
  277. button.getHeight());
  278. }
  279. void LookAndFeel_V2::drawDrawableButton (Graphics& g, DrawableButton& button,
  280. bool /*isMouseOverButton*/, bool /*isButtonDown*/)
  281. {
  282. bool toggleState = button.getToggleState();
  283. g.fillAll (button.findColour (toggleState ? DrawableButton::backgroundOnColourId
  284. : DrawableButton::backgroundColourId));
  285. const int textH = (button.getStyle() == DrawableButton::ImageAboveTextLabel)
  286. ? jmin (16, button.proportionOfHeight (0.25f))
  287. : 0;
  288. if (textH > 0)
  289. {
  290. g.setFont ((float) textH);
  291. g.setColour (button.findColour (toggleState ? DrawableButton::textColourOnId
  292. : DrawableButton::textColourId)
  293. .withMultipliedAlpha (button.isEnabled() ? 1.0f : 0.4f));
  294. g.drawFittedText (button.getButtonText(),
  295. 2, button.getHeight() - textH - 1,
  296. button.getWidth() - 4, textH,
  297. Justification::centred, 1);
  298. }
  299. }
  300. //==============================================================================
  301. AlertWindow* LookAndFeel_V2::createAlertWindow (const String& title, const String& message,
  302. const String& button1, const String& button2, const String& button3,
  303. AlertWindow::AlertIconType iconType,
  304. int numButtons, Component* associatedComponent)
  305. {
  306. AlertWindow* aw = new AlertWindow (title, message, iconType, associatedComponent);
  307. if (numButtons == 1)
  308. {
  309. aw->addButton (button1, 0,
  310. KeyPress (KeyPress::escapeKey),
  311. KeyPress (KeyPress::returnKey));
  312. }
  313. else
  314. {
  315. const KeyPress button1ShortCut ((int) CharacterFunctions::toLowerCase (button1[0]), 0, 0);
  316. KeyPress button2ShortCut ((int) CharacterFunctions::toLowerCase (button2[0]), 0, 0);
  317. if (button1ShortCut == button2ShortCut)
  318. button2ShortCut = KeyPress();
  319. if (numButtons == 2)
  320. {
  321. aw->addButton (button1, 1, KeyPress (KeyPress::returnKey), button1ShortCut);
  322. aw->addButton (button2, 0, KeyPress (KeyPress::escapeKey), button2ShortCut);
  323. }
  324. else if (numButtons == 3)
  325. {
  326. aw->addButton (button1, 1, button1ShortCut);
  327. aw->addButton (button2, 2, button2ShortCut);
  328. aw->addButton (button3, 0, KeyPress (KeyPress::escapeKey));
  329. }
  330. }
  331. return aw;
  332. }
  333. void LookAndFeel_V2::drawAlertBox (Graphics& g, AlertWindow& alert,
  334. const Rectangle<int>& textArea, TextLayout& textLayout)
  335. {
  336. g.fillAll (alert.findColour (AlertWindow::backgroundColourId));
  337. int iconSpaceUsed = 0;
  338. const int iconWidth = 80;
  339. int iconSize = jmin (iconWidth + 50, alert.getHeight() + 20);
  340. if (alert.containsAnyExtraComponents() || alert.getNumButtons() > 2)
  341. iconSize = jmin (iconSize, textArea.getHeight() + 50);
  342. const Rectangle<int> iconRect (iconSize / -10, iconSize / -10,
  343. iconSize, iconSize);
  344. if (alert.getAlertType() != AlertWindow::NoIcon)
  345. {
  346. Path icon;
  347. uint32 colour;
  348. char character;
  349. if (alert.getAlertType() == AlertWindow::WarningIcon)
  350. {
  351. colour = 0x55ff5555;
  352. character = '!';
  353. icon.addTriangle (iconRect.getX() + iconRect.getWidth() * 0.5f, (float) iconRect.getY(),
  354. (float) iconRect.getRight(), (float) iconRect.getBottom(),
  355. (float) iconRect.getX(), (float) iconRect.getBottom());
  356. icon = icon.createPathWithRoundedCorners (5.0f);
  357. }
  358. else
  359. {
  360. colour = alert.getAlertType() == AlertWindow::InfoIcon ? (uint32) 0x605555ff : (uint32) 0x40b69900;
  361. character = alert.getAlertType() == AlertWindow::InfoIcon ? 'i' : '?';
  362. icon.addEllipse (iconRect.toFloat());
  363. }
  364. GlyphArrangement ga;
  365. ga.addFittedText (Font (iconRect.getHeight() * 0.9f, Font::bold),
  366. String::charToString ((juce_wchar) (uint8) character),
  367. (float) iconRect.getX(), (float) iconRect.getY(),
  368. (float) iconRect.getWidth(), (float) iconRect.getHeight(),
  369. Justification::centred, false);
  370. ga.createPath (icon);
  371. icon.setUsingNonZeroWinding (false);
  372. g.setColour (Colour (colour));
  373. g.fillPath (icon);
  374. iconSpaceUsed = iconWidth;
  375. }
  376. g.setColour (alert.findColour (AlertWindow::textColourId));
  377. textLayout.draw (g, Rectangle<int> (textArea.getX() + iconSpaceUsed,
  378. textArea.getY(),
  379. textArea.getWidth() - iconSpaceUsed,
  380. textArea.getHeight()).toFloat());
  381. g.setColour (alert.findColour (AlertWindow::outlineColourId));
  382. g.drawRect (0, 0, alert.getWidth(), alert.getHeight());
  383. }
  384. int LookAndFeel_V2::getAlertBoxWindowFlags()
  385. {
  386. return ComponentPeer::windowAppearsOnTaskbar
  387. | ComponentPeer::windowHasDropShadow;
  388. }
  389. Array<int> LookAndFeel_V2::getWidthsForTextButtons (AlertWindow&, const Array<TextButton*>& buttons)
  390. {
  391. const int n = buttons.size();
  392. Array<int> buttonWidths;
  393. const int buttonHeight = getAlertWindowButtonHeight();
  394. for (int i = 0; i < n; ++i)
  395. buttonWidths.add (getTextButtonWidthToFitText (*buttons.getReference (i), buttonHeight));
  396. return buttonWidths;
  397. }
  398. int LookAndFeel_V2::getAlertWindowButtonHeight()
  399. {
  400. return 28;
  401. }
  402. Font LookAndFeel_V2::getAlertWindowTitleFont()
  403. {
  404. Font messageFont = getAlertWindowMessageFont();
  405. return messageFont.withHeight (messageFont.getHeight() * 1.1f).boldened();
  406. }
  407. Font LookAndFeel_V2::getAlertWindowMessageFont()
  408. {
  409. return Font (15.0f);
  410. }
  411. Font LookAndFeel_V2::getAlertWindowFont()
  412. {
  413. return Font (12.0f);
  414. }
  415. //==============================================================================
  416. void LookAndFeel_V2::drawProgressBar (Graphics& g, ProgressBar& progressBar,
  417. int width, int height,
  418. double progress, const String& textToShow)
  419. {
  420. const Colour background (progressBar.findColour (ProgressBar::backgroundColourId));
  421. const Colour foreground (progressBar.findColour (ProgressBar::foregroundColourId));
  422. g.fillAll (background);
  423. if (progress >= 0.0f && progress < 1.0f)
  424. {
  425. drawGlassLozenge (g, 1.0f, 1.0f,
  426. (float) jlimit (0.0, width - 2.0, progress * (width - 2.0)),
  427. (float) (height - 2),
  428. foreground,
  429. 0.5f, 0.0f,
  430. true, true, true, true);
  431. }
  432. else
  433. {
  434. // spinning bar..
  435. g.setColour (foreground);
  436. const int stripeWidth = height * 2;
  437. const int position = (int) (Time::getMillisecondCounter() / 15) % stripeWidth;
  438. Path p;
  439. for (float x = (float) (- position); x < width + stripeWidth; x += stripeWidth)
  440. p.addQuadrilateral (x, 0.0f,
  441. x + stripeWidth * 0.5f, 0.0f,
  442. x, (float) height,
  443. x - stripeWidth * 0.5f, (float) height);
  444. Image im (Image::ARGB, width, height, true);
  445. {
  446. Graphics g2 (im);
  447. drawGlassLozenge (g2, 1.0f, 1.0f,
  448. (float) (width - 2),
  449. (float) (height - 2),
  450. foreground,
  451. 0.5f, 0.0f,
  452. true, true, true, true);
  453. }
  454. g.setTiledImageFill (im, 0, 0, 0.85f);
  455. g.fillPath (p);
  456. }
  457. if (textToShow.isNotEmpty())
  458. {
  459. g.setColour (Colour::contrasting (background, foreground));
  460. g.setFont (height * 0.6f);
  461. g.drawText (textToShow, 0, 0, width, height, Justification::centred, false);
  462. }
  463. }
  464. void LookAndFeel_V2::drawSpinningWaitAnimation (Graphics& g, const Colour& colour, int x, int y, int w, int h)
  465. {
  466. const float radius = jmin (w, h) * 0.4f;
  467. const float thickness = radius * 0.15f;
  468. Path p;
  469. p.addRoundedRectangle (radius * 0.4f, thickness * -0.5f,
  470. radius * 0.6f, thickness,
  471. thickness * 0.5f);
  472. const float cx = x + w * 0.5f;
  473. const float cy = y + h * 0.5f;
  474. const uint32 animationIndex = (Time::getMillisecondCounter() / (1000 / 10)) % 12;
  475. for (uint32 i = 0; i < 12; ++i)
  476. {
  477. const uint32 n = (i + 12 - animationIndex) % 12;
  478. g.setColour (colour.withMultipliedAlpha ((n + 1) / 12.0f));
  479. g.fillPath (p, AffineTransform::rotation (i * (float_Pi / 6.0f))
  480. .translated (cx, cy));
  481. }
  482. }
  483. bool LookAndFeel_V2::areScrollbarButtonsVisible()
  484. {
  485. return true;
  486. }
  487. void LookAndFeel_V2::drawScrollbarButton (Graphics& g, ScrollBar& scrollbar,
  488. int width, int height, int buttonDirection,
  489. bool /*isScrollbarVertical*/,
  490. bool /*isMouseOverButton*/,
  491. bool isButtonDown)
  492. {
  493. Path p;
  494. if (buttonDirection == 0)
  495. p.addTriangle (width * 0.5f, height * 0.2f,
  496. width * 0.1f, height * 0.7f,
  497. width * 0.9f, height * 0.7f);
  498. else if (buttonDirection == 1)
  499. p.addTriangle (width * 0.8f, height * 0.5f,
  500. width * 0.3f, height * 0.1f,
  501. width * 0.3f, height * 0.9f);
  502. else if (buttonDirection == 2)
  503. p.addTriangle (width * 0.5f, height * 0.8f,
  504. width * 0.1f, height * 0.3f,
  505. width * 0.9f, height * 0.3f);
  506. else if (buttonDirection == 3)
  507. p.addTriangle (width * 0.2f, height * 0.5f,
  508. width * 0.7f, height * 0.1f,
  509. width * 0.7f, height * 0.9f);
  510. if (isButtonDown)
  511. g.setColour (scrollbar.findColour (ScrollBar::thumbColourId).contrasting (0.2f));
  512. else
  513. g.setColour (scrollbar.findColour (ScrollBar::thumbColourId));
  514. g.fillPath (p);
  515. g.setColour (Colour (0x80000000));
  516. g.strokePath (p, PathStrokeType (0.5f));
  517. }
  518. void LookAndFeel_V2::drawScrollbar (Graphics& g,
  519. ScrollBar& scrollbar,
  520. int x, int y,
  521. int width, int height,
  522. bool isScrollbarVertical,
  523. int thumbStartPosition,
  524. int thumbSize,
  525. bool /*isMouseOver*/,
  526. bool /*isMouseDown*/)
  527. {
  528. g.fillAll (scrollbar.findColour (ScrollBar::backgroundColourId));
  529. Path slotPath, thumbPath;
  530. const float slotIndent = jmin (width, height) > 15 ? 1.0f : 0.0f;
  531. const float slotIndentx2 = slotIndent * 2.0f;
  532. const float thumbIndent = slotIndent + 1.0f;
  533. const float thumbIndentx2 = thumbIndent * 2.0f;
  534. float gx1 = 0.0f, gy1 = 0.0f, gx2 = 0.0f, gy2 = 0.0f;
  535. if (isScrollbarVertical)
  536. {
  537. slotPath.addRoundedRectangle (x + slotIndent,
  538. y + slotIndent,
  539. width - slotIndentx2,
  540. height - slotIndentx2,
  541. (width - slotIndentx2) * 0.5f);
  542. if (thumbSize > 0)
  543. thumbPath.addRoundedRectangle (x + thumbIndent,
  544. thumbStartPosition + thumbIndent,
  545. width - thumbIndentx2,
  546. thumbSize - thumbIndentx2,
  547. (width - thumbIndentx2) * 0.5f);
  548. gx1 = (float) x;
  549. gx2 = x + width * 0.7f;
  550. }
  551. else
  552. {
  553. slotPath.addRoundedRectangle (x + slotIndent,
  554. y + slotIndent,
  555. width - slotIndentx2,
  556. height - slotIndentx2,
  557. (height - slotIndentx2) * 0.5f);
  558. if (thumbSize > 0)
  559. thumbPath.addRoundedRectangle (thumbStartPosition + thumbIndent,
  560. y + thumbIndent,
  561. thumbSize - thumbIndentx2,
  562. height - thumbIndentx2,
  563. (height - thumbIndentx2) * 0.5f);
  564. gy1 = (float) y;
  565. gy2 = y + height * 0.7f;
  566. }
  567. const Colour thumbColour (scrollbar.findColour (ScrollBar::thumbColourId));
  568. Colour trackColour1, trackColour2;
  569. if (scrollbar.isColourSpecified (ScrollBar::trackColourId)
  570. || isColourSpecified (ScrollBar::trackColourId))
  571. {
  572. trackColour1 = trackColour2 = scrollbar.findColour (ScrollBar::trackColourId);
  573. }
  574. else
  575. {
  576. trackColour1 = thumbColour.overlaidWith (Colour (0x44000000));
  577. trackColour2 = thumbColour.overlaidWith (Colour (0x19000000));
  578. }
  579. g.setGradientFill (ColourGradient (trackColour1, gx1, gy1,
  580. trackColour2, gx2, gy2, false));
  581. g.fillPath (slotPath);
  582. if (isScrollbarVertical)
  583. {
  584. gx1 = x + width * 0.6f;
  585. gx2 = (float) x + width;
  586. }
  587. else
  588. {
  589. gy1 = y + height * 0.6f;
  590. gy2 = (float) y + height;
  591. }
  592. g.setGradientFill (ColourGradient (Colours::transparentBlack,gx1, gy1,
  593. Colour (0x19000000), gx2, gy2, false));
  594. g.fillPath (slotPath);
  595. g.setColour (thumbColour);
  596. g.fillPath (thumbPath);
  597. g.setGradientFill (ColourGradient (Colour (0x10000000), gx1, gy1,
  598. Colours::transparentBlack, gx2, gy2, false));
  599. g.saveState();
  600. if (isScrollbarVertical)
  601. g.reduceClipRegion (x + width / 2, y, width, height);
  602. else
  603. g.reduceClipRegion (x, y + height / 2, width, height);
  604. g.fillPath (thumbPath);
  605. g.restoreState();
  606. g.setColour (Colour (0x4c000000));
  607. g.strokePath (thumbPath, PathStrokeType (0.4f));
  608. }
  609. ImageEffectFilter* LookAndFeel_V2::getScrollbarEffect()
  610. {
  611. return nullptr;
  612. }
  613. int LookAndFeel_V2::getMinimumScrollbarThumbSize (ScrollBar& scrollbar)
  614. {
  615. return jmin (scrollbar.getWidth(), scrollbar.getHeight()) * 2;
  616. }
  617. int LookAndFeel_V2::getDefaultScrollbarWidth()
  618. {
  619. return 18;
  620. }
  621. int LookAndFeel_V2::getScrollbarButtonSize (ScrollBar& scrollbar)
  622. {
  623. return 2 + (scrollbar.isVertical() ? scrollbar.getWidth()
  624. : scrollbar.getHeight());
  625. }
  626. //==============================================================================
  627. Path LookAndFeel_V2::getTickShape (const float height)
  628. {
  629. static const unsigned char tickShapeData[] =
  630. {
  631. 109,0,224,168,68,0,0,119,67,108,0,224,172,68,0,128,146,67,113,0,192,148,68,0,0,219,67,0,96,110,68,0,224,56,68,113,0,64,51,68,0,32,130,68,0,64,20,68,0,224,
  632. 162,68,108,0,128,3,68,0,128,168,68,113,0,128,221,67,0,192,175,68,0,0,207,67,0,32,179,68,113,0,0,201,67,0,224,173,68,0,0,181,67,0,224,161,68,108,0,128,168,67,
  633. 0,128,154,68,113,0,128,141,67,0,192,138,68,0,128,108,67,0,64,131,68,113,0,0,62,67,0,128,119,68,0,0,5,67,0,128,114,68,113,0,0,102,67,0,192,88,68,0,128,155,
  634. 67,0,192,88,68,113,0,0,190,67,0,192,88,68,0,128,232,67,0,224,131,68,108,0,128,246,67,0,192,139,68,113,0,64,33,68,0,128,87,68,0,0,93,68,0,224,26,68,113,0,
  635. 96,140,68,0,128,188,67,0,224,168,68,0,0,119,67,99,101
  636. };
  637. Path p;
  638. p.loadPathFromData (tickShapeData, sizeof (tickShapeData));
  639. p.scaleToFit (0, 0, height * 2.0f, height, true);
  640. return p;
  641. }
  642. Path LookAndFeel_V2::getCrossShape (const float height)
  643. {
  644. static const unsigned char crossShapeData[] =
  645. {
  646. 109,0,0,17,68,0,96,145,68,108,0,192,13,68,0,192,147,68,113,0,0,213,67,0,64,174,68,0,0,168,67,0,64,174,68,113,0,0,104,67,0,64,174,68,0,0,5,67,0,64,
  647. 153,68,113,0,0,18,67,0,64,153,68,0,0,24,67,0,64,153,68,113,0,0,135,67,0,64,153,68,0,128,207,67,0,224,130,68,108,0,0,220,67,0,0,126,68,108,0,0,204,67,
  648. 0,128,117,68,113,0,0,138,67,0,64,82,68,0,0,138,67,0,192,57,68,113,0,0,138,67,0,192,37,68,0,128,210,67,0,64,10,68,113,0,128,220,67,0,64,45,68,0,0,8,
  649. 68,0,128,78,68,108,0,192,14,68,0,0,87,68,108,0,64,20,68,0,0,80,68,113,0,192,57,68,0,0,32,68,0,128,88,68,0,0,32,68,113,0,64,112,68,0,0,32,68,0,
  650. 128,124,68,0,64,68,68,113,0,0,121,68,0,192,67,68,0,128,119,68,0,192,67,68,113,0,192,108,68,0,192,67,68,0,32,89,68,0,96,82,68,113,0,128,69,68,0,0,97,68,
  651. 0,0,56,68,0,64,115,68,108,0,64,49,68,0,128,124,68,108,0,192,55,68,0,96,129,68,113,0,0,92,68,0,224,146,68,0,192,129,68,0,224,146,68,113,0,64,110,68,0,64,
  652. 168,68,0,64,87,68,0,64,168,68,113,0,128,66,68,0,64,168,68,0,64,27,68,0,32,150,68,99,101
  653. };
  654. Path p;
  655. p.loadPathFromData (crossShapeData, sizeof (crossShapeData));
  656. p.scaleToFit (0, 0, height * 2.0f, height, true);
  657. return p;
  658. }
  659. //==============================================================================
  660. void LookAndFeel_V2::drawTreeviewPlusMinusBox (Graphics& g, const Rectangle<float>& area,
  661. Colour /*backgroundColour*/, bool isOpen, bool /*isMouseOver*/)
  662. {
  663. const int boxSize = roundToInt (jmin (16.0f, area.getWidth(), area.getHeight()) * 0.7f) | 1;
  664. const int x = ((int) area.getWidth() - boxSize) / 2 + (int) area.getX();
  665. const int y = ((int) area.getHeight() - boxSize) / 2 + (int) area.getY();
  666. const int w = boxSize;
  667. const int h = boxSize;
  668. g.setColour (Colour (0xe5ffffff));
  669. g.fillRect (x, y, w, h);
  670. g.setColour (Colour (0x80000000));
  671. g.drawRect (x, y, w, h);
  672. const float size = boxSize / 2 + 1.0f;
  673. const float centre = (float) (boxSize / 2);
  674. g.fillRect (x + (w - size) * 0.5f, y + centre, size, 1.0f);
  675. if (! isOpen)
  676. g.fillRect (x + centre, y + (h - size) * 0.5f, 1.0f, size);
  677. }
  678. bool LookAndFeel_V2::areLinesDrawnForTreeView (TreeView&)
  679. {
  680. return true;
  681. }
  682. int LookAndFeel_V2::getTreeViewIndentSize (TreeView&)
  683. {
  684. return 24;
  685. }
  686. //==============================================================================
  687. void LookAndFeel_V2::drawBubble (Graphics& g, BubbleComponent& comp,
  688. const Point<float>& tip, const Rectangle<float>& body)
  689. {
  690. Path p;
  691. p.addBubble (body.reduced (0.5f), body.getUnion (Rectangle<float> (tip.x, tip.y, 1.0f, 1.0f)),
  692. tip, 5.0f, jmin (15.0f, body.getWidth() * 0.2f, body.getHeight() * 0.2f));
  693. g.setColour (comp.findColour (BubbleComponent::backgroundColourId));
  694. g.fillPath (p);
  695. g.setColour (comp.findColour (BubbleComponent::outlineColourId));
  696. g.strokePath (p, PathStrokeType (1.0f));
  697. }
  698. //==============================================================================
  699. Font LookAndFeel_V2::getPopupMenuFont()
  700. {
  701. return Font (17.0f);
  702. }
  703. void LookAndFeel_V2::getIdealPopupMenuItemSize (const String& text, const bool isSeparator,
  704. int standardMenuItemHeight, int& idealWidth, int& idealHeight)
  705. {
  706. if (isSeparator)
  707. {
  708. idealWidth = 50;
  709. idealHeight = standardMenuItemHeight > 0 ? standardMenuItemHeight / 2 : 10;
  710. }
  711. else
  712. {
  713. Font font (getPopupMenuFont());
  714. if (standardMenuItemHeight > 0 && font.getHeight() > standardMenuItemHeight / 1.3f)
  715. font.setHeight (standardMenuItemHeight / 1.3f);
  716. idealHeight = standardMenuItemHeight > 0 ? standardMenuItemHeight : roundToInt (font.getHeight() * 1.3f);
  717. idealWidth = font.getStringWidth (text) + idealHeight * 2;
  718. }
  719. }
  720. void LookAndFeel_V2::drawPopupMenuBackground (Graphics& g, int width, int height)
  721. {
  722. const Colour background (findColour (PopupMenu::backgroundColourId));
  723. g.fillAll (background);
  724. g.setColour (background.overlaidWith (Colour (0x2badd8e6)));
  725. for (int i = 0; i < height; i += 3)
  726. g.fillRect (0, i, width, 1);
  727. #if ! JUCE_MAC
  728. g.setColour (findColour (PopupMenu::textColourId).withAlpha (0.6f));
  729. g.drawRect (0, 0, width, height);
  730. #endif
  731. }
  732. void LookAndFeel_V2::drawPopupMenuUpDownArrow (Graphics& g, int width, int height, bool isScrollUpArrow)
  733. {
  734. const Colour background (findColour (PopupMenu::backgroundColourId));
  735. g.setGradientFill (ColourGradient (background, 0.0f, height * 0.5f,
  736. background.withAlpha (0.0f),
  737. 0.0f, isScrollUpArrow ? ((float) height) : 0.0f,
  738. false));
  739. g.fillRect (1, 1, width - 2, height - 2);
  740. const float hw = width * 0.5f;
  741. const float arrowW = height * 0.3f;
  742. const float y1 = height * (isScrollUpArrow ? 0.6f : 0.3f);
  743. const float y2 = height * (isScrollUpArrow ? 0.3f : 0.6f);
  744. Path p;
  745. p.addTriangle (hw - arrowW, y1,
  746. hw + arrowW, y1,
  747. hw, y2);
  748. g.setColour (findColour (PopupMenu::textColourId).withAlpha (0.5f));
  749. g.fillPath (p);
  750. }
  751. void LookAndFeel_V2::drawPopupMenuItem (Graphics& g, const Rectangle<int>& area,
  752. const bool isSeparator, const bool isActive,
  753. const bool isHighlighted, const bool isTicked,
  754. const bool hasSubMenu, const String& text,
  755. const String& shortcutKeyText,
  756. const Drawable* icon, const Colour* const textColourToUse)
  757. {
  758. if (isSeparator)
  759. {
  760. Rectangle<int> r (area.reduced (5, 0));
  761. r.removeFromTop (r.getHeight() / 2 - 1);
  762. g.setColour (Colour (0x33000000));
  763. g.fillRect (r.removeFromTop (1));
  764. g.setColour (Colour (0x66ffffff));
  765. g.fillRect (r.removeFromTop (1));
  766. }
  767. else
  768. {
  769. Colour textColour (findColour (PopupMenu::textColourId));
  770. if (textColourToUse != nullptr)
  771. textColour = *textColourToUse;
  772. Rectangle<int> r (area.reduced (1));
  773. if (isHighlighted)
  774. {
  775. g.setColour (findColour (PopupMenu::highlightedBackgroundColourId));
  776. g.fillRect (r);
  777. g.setColour (findColour (PopupMenu::highlightedTextColourId));
  778. }
  779. else
  780. {
  781. g.setColour (textColour);
  782. }
  783. if (! isActive)
  784. g.setOpacity (0.3f);
  785. Font font (getPopupMenuFont());
  786. const float maxFontHeight = area.getHeight() / 1.3f;
  787. if (font.getHeight() > maxFontHeight)
  788. font.setHeight (maxFontHeight);
  789. g.setFont (font);
  790. Rectangle<float> iconArea (r.removeFromLeft ((r.getHeight() * 5) / 4).reduced (3).toFloat());
  791. if (icon != nullptr)
  792. {
  793. icon->drawWithin (g, iconArea, RectanglePlacement::centred | RectanglePlacement::onlyReduceInSize, 1.0f);
  794. }
  795. else if (isTicked)
  796. {
  797. const Path tick (getTickShape (1.0f));
  798. g.fillPath (tick, tick.getTransformToScaleToFit (iconArea, true));
  799. }
  800. if (hasSubMenu)
  801. {
  802. const float arrowH = 0.6f * getPopupMenuFont().getAscent();
  803. const float x = (float) r.removeFromRight ((int) arrowH).getX();
  804. const float halfH = (float) r.getCentreY();
  805. Path p;
  806. p.addTriangle (x, halfH - arrowH * 0.5f,
  807. x, halfH + arrowH * 0.5f,
  808. x + arrowH * 0.6f, halfH);
  809. g.fillPath (p);
  810. }
  811. r.removeFromRight (3);
  812. g.drawFittedText (text, r, Justification::centredLeft, 1);
  813. if (shortcutKeyText.isNotEmpty())
  814. {
  815. Font f2 (font);
  816. f2.setHeight (f2.getHeight() * 0.75f);
  817. f2.setHorizontalScale (0.95f);
  818. g.setFont (f2);
  819. g.drawText (shortcutKeyText, r, Justification::centredRight, true);
  820. }
  821. }
  822. }
  823. void LookAndFeel_V2::drawPopupMenuSectionHeader (Graphics& g, const Rectangle<int>& area, const String& sectionName)
  824. {
  825. g.setFont (getPopupMenuFont().boldened());
  826. g.setColour (findColour (PopupMenu::headerTextColourId));
  827. g.drawFittedText (sectionName,
  828. area.getX() + 12, area.getY(), area.getWidth() - 16, (int) (area.getHeight() * 0.8f),
  829. Justification::bottomLeft, 1);
  830. }
  831. //==============================================================================
  832. int LookAndFeel_V2::getMenuWindowFlags()
  833. {
  834. return ComponentPeer::windowHasDropShadow;
  835. }
  836. void LookAndFeel_V2::drawMenuBarBackground (Graphics& g, int width, int height, bool, MenuBarComponent& menuBar)
  837. {
  838. const Colour baseColour (LookAndFeelHelpers::createBaseColour (menuBar.findColour (PopupMenu::backgroundColourId),
  839. false, false, false));
  840. if (menuBar.isEnabled())
  841. drawShinyButtonShape (g, -4.0f, 0.0f, width + 8.0f, (float) height,
  842. 0.0f, baseColour, 0.4f, true, true, true, true);
  843. else
  844. g.fillAll (baseColour);
  845. }
  846. Font LookAndFeel_V2::getMenuBarFont (MenuBarComponent& menuBar, int /*itemIndex*/, const String& /*itemText*/)
  847. {
  848. return Font (menuBar.getHeight() * 0.7f);
  849. }
  850. int LookAndFeel_V2::getMenuBarItemWidth (MenuBarComponent& menuBar, int itemIndex, const String& itemText)
  851. {
  852. return getMenuBarFont (menuBar, itemIndex, itemText)
  853. .getStringWidth (itemText) + menuBar.getHeight();
  854. }
  855. void LookAndFeel_V2::drawMenuBarItem (Graphics& g, int width, int height,
  856. int itemIndex, const String& itemText,
  857. bool isMouseOverItem, bool isMenuOpen,
  858. bool /*isMouseOverBar*/, MenuBarComponent& menuBar)
  859. {
  860. if (! menuBar.isEnabled())
  861. {
  862. g.setColour (menuBar.findColour (PopupMenu::textColourId)
  863. .withMultipliedAlpha (0.5f));
  864. }
  865. else if (isMenuOpen || isMouseOverItem)
  866. {
  867. g.fillAll (menuBar.findColour (PopupMenu::highlightedBackgroundColourId));
  868. g.setColour (menuBar.findColour (PopupMenu::highlightedTextColourId));
  869. }
  870. else
  871. {
  872. g.setColour (menuBar.findColour (PopupMenu::textColourId));
  873. }
  874. g.setFont (getMenuBarFont (menuBar, itemIndex, itemText));
  875. g.drawFittedText (itemText, 0, 0, width, height, Justification::centred, 1);
  876. }
  877. Component* LookAndFeel_V2::getParentComponentForMenuOptions (const PopupMenu::Options& options)
  878. {
  879. return options.getParentComponent();
  880. }
  881. void LookAndFeel_V2::preparePopupMenuWindow (Component&) {}
  882. //==============================================================================
  883. void LookAndFeel_V2::fillTextEditorBackground (Graphics& g, int /*width*/, int /*height*/, TextEditor& textEditor)
  884. {
  885. g.fillAll (textEditor.findColour (TextEditor::backgroundColourId));
  886. }
  887. void LookAndFeel_V2::drawTextEditorOutline (Graphics& g, int width, int height, TextEditor& textEditor)
  888. {
  889. if (textEditor.isEnabled())
  890. {
  891. if (textEditor.hasKeyboardFocus (true) && ! textEditor.isReadOnly())
  892. {
  893. const int border = 2;
  894. g.setColour (textEditor.findColour (TextEditor::focusedOutlineColourId));
  895. g.drawRect (0, 0, width, height, border);
  896. g.setOpacity (1.0f);
  897. const Colour shadowColour (textEditor.findColour (TextEditor::shadowColourId).withMultipliedAlpha (0.75f));
  898. drawBevel (g, 0, 0, width, height + 2, border + 2, shadowColour, shadowColour);
  899. }
  900. else
  901. {
  902. g.setColour (textEditor.findColour (TextEditor::outlineColourId));
  903. g.drawRect (0, 0, width, height);
  904. g.setOpacity (1.0f);
  905. const Colour shadowColour (textEditor.findColour (TextEditor::shadowColourId));
  906. drawBevel (g, 0, 0, width, height + 2, 3, shadowColour, shadowColour);
  907. }
  908. }
  909. }
  910. CaretComponent* LookAndFeel_V2::createCaretComponent (Component* keyFocusOwner)
  911. {
  912. return new CaretComponent (keyFocusOwner);
  913. }
  914. //==============================================================================
  915. void LookAndFeel_V2::drawComboBox (Graphics& g, int width, int height, const bool isButtonDown,
  916. int buttonX, int buttonY, int buttonW, int buttonH, ComboBox& box)
  917. {
  918. g.fillAll (box.findColour (ComboBox::backgroundColourId));
  919. if (box.isEnabled() && box.hasKeyboardFocus (false))
  920. {
  921. g.setColour (box.findColour (ComboBox::buttonColourId));
  922. g.drawRect (0, 0, width, height, 2);
  923. }
  924. else
  925. {
  926. g.setColour (box.findColour (ComboBox::outlineColourId));
  927. g.drawRect (0, 0, width, height);
  928. }
  929. const float outlineThickness = box.isEnabled() ? (isButtonDown ? 1.2f : 0.5f) : 0.3f;
  930. const Colour baseColour (LookAndFeelHelpers::createBaseColour (box.findColour (ComboBox::buttonColourId),
  931. box.hasKeyboardFocus (true),
  932. false, isButtonDown)
  933. .withMultipliedAlpha (box.isEnabled() ? 1.0f : 0.5f));
  934. drawGlassLozenge (g,
  935. buttonX + outlineThickness, buttonY + outlineThickness,
  936. buttonW - outlineThickness * 2.0f, buttonH - outlineThickness * 2.0f,
  937. baseColour, outlineThickness, -1.0f,
  938. true, true, true, true);
  939. if (box.isEnabled())
  940. {
  941. const float arrowX = 0.3f;
  942. const float arrowH = 0.2f;
  943. Path p;
  944. p.addTriangle (buttonX + buttonW * 0.5f, buttonY + buttonH * (0.45f - arrowH),
  945. buttonX + buttonW * (1.0f - arrowX), buttonY + buttonH * 0.45f,
  946. buttonX + buttonW * arrowX, buttonY + buttonH * 0.45f);
  947. p.addTriangle (buttonX + buttonW * 0.5f, buttonY + buttonH * (0.55f + arrowH),
  948. buttonX + buttonW * (1.0f - arrowX), buttonY + buttonH * 0.55f,
  949. buttonX + buttonW * arrowX, buttonY + buttonH * 0.55f);
  950. g.setColour (box.findColour (ComboBox::arrowColourId));
  951. g.fillPath (p);
  952. }
  953. }
  954. Font LookAndFeel_V2::getComboBoxFont (ComboBox& box)
  955. {
  956. return Font (jmin (15.0f, box.getHeight() * 0.85f));
  957. }
  958. Label* LookAndFeel_V2::createComboBoxTextBox (ComboBox&)
  959. {
  960. return new Label (String(), String());
  961. }
  962. void LookAndFeel_V2::positionComboBoxText (ComboBox& box, Label& label)
  963. {
  964. label.setBounds (1, 1,
  965. box.getWidth() + 3 - box.getHeight(),
  966. box.getHeight() - 2);
  967. label.setFont (getComboBoxFont (box));
  968. }
  969. //==============================================================================
  970. Font LookAndFeel_V2::getLabelFont (Label& label)
  971. {
  972. return label.getFont();
  973. }
  974. void LookAndFeel_V2::drawLabel (Graphics& g, Label& label)
  975. {
  976. g.fillAll (label.findColour (Label::backgroundColourId));
  977. if (! label.isBeingEdited())
  978. {
  979. const float alpha = label.isEnabled() ? 1.0f : 0.5f;
  980. const Font font (getLabelFont (label));
  981. g.setColour (label.findColour (Label::textColourId).withMultipliedAlpha (alpha));
  982. g.setFont (font);
  983. Rectangle<int> textArea (label.getBorderSize().subtractedFrom (label.getLocalBounds()));
  984. g.drawFittedText (label.getText(), textArea, label.getJustificationType(),
  985. jmax (1, (int) (textArea.getHeight() / font.getHeight())),
  986. label.getMinimumHorizontalScale());
  987. g.setColour (label.findColour (Label::outlineColourId).withMultipliedAlpha (alpha));
  988. }
  989. else if (label.isEnabled())
  990. {
  991. g.setColour (label.findColour (Label::outlineColourId));
  992. }
  993. g.drawRect (label.getLocalBounds());
  994. }
  995. //==============================================================================
  996. void LookAndFeel_V2::drawLinearSliderBackground (Graphics& g, int x, int y, int width, int height,
  997. float /*sliderPos*/,
  998. float /*minSliderPos*/,
  999. float /*maxSliderPos*/,
  1000. const Slider::SliderStyle /*style*/, Slider& slider)
  1001. {
  1002. const float sliderRadius = (float) (getSliderThumbRadius (slider) - 2);
  1003. const Colour trackColour (slider.findColour (Slider::trackColourId));
  1004. const Colour gradCol1 (trackColour.overlaidWith (Colours::black.withAlpha (slider.isEnabled() ? 0.25f : 0.13f)));
  1005. const Colour gradCol2 (trackColour.overlaidWith (Colour (0x14000000)));
  1006. Path indent;
  1007. if (slider.isHorizontal())
  1008. {
  1009. const float iy = y + height * 0.5f - sliderRadius * 0.5f;
  1010. const float ih = sliderRadius;
  1011. g.setGradientFill (ColourGradient (gradCol1, 0.0f, iy,
  1012. gradCol2, 0.0f, iy + ih, false));
  1013. indent.addRoundedRectangle (x - sliderRadius * 0.5f, iy,
  1014. width + sliderRadius, ih,
  1015. 5.0f);
  1016. }
  1017. else
  1018. {
  1019. const float ix = x + width * 0.5f - sliderRadius * 0.5f;
  1020. const float iw = sliderRadius;
  1021. g.setGradientFill (ColourGradient (gradCol1, ix, 0.0f,
  1022. gradCol2, ix + iw, 0.0f, false));
  1023. indent.addRoundedRectangle (ix, y - sliderRadius * 0.5f,
  1024. iw, height + sliderRadius,
  1025. 5.0f);
  1026. }
  1027. g.fillPath (indent);
  1028. g.setColour (Colour (0x4c000000));
  1029. g.strokePath (indent, PathStrokeType (0.5f));
  1030. }
  1031. void LookAndFeel_V2::drawLinearSliderThumb (Graphics& g, int x, int y, int width, int height,
  1032. float sliderPos, float minSliderPos, float maxSliderPos,
  1033. const Slider::SliderStyle style, Slider& slider)
  1034. {
  1035. const float sliderRadius = (float) (getSliderThumbRadius (slider) - 2);
  1036. Colour knobColour (LookAndFeelHelpers::createBaseColour (slider.findColour (Slider::thumbColourId),
  1037. slider.hasKeyboardFocus (false) && slider.isEnabled(),
  1038. slider.isMouseOverOrDragging() && slider.isEnabled(),
  1039. slider.isMouseButtonDown() && slider.isEnabled()));
  1040. const float outlineThickness = slider.isEnabled() ? 0.8f : 0.3f;
  1041. if (style == Slider::LinearHorizontal || style == Slider::LinearVertical)
  1042. {
  1043. float kx, ky;
  1044. if (style == Slider::LinearVertical)
  1045. {
  1046. kx = x + width * 0.5f;
  1047. ky = sliderPos;
  1048. }
  1049. else
  1050. {
  1051. kx = sliderPos;
  1052. ky = y + height * 0.5f;
  1053. }
  1054. drawGlassSphere (g,
  1055. kx - sliderRadius,
  1056. ky - sliderRadius,
  1057. sliderRadius * 2.0f,
  1058. knobColour, outlineThickness);
  1059. }
  1060. else
  1061. {
  1062. if (style == Slider::ThreeValueVertical)
  1063. {
  1064. drawGlassSphere (g, x + width * 0.5f - sliderRadius,
  1065. sliderPos - sliderRadius,
  1066. sliderRadius * 2.0f,
  1067. knobColour, outlineThickness);
  1068. }
  1069. else if (style == Slider::ThreeValueHorizontal)
  1070. {
  1071. drawGlassSphere (g,sliderPos - sliderRadius,
  1072. y + height * 0.5f - sliderRadius,
  1073. sliderRadius * 2.0f,
  1074. knobColour, outlineThickness);
  1075. }
  1076. if (style == Slider::TwoValueVertical || style == Slider::ThreeValueVertical)
  1077. {
  1078. const float sr = jmin (sliderRadius, width * 0.4f);
  1079. drawGlassPointer (g, jmax (0.0f, x + width * 0.5f - sliderRadius * 2.0f),
  1080. minSliderPos - sliderRadius,
  1081. sliderRadius * 2.0f, knobColour, outlineThickness, 1);
  1082. drawGlassPointer (g, jmin (x + width - sliderRadius * 2.0f, x + width * 0.5f), maxSliderPos - sr,
  1083. sliderRadius * 2.0f, knobColour, outlineThickness, 3);
  1084. }
  1085. else if (style == Slider::TwoValueHorizontal || style == Slider::ThreeValueHorizontal)
  1086. {
  1087. const float sr = jmin (sliderRadius, height * 0.4f);
  1088. drawGlassPointer (g, minSliderPos - sr,
  1089. jmax (0.0f, y + height * 0.5f - sliderRadius * 2.0f),
  1090. sliderRadius * 2.0f, knobColour, outlineThickness, 2);
  1091. drawGlassPointer (g, maxSliderPos - sliderRadius,
  1092. jmin (y + height - sliderRadius * 2.0f, y + height * 0.5f),
  1093. sliderRadius * 2.0f, knobColour, outlineThickness, 4);
  1094. }
  1095. }
  1096. }
  1097. void LookAndFeel_V2::drawLinearSlider (Graphics& g, int x, int y, int width, int height,
  1098. float sliderPos, float minSliderPos, float maxSliderPos,
  1099. const Slider::SliderStyle style, Slider& slider)
  1100. {
  1101. g.fillAll (slider.findColour (Slider::backgroundColourId));
  1102. if (style == Slider::LinearBar || style == Slider::LinearBarVertical)
  1103. {
  1104. const bool isMouseOver = slider.isMouseOverOrDragging() && slider.isEnabled();
  1105. Colour baseColour (LookAndFeelHelpers::createBaseColour (slider.findColour (Slider::thumbColourId)
  1106. .withMultipliedSaturation (slider.isEnabled() ? 1.0f : 0.5f),
  1107. false, isMouseOver,
  1108. isMouseOver || slider.isMouseButtonDown()));
  1109. drawShinyButtonShape (g,
  1110. (float) x,
  1111. style == Slider::LinearBarVertical ? sliderPos
  1112. : (float) y,
  1113. style == Slider::LinearBarVertical ? (float) width
  1114. : (sliderPos - x),
  1115. style == Slider::LinearBarVertical ? (height - sliderPos)
  1116. : (float) height, 0.0f,
  1117. baseColour,
  1118. slider.isEnabled() ? 0.9f : 0.3f,
  1119. true, true, true, true);
  1120. }
  1121. else
  1122. {
  1123. drawLinearSliderBackground (g, x, y, width, height, sliderPos, minSliderPos, maxSliderPos, style, slider);
  1124. drawLinearSliderThumb (g, x, y, width, height, sliderPos, minSliderPos, maxSliderPos, style, slider);
  1125. }
  1126. }
  1127. int LookAndFeel_V2::getSliderThumbRadius (Slider& slider)
  1128. {
  1129. return jmin (7,
  1130. slider.getHeight() / 2,
  1131. slider.getWidth() / 2) + 2;
  1132. }
  1133. void LookAndFeel_V2::drawRotarySlider (Graphics& g, int x, int y, int width, int height, float sliderPos,
  1134. const float rotaryStartAngle, const float rotaryEndAngle, Slider& slider)
  1135. {
  1136. const float radius = jmin (width / 2, height / 2) - 2.0f;
  1137. const float centreX = x + width * 0.5f;
  1138. const float centreY = y + height * 0.5f;
  1139. const float rx = centreX - radius;
  1140. const float ry = centreY - radius;
  1141. const float rw = radius * 2.0f;
  1142. const float angle = rotaryStartAngle + sliderPos * (rotaryEndAngle - rotaryStartAngle);
  1143. const bool isMouseOver = slider.isMouseOverOrDragging() && slider.isEnabled();
  1144. if (radius > 12.0f)
  1145. {
  1146. if (slider.isEnabled())
  1147. g.setColour (slider.findColour (Slider::rotarySliderFillColourId).withAlpha (isMouseOver ? 1.0f : 0.7f));
  1148. else
  1149. g.setColour (Colour (0x80808080));
  1150. const float thickness = 0.7f;
  1151. {
  1152. Path filledArc;
  1153. filledArc.addPieSegment (rx, ry, rw, rw, rotaryStartAngle, angle, thickness);
  1154. g.fillPath (filledArc);
  1155. }
  1156. {
  1157. const float innerRadius = radius * 0.2f;
  1158. Path p;
  1159. p.addTriangle (-innerRadius, 0.0f,
  1160. 0.0f, -radius * thickness * 1.1f,
  1161. innerRadius, 0.0f);
  1162. p.addEllipse (-innerRadius, -innerRadius, innerRadius * 2.0f, innerRadius * 2.0f);
  1163. g.fillPath (p, AffineTransform::rotation (angle).translated (centreX, centreY));
  1164. }
  1165. if (slider.isEnabled())
  1166. g.setColour (slider.findColour (Slider::rotarySliderOutlineColourId));
  1167. else
  1168. g.setColour (Colour (0x80808080));
  1169. Path outlineArc;
  1170. outlineArc.addPieSegment (rx, ry, rw, rw, rotaryStartAngle, rotaryEndAngle, thickness);
  1171. outlineArc.closeSubPath();
  1172. g.strokePath (outlineArc, PathStrokeType (slider.isEnabled() ? (isMouseOver ? 2.0f : 1.2f) : 0.3f));
  1173. }
  1174. else
  1175. {
  1176. if (slider.isEnabled())
  1177. g.setColour (slider.findColour (Slider::rotarySliderFillColourId).withAlpha (isMouseOver ? 1.0f : 0.7f));
  1178. else
  1179. g.setColour (Colour (0x80808080));
  1180. Path p;
  1181. p.addEllipse (-0.4f * rw, -0.4f * rw, rw * 0.8f, rw * 0.8f);
  1182. PathStrokeType (rw * 0.1f).createStrokedPath (p, p);
  1183. p.addLineSegment (Line<float> (0.0f, 0.0f, 0.0f, -radius), rw * 0.2f);
  1184. g.fillPath (p, AffineTransform::rotation (angle).translated (centreX, centreY));
  1185. }
  1186. }
  1187. Button* LookAndFeel_V2::createSliderButton (Slider&, const bool isIncrement)
  1188. {
  1189. return new TextButton (isIncrement ? "+" : "-", String());
  1190. }
  1191. class LookAndFeel_V2::SliderLabelComp : public Label
  1192. {
  1193. public:
  1194. SliderLabelComp() : Label (String(), String()) {}
  1195. void mouseWheelMove (const MouseEvent&, const MouseWheelDetails&) {}
  1196. };
  1197. Label* LookAndFeel_V2::createSliderTextBox (Slider& slider)
  1198. {
  1199. Label* const l = new SliderLabelComp();
  1200. l->setJustificationType (Justification::centred);
  1201. l->setKeyboardType (TextInputTarget::decimalKeyboard);
  1202. l->setColour (Label::textColourId, slider.findColour (Slider::textBoxTextColourId));
  1203. l->setColour (Label::backgroundColourId,
  1204. (slider.getSliderStyle() == Slider::LinearBar || slider.getSliderStyle() == Slider::LinearBarVertical)
  1205. ? Colours::transparentBlack
  1206. : slider.findColour (Slider::textBoxBackgroundColourId));
  1207. l->setColour (Label::outlineColourId, slider.findColour (Slider::textBoxOutlineColourId));
  1208. l->setColour (TextEditor::textColourId, slider.findColour (Slider::textBoxTextColourId));
  1209. l->setColour (TextEditor::backgroundColourId,
  1210. slider.findColour (Slider::textBoxBackgroundColourId)
  1211. .withAlpha ((slider.getSliderStyle() == Slider::LinearBar || slider.getSliderStyle() == Slider::LinearBarVertical)
  1212. ? 0.7f : 1.0f));
  1213. l->setColour (TextEditor::outlineColourId, slider.findColour (Slider::textBoxOutlineColourId));
  1214. l->setColour (TextEditor::highlightColourId, slider.findColour (Slider::textBoxHighlightColourId));
  1215. return l;
  1216. }
  1217. ImageEffectFilter* LookAndFeel_V2::getSliderEffect (Slider&)
  1218. {
  1219. return nullptr;
  1220. }
  1221. Font LookAndFeel_V2::getSliderPopupFont (Slider&)
  1222. {
  1223. return Font (15.0f, Font::bold);
  1224. }
  1225. int LookAndFeel_V2::getSliderPopupPlacement (Slider&)
  1226. {
  1227. return BubbleComponent::above
  1228. | BubbleComponent::below
  1229. | BubbleComponent::left
  1230. | BubbleComponent::right;
  1231. }
  1232. //==============================================================================
  1233. Slider::SliderLayout LookAndFeel_V2::getSliderLayout (Slider& slider)
  1234. {
  1235. // 1. compute the actually visible textBox size from the slider textBox size and some additional constraints
  1236. int minXSpace = 0;
  1237. int minYSpace = 0;
  1238. Slider::TextEntryBoxPosition textBoxPos = slider.getTextBoxPosition();
  1239. if (textBoxPos == Slider::TextBoxLeft || textBoxPos == Slider::TextBoxRight)
  1240. minXSpace = 30;
  1241. else
  1242. minYSpace = 15;
  1243. Rectangle<int> localBounds = slider.getLocalBounds();
  1244. const int textBoxWidth = jmax (0, jmin (slider.getTextBoxWidth(), localBounds.getWidth() - minXSpace));
  1245. const int textBoxHeight = jmax (0, jmin (slider.getTextBoxHeight(), localBounds.getHeight() - minYSpace));
  1246. Slider::SliderLayout layout;
  1247. // 2. set the textBox bounds
  1248. if (textBoxPos != Slider::NoTextBox)
  1249. {
  1250. if (slider.isBar())
  1251. {
  1252. layout.textBoxBounds = localBounds;
  1253. }
  1254. else
  1255. {
  1256. layout.textBoxBounds.setWidth (textBoxWidth);
  1257. layout.textBoxBounds.setHeight (textBoxHeight);
  1258. if (textBoxPos == Slider::TextBoxLeft) layout.textBoxBounds.setX (0);
  1259. else if (textBoxPos == Slider::TextBoxRight) layout.textBoxBounds.setX (localBounds.getWidth() - textBoxWidth);
  1260. else /* above or below -> centre horizontally */ layout.textBoxBounds.setX ((localBounds.getWidth() - textBoxWidth) / 2);
  1261. if (textBoxPos == Slider::TextBoxAbove) layout.textBoxBounds.setY (0);
  1262. else if (textBoxPos == Slider::TextBoxBelow) layout.textBoxBounds.setY (localBounds.getHeight() - textBoxHeight);
  1263. else /* left or right -> centre vertically */ layout.textBoxBounds.setY ((localBounds.getHeight() - textBoxHeight) / 2);
  1264. }
  1265. }
  1266. // 3. set the slider bounds
  1267. layout.sliderBounds = localBounds;
  1268. if (slider.isBar())
  1269. {
  1270. layout.sliderBounds.reduce (1, 1); // bar border
  1271. }
  1272. else
  1273. {
  1274. if (textBoxPos == Slider::TextBoxLeft) layout.sliderBounds.removeFromLeft (textBoxWidth);
  1275. else if (textBoxPos == Slider::TextBoxRight) layout.sliderBounds.removeFromRight (textBoxWidth);
  1276. else if (textBoxPos == Slider::TextBoxAbove) layout.sliderBounds.removeFromTop (textBoxHeight);
  1277. else if (textBoxPos == Slider::TextBoxBelow) layout.sliderBounds.removeFromBottom (textBoxHeight);
  1278. const int thumbIndent = getSliderThumbRadius (slider);
  1279. if (slider.isHorizontal()) layout.sliderBounds.reduce (thumbIndent, 0);
  1280. else if (slider.isVertical()) layout.sliderBounds.reduce (0, thumbIndent);
  1281. }
  1282. return layout;
  1283. }
  1284. //==============================================================================
  1285. Rectangle<int> LookAndFeel_V2::getTooltipBounds (const String& tipText, Point<int> screenPos, Rectangle<int> parentArea)
  1286. {
  1287. const TextLayout tl (LookAndFeelHelpers::layoutTooltipText (tipText, Colours::black));
  1288. const int w = (int) (tl.getWidth() + 14.0f);
  1289. const int h = (int) (tl.getHeight() + 6.0f);
  1290. return Rectangle<int> (screenPos.x > parentArea.getCentreX() ? screenPos.x - (w + 12) : screenPos.x + 24,
  1291. screenPos.y > parentArea.getCentreY() ? screenPos.y - (h + 6) : screenPos.y + 6,
  1292. w, h)
  1293. .constrainedWithin (parentArea);
  1294. }
  1295. void LookAndFeel_V2::drawTooltip (Graphics& g, const String& text, int width, int height)
  1296. {
  1297. g.fillAll (findColour (TooltipWindow::backgroundColourId));
  1298. #if ! JUCE_MAC // The mac windows already have a non-optional 1 pix outline, so don't double it here..
  1299. g.setColour (findColour (TooltipWindow::outlineColourId));
  1300. g.drawRect (0, 0, width, height, 1);
  1301. #endif
  1302. LookAndFeelHelpers::layoutTooltipText (text, findColour (TooltipWindow::textColourId))
  1303. .draw (g, Rectangle<float> ((float) width, (float) height));
  1304. }
  1305. //==============================================================================
  1306. Button* LookAndFeel_V2::createFilenameComponentBrowseButton (const String& text)
  1307. {
  1308. return new TextButton (text, TRANS("click to browse for a different file"));
  1309. }
  1310. void LookAndFeel_V2::layoutFilenameComponent (FilenameComponent& filenameComp,
  1311. ComboBox* filenameBox, Button* browseButton)
  1312. {
  1313. browseButton->setSize (80, filenameComp.getHeight());
  1314. if (TextButton* const tb = dynamic_cast<TextButton*> (browseButton))
  1315. tb->changeWidthToFitText();
  1316. browseButton->setTopRightPosition (filenameComp.getWidth(), 0);
  1317. filenameBox->setBounds (0, 0, browseButton->getX(), filenameComp.getHeight());
  1318. }
  1319. //==============================================================================
  1320. void LookAndFeel_V2::drawConcertinaPanelHeader (Graphics& g, const Rectangle<int>& area,
  1321. bool isMouseOver, bool /*isMouseDown*/,
  1322. ConcertinaPanel&, Component& panel)
  1323. {
  1324. g.fillAll (Colours::grey.withAlpha (isMouseOver ? 0.9f : 0.7f));
  1325. g.setColour (Colours::black.withAlpha (0.5f));
  1326. g.drawRect (area);
  1327. g.setColour (Colours::white);
  1328. g.setFont (Font (area.getHeight() * 0.7f).boldened());
  1329. g.drawFittedText (panel.getName(), 4, 0, area.getWidth() - 6, area.getHeight(), Justification::centredLeft, 1);
  1330. }
  1331. //==============================================================================
  1332. void LookAndFeel_V2::drawImageButton (Graphics& g, Image* image,
  1333. int imageX, int imageY, int imageW, int imageH,
  1334. const Colour& overlayColour,
  1335. float imageOpacity,
  1336. ImageButton& button)
  1337. {
  1338. if (! button.isEnabled())
  1339. imageOpacity *= 0.3f;
  1340. AffineTransform t = RectanglePlacement (RectanglePlacement::stretchToFit)
  1341. .getTransformToFit (image->getBounds().toFloat(),
  1342. Rectangle<int> (imageX, imageY, imageW, imageH).toFloat());
  1343. if (! overlayColour.isOpaque())
  1344. {
  1345. g.setOpacity (imageOpacity);
  1346. g.drawImageTransformed (*image, t, false);
  1347. }
  1348. if (! overlayColour.isTransparent())
  1349. {
  1350. g.setColour (overlayColour);
  1351. g.drawImageTransformed (*image, t, true);
  1352. }
  1353. }
  1354. //==============================================================================
  1355. void LookAndFeel_V2::drawCornerResizer (Graphics& g,
  1356. int w, int h,
  1357. bool /*isMouseOver*/,
  1358. bool /*isMouseDragging*/)
  1359. {
  1360. const float lineThickness = jmin (w, h) * 0.075f;
  1361. for (float i = 0.0f; i < 1.0f; i += 0.3f)
  1362. {
  1363. g.setColour (Colours::lightgrey);
  1364. g.drawLine (w * i,
  1365. h + 1.0f,
  1366. w + 1.0f,
  1367. h * i,
  1368. lineThickness);
  1369. g.setColour (Colours::darkgrey);
  1370. g.drawLine (w * i + lineThickness,
  1371. h + 1.0f,
  1372. w + 1.0f,
  1373. h * i + lineThickness,
  1374. lineThickness);
  1375. }
  1376. }
  1377. void LookAndFeel_V2::drawResizableFrame (Graphics& g, int w, int h, const BorderSize<int>& border)
  1378. {
  1379. if (! border.isEmpty())
  1380. {
  1381. const Rectangle<int> fullSize (0, 0, w, h);
  1382. const Rectangle<int> centreArea (border.subtractedFrom (fullSize));
  1383. g.saveState();
  1384. g.excludeClipRegion (centreArea);
  1385. g.setColour (Colour (0x50000000));
  1386. g.drawRect (fullSize);
  1387. g.setColour (Colour (0x19000000));
  1388. g.drawRect (centreArea.expanded (1, 1));
  1389. g.restoreState();
  1390. }
  1391. }
  1392. //==============================================================================
  1393. void LookAndFeel_V2::fillResizableWindowBackground (Graphics& g, int /*w*/, int /*h*/,
  1394. const BorderSize<int>& /*border*/, ResizableWindow& window)
  1395. {
  1396. g.fillAll (window.getBackgroundColour());
  1397. }
  1398. void LookAndFeel_V2::drawResizableWindowBorder (Graphics&, int /*w*/, int /*h*/,
  1399. const BorderSize<int>& /*border*/, ResizableWindow&)
  1400. {
  1401. }
  1402. void LookAndFeel_V2::drawDocumentWindowTitleBar (DocumentWindow& window, Graphics& g,
  1403. int w, int h, int titleSpaceX, int titleSpaceW,
  1404. const Image* icon, bool drawTitleTextOnLeft)
  1405. {
  1406. if (w * h == 0)
  1407. return;
  1408. const bool isActive = window.isActiveWindow();
  1409. g.setGradientFill (ColourGradient (window.getBackgroundColour(),
  1410. 0.0f, 0.0f,
  1411. window.getBackgroundColour().contrasting (isActive ? 0.15f : 0.05f),
  1412. 0.0f, (float) h, false));
  1413. g.fillAll();
  1414. Font font (h * 0.65f, Font::bold);
  1415. g.setFont (font);
  1416. int textW = font.getStringWidth (window.getName());
  1417. int iconW = 0;
  1418. int iconH = 0;
  1419. if (icon != nullptr)
  1420. {
  1421. iconH = (int) font.getHeight();
  1422. iconW = icon->getWidth() * iconH / icon->getHeight() + 4;
  1423. }
  1424. textW = jmin (titleSpaceW, textW + iconW);
  1425. int textX = drawTitleTextOnLeft ? titleSpaceX
  1426. : jmax (titleSpaceX, (w - textW) / 2);
  1427. if (textX + textW > titleSpaceX + titleSpaceW)
  1428. textX = titleSpaceX + titleSpaceW - textW;
  1429. if (icon != nullptr)
  1430. {
  1431. g.setOpacity (isActive ? 1.0f : 0.6f);
  1432. g.drawImageWithin (*icon, textX, (h - iconH) / 2, iconW, iconH,
  1433. RectanglePlacement::centred, false);
  1434. textX += iconW;
  1435. textW -= iconW;
  1436. }
  1437. if (window.isColourSpecified (DocumentWindow::textColourId) || isColourSpecified (DocumentWindow::textColourId))
  1438. g.setColour (window.findColour (DocumentWindow::textColourId));
  1439. else
  1440. g.setColour (window.getBackgroundColour().contrasting (isActive ? 0.7f : 0.4f));
  1441. g.drawText (window.getName(), textX, 0, textW, h, Justification::centredLeft, true);
  1442. }
  1443. //==============================================================================
  1444. class LookAndFeel_V2::GlassWindowButton : public Button
  1445. {
  1446. public:
  1447. GlassWindowButton (const String& name, Colour col,
  1448. const Path& normalShape_,
  1449. const Path& toggledShape_) noexcept
  1450. : Button (name),
  1451. colour (col),
  1452. normalShape (normalShape_),
  1453. toggledShape (toggledShape_)
  1454. {
  1455. }
  1456. //==============================================================================
  1457. void paintButton (Graphics& g, bool isMouseOverButton, bool isButtonDown) override
  1458. {
  1459. float alpha = isMouseOverButton ? (isButtonDown ? 1.0f : 0.8f) : 0.55f;
  1460. if (! isEnabled())
  1461. alpha *= 0.5f;
  1462. float x = 0, y = 0, diam;
  1463. if (getWidth() < getHeight())
  1464. {
  1465. diam = (float) getWidth();
  1466. y = (getHeight() - getWidth()) * 0.5f;
  1467. }
  1468. else
  1469. {
  1470. diam = (float) getHeight();
  1471. y = (getWidth() - getHeight()) * 0.5f;
  1472. }
  1473. x += diam * 0.05f;
  1474. y += diam * 0.05f;
  1475. diam *= 0.9f;
  1476. g.setGradientFill (ColourGradient (Colour::greyLevel (0.9f).withAlpha (alpha), 0, y + diam,
  1477. Colour::greyLevel (0.6f).withAlpha (alpha), 0, y, false));
  1478. g.fillEllipse (x, y, diam, diam);
  1479. x += 2.0f;
  1480. y += 2.0f;
  1481. diam -= 4.0f;
  1482. LookAndFeel_V2::drawGlassSphere (g, x, y, diam, colour.withAlpha (alpha), 1.0f);
  1483. Path& p = getToggleState() ? toggledShape : normalShape;
  1484. const AffineTransform t (p.getTransformToScaleToFit (x + diam * 0.3f, y + diam * 0.3f,
  1485. diam * 0.4f, diam * 0.4f, true));
  1486. g.setColour (Colours::black.withAlpha (alpha * 0.6f));
  1487. g.fillPath (p, t);
  1488. }
  1489. private:
  1490. Colour colour;
  1491. Path normalShape, toggledShape;
  1492. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (GlassWindowButton)
  1493. };
  1494. Button* LookAndFeel_V2::createDocumentWindowButton (int buttonType)
  1495. {
  1496. Path shape;
  1497. const float crossThickness = 0.25f;
  1498. if (buttonType == DocumentWindow::closeButton)
  1499. {
  1500. shape.addLineSegment (Line<float> (0.0f, 0.0f, 1.0f, 1.0f), crossThickness * 1.4f);
  1501. shape.addLineSegment (Line<float> (1.0f, 0.0f, 0.0f, 1.0f), crossThickness * 1.4f);
  1502. return new GlassWindowButton ("close", Colour (0xffdd1100), shape, shape);
  1503. }
  1504. if (buttonType == DocumentWindow::minimiseButton)
  1505. {
  1506. shape.addLineSegment (Line<float> (0.0f, 0.5f, 1.0f, 0.5f), crossThickness);
  1507. return new GlassWindowButton ("minimise", Colour (0xffaa8811), shape, shape);
  1508. }
  1509. if (buttonType == DocumentWindow::maximiseButton)
  1510. {
  1511. shape.addLineSegment (Line<float> (0.5f, 0.0f, 0.5f, 1.0f), crossThickness);
  1512. shape.addLineSegment (Line<float> (0.0f, 0.5f, 1.0f, 0.5f), crossThickness);
  1513. Path fullscreenShape;
  1514. fullscreenShape.startNewSubPath (45.0f, 100.0f);
  1515. fullscreenShape.lineTo (0.0f, 100.0f);
  1516. fullscreenShape.lineTo (0.0f, 0.0f);
  1517. fullscreenShape.lineTo (100.0f, 0.0f);
  1518. fullscreenShape.lineTo (100.0f, 45.0f);
  1519. fullscreenShape.addRectangle (45.0f, 45.0f, 100.0f, 100.0f);
  1520. PathStrokeType (30.0f).createStrokedPath (fullscreenShape, fullscreenShape);
  1521. return new GlassWindowButton ("maximise", Colour (0xff119911), shape, fullscreenShape);
  1522. }
  1523. jassertfalse;
  1524. return nullptr;
  1525. }
  1526. void LookAndFeel_V2::positionDocumentWindowButtons (DocumentWindow&,
  1527. int titleBarX, int titleBarY,
  1528. int titleBarW, int titleBarH,
  1529. Button* minimiseButton,
  1530. Button* maximiseButton,
  1531. Button* closeButton,
  1532. bool positionTitleBarButtonsOnLeft)
  1533. {
  1534. const int buttonW = titleBarH - titleBarH / 8;
  1535. int x = positionTitleBarButtonsOnLeft ? titleBarX + 4
  1536. : titleBarX + titleBarW - buttonW - buttonW / 4;
  1537. if (closeButton != nullptr)
  1538. {
  1539. closeButton->setBounds (x, titleBarY, buttonW, titleBarH);
  1540. x += positionTitleBarButtonsOnLeft ? buttonW : -(buttonW + buttonW / 4);
  1541. }
  1542. if (positionTitleBarButtonsOnLeft)
  1543. std::swap (minimiseButton, maximiseButton);
  1544. if (maximiseButton != nullptr)
  1545. {
  1546. maximiseButton->setBounds (x, titleBarY, buttonW, titleBarH);
  1547. x += positionTitleBarButtonsOnLeft ? buttonW : -buttonW;
  1548. }
  1549. if (minimiseButton != nullptr)
  1550. minimiseButton->setBounds (x, titleBarY, buttonW, titleBarH);
  1551. }
  1552. int LookAndFeel_V2::getDefaultMenuBarHeight()
  1553. {
  1554. return 24;
  1555. }
  1556. //==============================================================================
  1557. DropShadower* LookAndFeel_V2::createDropShadowerForComponent (Component*)
  1558. {
  1559. return new DropShadower (DropShadow (Colours::black.withAlpha (0.4f), 10, Point<int> (0, 2)));
  1560. }
  1561. //==============================================================================
  1562. void LookAndFeel_V2::drawStretchableLayoutResizerBar (Graphics& g, int w, int h,
  1563. bool /*isVerticalBar*/,
  1564. bool isMouseOver,
  1565. bool isMouseDragging)
  1566. {
  1567. float alpha = 0.5f;
  1568. if (isMouseOver || isMouseDragging)
  1569. {
  1570. g.fillAll (Colour (0x190000ff));
  1571. alpha = 1.0f;
  1572. }
  1573. const float cx = w * 0.5f;
  1574. const float cy = h * 0.5f;
  1575. const float cr = jmin (w, h) * 0.4f;
  1576. g.setGradientFill (ColourGradient (Colours::white.withAlpha (alpha), cx + cr * 0.1f, cy + cr,
  1577. Colours::black.withAlpha (alpha), cx, cy - cr * 4.0f,
  1578. true));
  1579. g.fillEllipse (cx - cr, cy - cr, cr * 2.0f, cr * 2.0f);
  1580. }
  1581. //==============================================================================
  1582. void LookAndFeel_V2::drawGroupComponentOutline (Graphics& g, int width, int height,
  1583. const String& text, const Justification& position,
  1584. GroupComponent& group)
  1585. {
  1586. const float textH = 15.0f;
  1587. const float indent = 3.0f;
  1588. const float textEdgeGap = 4.0f;
  1589. float cs = 5.0f;
  1590. Font f (textH);
  1591. Path p;
  1592. float x = indent;
  1593. float y = f.getAscent() - 3.0f;
  1594. float w = jmax (0.0f, width - x * 2.0f);
  1595. float h = jmax (0.0f, height - y - indent);
  1596. cs = jmin (cs, w * 0.5f, h * 0.5f);
  1597. const float cs2 = 2.0f * cs;
  1598. float textW = text.isEmpty() ? 0 : jlimit (0.0f, jmax (0.0f, w - cs2 - textEdgeGap * 2), f.getStringWidth (text) + textEdgeGap * 2.0f);
  1599. float textX = cs + textEdgeGap;
  1600. if (position.testFlags (Justification::horizontallyCentred))
  1601. textX = cs + (w - cs2 - textW) * 0.5f;
  1602. else if (position.testFlags (Justification::right))
  1603. textX = w - cs - textW - textEdgeGap;
  1604. p.startNewSubPath (x + textX + textW, y);
  1605. p.lineTo (x + w - cs, y);
  1606. p.addArc (x + w - cs2, y, cs2, cs2, 0, float_Pi * 0.5f);
  1607. p.lineTo (x + w, y + h - cs);
  1608. p.addArc (x + w - cs2, y + h - cs2, cs2, cs2, float_Pi * 0.5f, float_Pi);
  1609. p.lineTo (x + cs, y + h);
  1610. p.addArc (x, y + h - cs2, cs2, cs2, float_Pi, float_Pi * 1.5f);
  1611. p.lineTo (x, y + cs);
  1612. p.addArc (x, y, cs2, cs2, float_Pi * 1.5f, float_Pi * 2.0f);
  1613. p.lineTo (x + textX, y);
  1614. const float alpha = group.isEnabled() ? 1.0f : 0.5f;
  1615. g.setColour (group.findColour (GroupComponent::outlineColourId)
  1616. .withMultipliedAlpha (alpha));
  1617. g.strokePath (p, PathStrokeType (2.0f));
  1618. g.setColour (group.findColour (GroupComponent::textColourId)
  1619. .withMultipliedAlpha (alpha));
  1620. g.setFont (f);
  1621. g.drawText (text,
  1622. roundToInt (x + textX), 0,
  1623. roundToInt (textW),
  1624. roundToInt (textH),
  1625. Justification::centred, true);
  1626. }
  1627. //==============================================================================
  1628. int LookAndFeel_V2::getTabButtonOverlap (int tabDepth)
  1629. {
  1630. return 1 + tabDepth / 3;
  1631. }
  1632. int LookAndFeel_V2::getTabButtonSpaceAroundImage()
  1633. {
  1634. return 4;
  1635. }
  1636. int LookAndFeel_V2::getTabButtonBestWidth (TabBarButton& button, int tabDepth)
  1637. {
  1638. int width = Font (tabDepth * 0.6f).getStringWidth (button.getButtonText().trim())
  1639. + getTabButtonOverlap (tabDepth) * 2;
  1640. if (Component* const extraComponent = button.getExtraComponent())
  1641. width += button.getTabbedButtonBar().isVertical() ? extraComponent->getHeight()
  1642. : extraComponent->getWidth();
  1643. return jlimit (tabDepth * 2, tabDepth * 8, width);
  1644. }
  1645. Rectangle<int> LookAndFeel_V2::getTabButtonExtraComponentBounds (const TabBarButton& button, Rectangle<int>& textArea, Component& comp)
  1646. {
  1647. Rectangle<int> extraComp;
  1648. const TabbedButtonBar::Orientation orientation = button.getTabbedButtonBar().getOrientation();
  1649. if (button.getExtraComponentPlacement() == TabBarButton::beforeText)
  1650. {
  1651. switch (orientation)
  1652. {
  1653. case TabbedButtonBar::TabsAtBottom:
  1654. case TabbedButtonBar::TabsAtTop: extraComp = textArea.removeFromLeft (comp.getWidth()); break;
  1655. case TabbedButtonBar::TabsAtLeft: extraComp = textArea.removeFromBottom (comp.getHeight()); break;
  1656. case TabbedButtonBar::TabsAtRight: extraComp = textArea.removeFromTop (comp.getHeight()); break;
  1657. default: jassertfalse; break;
  1658. }
  1659. }
  1660. else
  1661. {
  1662. switch (orientation)
  1663. {
  1664. case TabbedButtonBar::TabsAtBottom:
  1665. case TabbedButtonBar::TabsAtTop: extraComp = textArea.removeFromRight (comp.getWidth()); break;
  1666. case TabbedButtonBar::TabsAtLeft: extraComp = textArea.removeFromTop (comp.getHeight()); break;
  1667. case TabbedButtonBar::TabsAtRight: extraComp = textArea.removeFromBottom (comp.getHeight()); break;
  1668. default: jassertfalse; break;
  1669. }
  1670. }
  1671. return extraComp;
  1672. }
  1673. void LookAndFeel_V2::createTabButtonShape (TabBarButton& button, Path& p, bool /*isMouseOver*/, bool /*isMouseDown*/)
  1674. {
  1675. const Rectangle<int> activeArea (button.getActiveArea());
  1676. const float w = (float) activeArea.getWidth();
  1677. const float h = (float) activeArea.getHeight();
  1678. float length = w;
  1679. float depth = h;
  1680. if (button.getTabbedButtonBar().isVertical())
  1681. std::swap (length, depth);
  1682. const float indent = (float) getTabButtonOverlap ((int) depth);
  1683. const float overhang = 4.0f;
  1684. switch (button.getTabbedButtonBar().getOrientation())
  1685. {
  1686. case TabbedButtonBar::TabsAtLeft:
  1687. p.startNewSubPath (w, 0.0f);
  1688. p.lineTo (0.0f, indent);
  1689. p.lineTo (0.0f, h - indent);
  1690. p.lineTo (w, h);
  1691. p.lineTo (w + overhang, h + overhang);
  1692. p.lineTo (w + overhang, -overhang);
  1693. break;
  1694. case TabbedButtonBar::TabsAtRight:
  1695. p.startNewSubPath (0.0f, 0.0f);
  1696. p.lineTo (w, indent);
  1697. p.lineTo (w, h - indent);
  1698. p.lineTo (0.0f, h);
  1699. p.lineTo (-overhang, h + overhang);
  1700. p.lineTo (-overhang, -overhang);
  1701. break;
  1702. case TabbedButtonBar::TabsAtBottom:
  1703. p.startNewSubPath (0.0f, 0.0f);
  1704. p.lineTo (indent, h);
  1705. p.lineTo (w - indent, h);
  1706. p.lineTo (w, 0.0f);
  1707. p.lineTo (w + overhang, -overhang);
  1708. p.lineTo (-overhang, -overhang);
  1709. break;
  1710. default:
  1711. p.startNewSubPath (0.0f, h);
  1712. p.lineTo (indent, 0.0f);
  1713. p.lineTo (w - indent, 0.0f);
  1714. p.lineTo (w, h);
  1715. p.lineTo (w + overhang, h + overhang);
  1716. p.lineTo (-overhang, h + overhang);
  1717. break;
  1718. }
  1719. p.closeSubPath();
  1720. p = p.createPathWithRoundedCorners (3.0f);
  1721. }
  1722. void LookAndFeel_V2::fillTabButtonShape (TabBarButton& button, Graphics& g, const Path& path,
  1723. bool /*isMouseOver*/, bool /*isMouseDown*/)
  1724. {
  1725. const Colour tabBackground (button.getTabBackgroundColour());
  1726. const bool isFrontTab = button.isFrontTab();
  1727. g.setColour (isFrontTab ? tabBackground
  1728. : tabBackground.withMultipliedAlpha (0.9f));
  1729. g.fillPath (path);
  1730. g.setColour (button.findColour (isFrontTab ? TabbedButtonBar::frontOutlineColourId
  1731. : TabbedButtonBar::tabOutlineColourId, false)
  1732. .withMultipliedAlpha (button.isEnabled() ? 1.0f : 0.5f));
  1733. g.strokePath (path, PathStrokeType (isFrontTab ? 1.0f : 0.5f));
  1734. }
  1735. void LookAndFeel_V2::drawTabButtonText (TabBarButton& button, Graphics& g, bool isMouseOver, bool isMouseDown)
  1736. {
  1737. const Rectangle<float> area (button.getTextArea().toFloat());
  1738. float length = area.getWidth();
  1739. float depth = area.getHeight();
  1740. if (button.getTabbedButtonBar().isVertical())
  1741. std::swap (length, depth);
  1742. Font font (depth * 0.6f);
  1743. font.setUnderline (button.hasKeyboardFocus (false));
  1744. AffineTransform t;
  1745. switch (button.getTabbedButtonBar().getOrientation())
  1746. {
  1747. case TabbedButtonBar::TabsAtLeft: t = t.rotated (float_Pi * -0.5f).translated (area.getX(), area.getBottom()); break;
  1748. case TabbedButtonBar::TabsAtRight: t = t.rotated (float_Pi * 0.5f).translated (area.getRight(), area.getY()); break;
  1749. case TabbedButtonBar::TabsAtTop:
  1750. case TabbedButtonBar::TabsAtBottom: t = t.translated (area.getX(), area.getY()); break;
  1751. default: jassertfalse; break;
  1752. }
  1753. Colour col;
  1754. if (button.isFrontTab() && (button.isColourSpecified (TabbedButtonBar::frontTextColourId)
  1755. || isColourSpecified (TabbedButtonBar::frontTextColourId)))
  1756. col = findColour (TabbedButtonBar::frontTextColourId);
  1757. else if (button.isColourSpecified (TabbedButtonBar::tabTextColourId)
  1758. || isColourSpecified (TabbedButtonBar::tabTextColourId))
  1759. col = findColour (TabbedButtonBar::tabTextColourId);
  1760. else
  1761. col = button.getTabBackgroundColour().contrasting();
  1762. const float alpha = button.isEnabled() ? ((isMouseOver || isMouseDown) ? 1.0f : 0.8f) : 0.3f;
  1763. g.setColour (col.withMultipliedAlpha (alpha));
  1764. g.setFont (font);
  1765. g.addTransform (t);
  1766. g.drawFittedText (button.getButtonText().trim(),
  1767. 0, 0, (int) length, (int) depth,
  1768. Justification::centred,
  1769. jmax (1, ((int) depth) / 12));
  1770. }
  1771. void LookAndFeel_V2::drawTabButton (TabBarButton& button, Graphics& g, bool isMouseOver, bool isMouseDown)
  1772. {
  1773. Path tabShape;
  1774. createTabButtonShape (button, tabShape, isMouseOver, isMouseDown);
  1775. const Rectangle<int> activeArea (button.getActiveArea());
  1776. tabShape.applyTransform (AffineTransform::translation ((float) activeArea.getX(),
  1777. (float) activeArea.getY()));
  1778. DropShadow (Colours::black.withAlpha (0.5f), 2, Point<int> (0, 1)).drawForPath (g, tabShape);
  1779. fillTabButtonShape (button, g, tabShape, isMouseOver, isMouseDown);
  1780. drawTabButtonText (button, g, isMouseOver, isMouseDown);
  1781. }
  1782. void LookAndFeel_V2::drawTabbedButtonBarBackground (TabbedButtonBar&, Graphics&) {}
  1783. void LookAndFeel_V2::drawTabAreaBehindFrontButton (TabbedButtonBar& bar, Graphics& g, const int w, const int h)
  1784. {
  1785. const float shadowSize = 0.2f;
  1786. Rectangle<int> shadowRect, line;
  1787. ColourGradient gradient (Colours::black.withAlpha (bar.isEnabled() ? 0.25f : 0.15f), 0, 0,
  1788. Colours::transparentBlack, 0, 0, false);
  1789. switch (bar.getOrientation())
  1790. {
  1791. case TabbedButtonBar::TabsAtLeft:
  1792. gradient.point1.x = (float) w;
  1793. gradient.point2.x = w * (1.0f - shadowSize);
  1794. shadowRect.setBounds ((int) gradient.point2.x, 0, w - (int) gradient.point2.x, h);
  1795. line.setBounds (w - 1, 0, 1, h);
  1796. break;
  1797. case TabbedButtonBar::TabsAtRight:
  1798. gradient.point2.x = w * shadowSize;
  1799. shadowRect.setBounds (0, 0, (int) gradient.point2.x, h);
  1800. line.setBounds (0, 0, 1, h);
  1801. break;
  1802. case TabbedButtonBar::TabsAtTop:
  1803. gradient.point1.y = (float) h;
  1804. gradient.point2.y = h * (1.0f - shadowSize);
  1805. shadowRect.setBounds (0, (int) gradient.point2.y, w, h - (int) gradient.point2.y);
  1806. line.setBounds (0, h - 1, w, 1);
  1807. break;
  1808. case TabbedButtonBar::TabsAtBottom:
  1809. gradient.point2.y = h * shadowSize;
  1810. shadowRect.setBounds (0, 0, w, (int) gradient.point2.y);
  1811. line.setBounds (0, 0, w, 1);
  1812. break;
  1813. default: break;
  1814. }
  1815. g.setGradientFill (gradient);
  1816. g.fillRect (shadowRect.expanded (2, 2));
  1817. g.setColour (Colour (0x80000000));
  1818. g.fillRect (line);
  1819. }
  1820. Button* LookAndFeel_V2::createTabBarExtrasButton()
  1821. {
  1822. const float thickness = 7.0f;
  1823. const float indent = 22.0f;
  1824. Path p;
  1825. p.addEllipse (-10.0f, -10.0f, 120.0f, 120.0f);
  1826. DrawablePath ellipse;
  1827. ellipse.setPath (p);
  1828. ellipse.setFill (Colour (0x99ffffff));
  1829. p.clear();
  1830. p.addEllipse (0.0f, 0.0f, 100.0f, 100.0f);
  1831. p.addRectangle (indent, 50.0f - thickness, 100.0f - indent * 2.0f, thickness * 2.0f);
  1832. p.addRectangle (50.0f - thickness, indent, thickness * 2.0f, 50.0f - indent - thickness);
  1833. p.addRectangle (50.0f - thickness, 50.0f + thickness, thickness * 2.0f, 50.0f - indent - thickness);
  1834. p.setUsingNonZeroWinding (false);
  1835. DrawablePath dp;
  1836. dp.setPath (p);
  1837. dp.setFill (Colour (0x59000000));
  1838. DrawableComposite normalImage;
  1839. normalImage.addAndMakeVisible (ellipse.createCopy());
  1840. normalImage.addAndMakeVisible (dp.createCopy());
  1841. dp.setFill (Colour (0xcc000000));
  1842. DrawableComposite overImage;
  1843. overImage.addAndMakeVisible (ellipse.createCopy());
  1844. overImage.addAndMakeVisible (dp.createCopy());
  1845. DrawableButton* db = new DrawableButton ("tabs", DrawableButton::ImageFitted);
  1846. db->setImages (&normalImage, &overImage, nullptr);
  1847. return db;
  1848. }
  1849. //==============================================================================
  1850. void LookAndFeel_V2::drawTableHeaderBackground (Graphics& g, TableHeaderComponent& header)
  1851. {
  1852. g.fillAll (Colours::white);
  1853. Rectangle<int> area (header.getLocalBounds());
  1854. area.removeFromTop (area.getHeight() / 2);
  1855. g.setGradientFill (ColourGradient (Colour (0xffe8ebf9), 0.0f, (float) area.getY(),
  1856. Colour (0xfff6f8f9), 0.0f, (float) area.getBottom(),
  1857. false));
  1858. g.fillRect (area);
  1859. g.setColour (Colour (0x33000000));
  1860. g.fillRect (area.removeFromBottom (1));
  1861. for (int i = header.getNumColumns (true); --i >= 0;)
  1862. g.fillRect (header.getColumnPosition (i).removeFromRight (1));
  1863. }
  1864. void LookAndFeel_V2::drawTableHeaderColumn (Graphics& g, const String& columnName, int /*columnId*/,
  1865. int width, int height, bool isMouseOver, bool isMouseDown,
  1866. int columnFlags)
  1867. {
  1868. if (isMouseDown)
  1869. g.fillAll (Colour (0x8899aadd));
  1870. else if (isMouseOver)
  1871. g.fillAll (Colour (0x5599aadd));
  1872. Rectangle<int> area (width, height);
  1873. area.reduce (4, 0);
  1874. if ((columnFlags & (TableHeaderComponent::sortedForwards | TableHeaderComponent::sortedBackwards)) != 0)
  1875. {
  1876. Path sortArrow;
  1877. sortArrow.addTriangle (0.0f, 0.0f,
  1878. 0.5f, (columnFlags & TableHeaderComponent::sortedForwards) != 0 ? -0.8f : 0.8f,
  1879. 1.0f, 0.0f);
  1880. g.setColour (Colour (0x99000000));
  1881. g.fillPath (sortArrow, sortArrow.getTransformToScaleToFit (area.removeFromRight (height / 2).reduced (2).toFloat(), true));
  1882. }
  1883. g.setColour (Colours::black);
  1884. g.setFont (Font (height * 0.5f, Font::bold));
  1885. g.drawFittedText (columnName, area, Justification::centredLeft, 1);
  1886. }
  1887. //==============================================================================
  1888. void LookAndFeel_V2::drawLasso (Graphics& g, Component& lassoComp)
  1889. {
  1890. const int outlineThickness = 1;
  1891. g.fillAll (lassoComp.findColour (0x1000440 /*lassoFillColourId*/));
  1892. g.setColour (lassoComp.findColour (0x1000441 /*lassoOutlineColourId*/));
  1893. g.drawRect (lassoComp.getLocalBounds(), outlineThickness);
  1894. }
  1895. //==============================================================================
  1896. void LookAndFeel_V2::paintToolbarBackground (Graphics& g, int w, int h, Toolbar& toolbar)
  1897. {
  1898. const Colour background (toolbar.findColour (Toolbar::backgroundColourId));
  1899. g.setGradientFill (ColourGradient (background, 0.0f, 0.0f,
  1900. background.darker (0.1f),
  1901. toolbar.isVertical() ? w - 1.0f : 0.0f,
  1902. toolbar.isVertical() ? 0.0f : h - 1.0f,
  1903. false));
  1904. g.fillAll();
  1905. }
  1906. Button* LookAndFeel_V2::createToolbarMissingItemsButton (Toolbar& /*toolbar*/)
  1907. {
  1908. return createTabBarExtrasButton();
  1909. }
  1910. void LookAndFeel_V2::paintToolbarButtonBackground (Graphics& g, int /*width*/, int /*height*/,
  1911. bool isMouseOver, bool isMouseDown,
  1912. ToolbarItemComponent& component)
  1913. {
  1914. if (isMouseDown)
  1915. g.fillAll (component.findColour (Toolbar::buttonMouseDownBackgroundColourId, true));
  1916. else if (isMouseOver)
  1917. g.fillAll (component.findColour (Toolbar::buttonMouseOverBackgroundColourId, true));
  1918. }
  1919. void LookAndFeel_V2::paintToolbarButtonLabel (Graphics& g, int x, int y, int width, int height,
  1920. const String& text, ToolbarItemComponent& component)
  1921. {
  1922. g.setColour (component.findColour (Toolbar::labelTextColourId, true)
  1923. .withAlpha (component.isEnabled() ? 1.0f : 0.25f));
  1924. const float fontHeight = jmin (14.0f, height * 0.85f);
  1925. g.setFont (fontHeight);
  1926. g.drawFittedText (text,
  1927. x, y, width, height,
  1928. Justification::centred,
  1929. jmax (1, height / (int) fontHeight));
  1930. }
  1931. //==============================================================================
  1932. void LookAndFeel_V2::drawPropertyPanelSectionHeader (Graphics& g, const String& name,
  1933. bool isOpen, int width, int height)
  1934. {
  1935. const float buttonSize = height * 0.75f;
  1936. const float buttonIndent = (height - buttonSize) * 0.5f;
  1937. drawTreeviewPlusMinusBox (g, Rectangle<float> (buttonIndent, buttonIndent, buttonSize, buttonSize), Colours::white, isOpen, false);
  1938. const int textX = (int) (buttonIndent * 2.0f + buttonSize + 2.0f);
  1939. g.setColour (Colours::black);
  1940. g.setFont (Font (height * 0.7f, Font::bold));
  1941. g.drawText (name, textX, 0, width - textX - 4, height, Justification::centredLeft, true);
  1942. }
  1943. void LookAndFeel_V2::drawPropertyComponentBackground (Graphics& g, int width, int height, PropertyComponent& component)
  1944. {
  1945. g.setColour (component.findColour (PropertyComponent::backgroundColourId));
  1946. g.fillRect (0, 0, width, height - 1);
  1947. }
  1948. void LookAndFeel_V2::drawPropertyComponentLabel (Graphics& g, int, int height, PropertyComponent& component)
  1949. {
  1950. g.setColour (component.findColour (PropertyComponent::labelTextColourId)
  1951. .withMultipliedAlpha (component.isEnabled() ? 1.0f : 0.6f));
  1952. g.setFont (jmin (height, 24) * 0.65f);
  1953. const Rectangle<int> r (getPropertyComponentContentPosition (component));
  1954. g.drawFittedText (component.getName(),
  1955. 3, r.getY(), r.getX() - 5, r.getHeight(),
  1956. Justification::centredLeft, 2);
  1957. }
  1958. Rectangle<int> LookAndFeel_V2::getPropertyComponentContentPosition (PropertyComponent& component)
  1959. {
  1960. const int textW = jmin (200, component.getWidth() / 3);
  1961. return Rectangle<int> (textW, 1, component.getWidth() - textW - 1, component.getHeight() - 3);
  1962. }
  1963. //==============================================================================
  1964. void LookAndFeel_V2::drawCallOutBoxBackground (CallOutBox& box, Graphics& g,
  1965. const Path& path, Image& cachedImage)
  1966. {
  1967. if (cachedImage.isNull())
  1968. {
  1969. cachedImage = Image (Image::ARGB, box.getWidth(), box.getHeight(), true);
  1970. Graphics g2 (cachedImage);
  1971. DropShadow (Colours::black.withAlpha (0.7f), 8, Point<int> (0, 2)).drawForPath (g2, path);
  1972. }
  1973. g.setColour (Colours::black);
  1974. g.drawImageAt (cachedImage, 0, 0);
  1975. g.setColour (Colour::greyLevel (0.23f).withAlpha (0.9f));
  1976. g.fillPath (path);
  1977. g.setColour (Colours::white.withAlpha (0.8f));
  1978. g.strokePath (path, PathStrokeType (2.0f));
  1979. }
  1980. int LookAndFeel_V2::getCallOutBoxBorderSize (const CallOutBox&)
  1981. {
  1982. return 20;
  1983. }
  1984. //==============================================================================
  1985. AttributedString LookAndFeel_V2::createFileChooserHeaderText (const String& title,
  1986. const String& instructions)
  1987. {
  1988. AttributedString s;
  1989. s.setJustification (Justification::centred);
  1990. const Colour colour (findColour (FileChooserDialogBox::titleTextColourId));
  1991. s.append (title + "\n\n", Font (17.0f, Font::bold), colour);
  1992. s.append (instructions, Font (14.0f), colour);
  1993. return s;
  1994. }
  1995. void LookAndFeel_V2::drawFileBrowserRow (Graphics& g, int width, int height,
  1996. const String& filename, Image* icon,
  1997. const String& fileSizeDescription,
  1998. const String& fileTimeDescription,
  1999. const bool isDirectory, const bool isItemSelected,
  2000. const int /*itemIndex*/, DirectoryContentsDisplayComponent& dcc)
  2001. {
  2002. Component* const fileListComp = dynamic_cast<Component*> (&dcc);
  2003. if (isItemSelected)
  2004. g.fillAll (fileListComp != nullptr ? fileListComp->findColour (DirectoryContentsDisplayComponent::highlightColourId)
  2005. : findColour (DirectoryContentsDisplayComponent::highlightColourId));
  2006. const int x = 32;
  2007. g.setColour (Colours::black);
  2008. if (icon != nullptr && icon->isValid())
  2009. {
  2010. g.drawImageWithin (*icon, 2, 2, x - 4, height - 4,
  2011. RectanglePlacement::centred | RectanglePlacement::onlyReduceInSize,
  2012. false);
  2013. }
  2014. else
  2015. {
  2016. if (const Drawable* d = isDirectory ? getDefaultFolderImage()
  2017. : getDefaultDocumentFileImage())
  2018. d->drawWithin (g, Rectangle<float> (2.0f, 2.0f, x - 4.0f, height - 4.0f),
  2019. RectanglePlacement::centred | RectanglePlacement::onlyReduceInSize, 1.0f);
  2020. }
  2021. g.setColour (fileListComp != nullptr ? fileListComp->findColour (DirectoryContentsDisplayComponent::textColourId)
  2022. : findColour (DirectoryContentsDisplayComponent::textColourId));
  2023. g.setFont (height * 0.7f);
  2024. if (width > 450 && ! isDirectory)
  2025. {
  2026. const int sizeX = roundToInt (width * 0.7f);
  2027. const int dateX = roundToInt (width * 0.8f);
  2028. g.drawFittedText (filename,
  2029. x, 0, sizeX - x, height,
  2030. Justification::centredLeft, 1);
  2031. g.setFont (height * 0.5f);
  2032. g.setColour (Colours::darkgrey);
  2033. if (! isDirectory)
  2034. {
  2035. g.drawFittedText (fileSizeDescription,
  2036. sizeX, 0, dateX - sizeX - 8, height,
  2037. Justification::centredRight, 1);
  2038. g.drawFittedText (fileTimeDescription,
  2039. dateX, 0, width - 8 - dateX, height,
  2040. Justification::centredRight, 1);
  2041. }
  2042. }
  2043. else
  2044. {
  2045. g.drawFittedText (filename,
  2046. x, 0, width - x, height,
  2047. Justification::centredLeft, 1);
  2048. }
  2049. }
  2050. Button* LookAndFeel_V2::createFileBrowserGoUpButton()
  2051. {
  2052. DrawableButton* goUpButton = new DrawableButton ("up", DrawableButton::ImageOnButtonBackground);
  2053. Path arrowPath;
  2054. arrowPath.addArrow (Line<float> (50.0f, 100.0f, 50.0f, 0.0f), 40.0f, 100.0f, 50.0f);
  2055. DrawablePath arrowImage;
  2056. arrowImage.setFill (Colours::black.withAlpha (0.4f));
  2057. arrowImage.setPath (arrowPath);
  2058. goUpButton->setImages (&arrowImage);
  2059. return goUpButton;
  2060. }
  2061. void LookAndFeel_V2::layoutFileBrowserComponent (FileBrowserComponent& browserComp,
  2062. DirectoryContentsDisplayComponent* fileListComponent,
  2063. FilePreviewComponent* previewComp,
  2064. ComboBox* currentPathBox,
  2065. TextEditor* filenameBox,
  2066. Button* goUpButton)
  2067. {
  2068. const int x = 8;
  2069. int w = browserComp.getWidth() - x - x;
  2070. if (previewComp != nullptr)
  2071. {
  2072. const int previewWidth = w / 3;
  2073. previewComp->setBounds (x + w - previewWidth, 0, previewWidth, browserComp.getHeight());
  2074. w -= previewWidth + 4;
  2075. }
  2076. int y = 4;
  2077. const int controlsHeight = 22;
  2078. const int bottomSectionHeight = controlsHeight + 8;
  2079. const int upButtonWidth = 50;
  2080. currentPathBox->setBounds (x, y, w - upButtonWidth - 6, controlsHeight);
  2081. goUpButton->setBounds (x + w - upButtonWidth, y, upButtonWidth, controlsHeight);
  2082. y += controlsHeight + 4;
  2083. if (Component* const listAsComp = dynamic_cast<Component*> (fileListComponent))
  2084. {
  2085. listAsComp->setBounds (x, y, w, browserComp.getHeight() - y - bottomSectionHeight);
  2086. y = listAsComp->getBottom() + 4;
  2087. }
  2088. filenameBox->setBounds (x + 50, y, w - 50, controlsHeight);
  2089. }
  2090. // Pulls a drawable out of compressed ValueTree data..
  2091. static Drawable* loadDrawableFromData (const void* data, size_t numBytes)
  2092. {
  2093. MemoryInputStream m (data, numBytes, false);
  2094. GZIPDecompressorInputStream gz (m);
  2095. ValueTree drawable (ValueTree::readFromStream (gz));
  2096. return Drawable::createFromValueTree (drawable.getChild (0), nullptr);
  2097. }
  2098. const Drawable* LookAndFeel_V2::getDefaultFolderImage()
  2099. {
  2100. if (folderImage == nullptr)
  2101. {
  2102. static const unsigned char drawableData[] =
  2103. { 120,218,197,86,77,111,27,55,16,229,182,161,237,6,61,39,233,77,63,192,38,56,195,225,215,209,105,210,2,141,13,20,201,193,109,111,178,181,178,183,145,181,130,180,110,145,127,159,199,93,73,137,87,53,218,91,109,192,160,151,179,156,55,111,222,188,229,155,247,
  2104. 231,87,231,175,47,222,170,234,155,229,244,190,86,213,115,253,102,61,253,123,122,189,168,85,51,83,213,119,250,238,221,47,231,151,175,223,169,170,250,121,221,62,172,84,245,172,60,63,209,243,118,49,171,215,170,107,87,23,245,188,83,213,145,182,167,19,91,
  2105. 254,127,223,220,222,117,37,68,82,40,143,174,219,174,107,239,135,168,147,18,37,108,85,245,237,46,207,70,33,249,175,211,238,78,85,186,28,253,76,175,73,109,186,117,251,177,190,106,102,229,241,247,58,24,103,203,15,101,245,103,219,44,187,15,221,39,0,172,142,
  2106. 245,125,211,1,196,205,116,181,125,114,164,175,31,186,78,45,219,229,31,245,186,189,106,150,179,102,121,139,100,154,240,231,167,102,177,64,72,247,105,213,23,122,187,158,206,154,122,217,169,85,57,18,1,47,53,101,107,18,135,204,167,147,192,201,216,20,114,
  2107. 244,195,62,171,234,7,125,198,100,136,216,145,149,211,9,57,103,40,249,72,219,8,167,170,87,250,140,162,199,123,226,3,34,82,202,134,131,13,172,74,170,233,162,0,177,234,166,93,180,15,235,141,170,206,180,157,204,231,150,156,159,207,39,195,50,214,88,18,150,
  2108. 245,205,124,250,104,169,212,135,158,19,144,53,20,112,172,55,237,2,132,13,199,149,130,230,115,145,112,147,147,82,61,157,32,238,178,253,11,145,213,138,10,52,138,38,103,111,99,164,211,137,139,198,35,177,35,167,212,143,15,215,205,13,160,109,163,172,225,152,
  2109. 16,232,17,149,140,103,144,158,146,90,113,217,12,6,197,167,236,3,54,5,181,101,73,54,138,90,245,165,227,120,18,252,150,77,15,242,188,228,204,81,169,139,102,249,5,68,192,145,14,244,112,1,145,29,94,137,96,235,49,136,151,58,246,32,88,192,161,88,176,76,226,
  2110. 36,247,24,176,7,232,62,16,83,42,155,201,160,30,222,65,72,98,82,76,33,198,254,197,96,124,10,150,243,8,130,48,228,36,94,124,6,4,43,38,0,142,205,99,30,4,221,13,33,230,220,71,177,65,49,142,243,150,7,1,51,20,2,5,96,96,84,225,56,217,188,3,33,46,24,228,112,
  2111. 69,69,12,68,228,108,242,99,16,165,118,208,28,51,200,98,87,42,74,62,209,24,4,206,48,22,153,125,132,220,196,56,15,234,99,216,130,0,141,38,74,162,130,48,35,163,141,94,196,245,32,94,104,7,154,132,209,40,108,162,165,232,153,165,17,4,138,201,176,135,58,49,
  2112. 165,130,122,108,114,54,28,240,64,17,89,188,79,177,116,149,10,4,246,91,30,94,104,112,96,226,144,131,144,142,98,78,177,7,128,81,242,224,140,36,249,80,208,145,196,12,202,15,16,60,161,200,69,187,169,213,86,198,123,87,224,255,199,21,94,105,134,72,40,177,245,
  2113. 14,182,32,232,54,196,231,100,111,11,189,168,201,39,177,84,102,38,139,177,168,74,210,87,174,64,20,138,160,67,111,10,4,98,196,97,60,158,118,133,25,111,173,224,171,37,97,185,119,133,221,242,63,184,194,140,71,174,240,252,145,43,72,32,147,146,147,4,104,104,
  2114. 117,134,10,18,12,107,212,40,72,148,57,6,71,69,135,222,248,16,160,168,3,169,144,55,201,69,41,147,137,134,99,50,97,8,178,85,43,217,140,201,151,192,152,10,242,190,24,11,59,183,29,25,42,115,236,98,14,229,252,32,80,66,0,162,17,136,72,6,67,5,45,242,224,10,
  2115. 193,102,71,50,6,17,129,212,18,115,105,150,80,169,45,123,222,141,76,178,70,32,55,24,90,217,132,71,73,200,57,238,204,3,136,49,144,185,55,183,190,20,137,52,246,47,113,232,158,69,35,49,145,208,129,193,56,178,77,135,230,145,113,22,140,69,74,20,146,2,120,218,
  2116. 155,135,48,32,10,89,30,156,165,204,254,222,193,160,12,19,49,6,210,59,11,70,62,4,31,15,64,196,2,157,98,33,58,1,104,32,152,50,31,128,64,148,183,197,108,209,89,107,240,41,75,36,123,16,208,108,180,44,236,250,182,227,27,20,137,118,76,60,165,137,221,92,94,
  2117. 78,215,31,235,245,230,183,242,229,30,214,251,251,195,145,94,148,15,253,170,221,52,93,211,46,7,109,171,81,208,177,94,247,119,132,47,81,186,92,22,246,7,255,254,15,7,107,141,171,197,191,156,123,162,135,187,198,227,131,113,219,80,159,1,4,239,223,231,0,0 };
  2118. folderImage = loadDrawableFromData (drawableData, sizeof (drawableData));
  2119. }
  2120. return folderImage;
  2121. }
  2122. const Drawable* LookAndFeel_V2::getDefaultDocumentFileImage()
  2123. {
  2124. if (documentImage == nullptr)
  2125. {
  2126. static const unsigned char drawableData[] =
  2127. { 120,218,213,88,77,115,219,54,16,37,147,208,246,228,214,75,155,246,164,123,29,12,176,216,197,199,49,105,218,94,156,153,78,114,72,219,155,108,75,137,26,89,212,200,116,59,233,175,239,3,105,201,164,68,50,158,166,233,76,196,11,69,60,173,128,197,123,139,183,
  2128. 124,241,234,217,155,103,207,207,126,204,242,7,171,233,213,44,203,31,23,47,54,211,191,166,231,203,89,182,184,204,242,147,226,195,165,219,252,125,150,229,249,207,155,242,102,157,229,143,210,227,199,197,101,121,113,115,53,91,85,89,85,174,207,102,243,42,
  2129. 203,143,10,125,58,209,233,251,171,197,219,119,85,250,173,97,151,30,157,151,85,85,94,53,168,147,132,50,226,179,252,225,246,143,174,179,44,63,254,101,90,189,203,242,34,5,127,84,172,77,118,93,109,202,247,179,55,139,203,244,248,97,161,179,63,202,197,170,
  2130. 122,93,125,192,196,242,227,226,106,81,205,54,217,197,116,125,251,228,168,56,191,169,170,108,85,174,126,159,109,202,55,139,213,229,98,245,182,249,97,254,240,167,197,114,137,5,86,31,214,245,111,175,203,37,254,230,162,92,150,55,155,180,148,249,237,39,203,
  2131. 94,215,127,58,10,213,245,39,203,234,249,102,249,87,47,203,63,129,204,49,227,252,73,225,149,145,104,131,245,254,116,34,202,82,164,16,153,179,236,108,177,234,7,49,41,237,130,144,167,17,144,15,42,104,239,93,12,35,32,99,68,9,187,24,125,7,244,77,23,36,164,
  2132. 40,56,226,61,12,107,229,130,215,100,105,24,227,89,17,246,211,105,55,140,49,218,43,207,100,245,72,28,195,70,17,230,201,118,8,243,164,139,233,95,88,23,52,152,162,54,104,48,217,237,105,15,111,91,107,253,131,160,118,34,239,69,128,54,232,135,101,121,61,203,
  2133. 110,169,181,147,2,253,159,82,48,180,229,247,167,74,193,41,141,188,35,93,241,116,18,148,113,214,120,207,113,47,19,109,16,51,182,153,193,5,59,2,10,90,69,114,218,135,48,2,50,198,43,171,189,152,81,144,88,108,85,136,78,246,64,54,42,163,35,69,30,3,121,82,38,
  2134. 98,81,98,70,64,70,139,34,111,163,167,49,144,13,202,138,179,58,220,23,52,180,186,54,104,48,79,109,208,96,198,219,19,31,220,187,118,10,6,65,237,100,222,139,5,109,80,191,30,236,151,162,135,147,142,30,68,105,182,58,6,22,84,43,229,124,148,116,97,145,55,231,
  2135. 139,11,76,228,16,37,14,48,205,145,77,134,34,176,55,152,182,200,57,99,93,204,144,145,253,65,97,229,132,72,104,63,62,71,21,140,54,186,41,226,59,84,19,63,130,15,222,235,224,185,59,104,27,226,68,101,153,241,227,177,248,29,20,136,26,8,252,178,183,241,219,
  2136. 131,137,160,209,107,109,92,79,124,16,211,184,104,93,77,130,110,124,2,65,172,67,201,60,157,88,163,2,91,99,92,216,198,55,78,69,75,190,150,119,84,98,200,71,150,109,124,36,204,227,52,8,33,229,223,68,167,173,167,131,248,137,212,226,141,19,233,160,154,248,
  2137. 144,142,195,140,137,185,59,104,15,247,119,40,126,23,69,81,200,242,110,254,123,20,49,94,112,110,245,199,111,241,167,87,36,252,101,138,132,149,22,22,38,65,134,29,182,139,24,230,192,31,144,184,133,130,72,44,131,210,142,111,147,216,30,76,123,30,113,206,242,
  2138. 150,196,157,65,129,130,76,180,194,61,34,225,160,5,228,233,160,118,34,137,26,202,115,212,29,108,72,134,243,223,90,114,226,199,226,119,80,6,245,152,197,122,217,146,184,53,24,140,210,30,21,59,80,79,124,182,202,71,207,218,112,159,72,80,53,140,109,68,2,191,
  2139. 227,217,210,78,36,94,137,88,231,82,157,8,176,61,0,122,191,19,137,3,255,13,39,183,228,20,193,151,144,119,166,79,36,40,253,156,138,72,11,181,19,137,14,46,176,217,27,180,135,251,219,31,255,235,61,148,165,96,72,122,118,23,229,81,52,135,24,250,163,183,216,
  2140. 211,43,17,217,151,136,253,116,137,28,53,188,127,92,188,221,76,47,23,169,59,90,167,144,141,239,197,86,104,141,189,60,157,80,84,142,140,4,31,154,241,122,105,132,41,107,13,201,39,86,120,24,82,114,206,198,6,96,27,227,172,36,232,168,201,36,219,24,113,62,163,
  2141. 154,101,233,143,166,203,102,26,141,206,174,179,252,89,161,39,243,249,197,121,186,38,233,246,146,211,53,1,123,56,194,231,122,143,103,179,217,60,204,167,19,147,110,41,93,173,219,123,72,89,248,35,173,16,220,50,179,111,60,181,24,88,103,156,235,7,78,248,14,
  2142. 4,119,78,162,93,60,112,35,109,16,124,126,12,17,71,67,24,1,165,142,1,181,215,248,56,6,66,235,193,137,167,61,22,30,5,3,27,101,71,64,169,25,112,216,2,63,22,169,110,43,18,200,140,129,208,160,88,44,220,208,125,65,67,171,107,131,6,243,212,6,13,102,188,61,241,
  2143. 225,189,107,165,96,16,212,78,230,189,88,208,6,245,235,214,237,235,150,62,167,110,155,106,170,53,133,192,117,193,20,84,78,74,174,98,39,92,156,8,112,21,46,80,106,12,209,207,225,228,16,113,59,225,126,87,60,133,25,209,34,36,2,99,242,52,197,48,30,75,244,247,
  2144. 212,238,246,182,173,221,185,78,215,127,167,221,162,163,221,250,152,217,146,196,222,145,100,223,235,105,108,28,250,149,212,74,224,86,2,213,118,110,119,204,224,144,208,38,214,131,200,14,214,223,120,189,230,53,1,193,70,133,154,131,56,223,16,229,48,188,14,
  2145. 201,205,213,121,71,233,68,89,15,124,103,37,53,26,11,118,176,127,169,88,166,158,219,178,117,173,83,108,75,95,55,68,186,193,53,246,146,206,127,6,63,53,78,58,228,204,155,224,113,74,91,232,221,195,240,105,215,34,29,138,64,128,183,8,130,233,71,173,56,54,101,
  2146. 99,75,186,111,65,58,28,229,145,82,19,152,12,99,180,81,130,131,75,234,229,220,247,53,231,154,79,205,185,185,155,199,249,172,38,85,253,204,76,68,95,92,204,207,255,221,75,178,227,14,187,224,224,97,202,172,173,219,12,167,130,133,9,54,135,245,92,176,29,134,
  2147. 165,110,139,141,18,16,223,29,188,183,65,207,144,106,144,151,143,128,224,176,168,110,140,32,62,56,110,219,195,54,235,20,68,209,216,34,232,21,6,41,234,157,39,211,201,107,160,230,66,225,56,153,9,101,21,37,237,150,204,14,115,208,22,221,54,216,230,33,116,
  2148. 14,65,14,44,19,8,236,73,71,246,182,110,125,224,75,132,195,214,247,163,36,51,252,84,76,124,37,212,100,88,62,183,179,76,67,217,218,242,244,229,116,243,126,182,185,254,21,105,126,208,220,239,94,229,30,21,203,244,202,117,93,94,47,170,69,185,106,246,60,219,
  2149. 3,29,23,155,250,109,237,29,170,72,175,109,119,129,127,235,9,92,20,85,185,254,72,220,147,162,121,235,219,13,44,144,225,63,241,244,165,51,0,0 };
  2150. documentImage = loadDrawableFromData (drawableData, sizeof (drawableData));
  2151. }
  2152. return documentImage;
  2153. }
  2154. //==============================================================================
  2155. void LookAndFeel_V2::drawLevelMeter (Graphics& g, int width, int height, float level)
  2156. {
  2157. g.setColour (Colours::white.withAlpha (0.7f));
  2158. g.fillRoundedRectangle (0.0f, 0.0f, (float) width, (float) height, 3.0f);
  2159. g.setColour (Colours::black.withAlpha (0.2f));
  2160. g.drawRoundedRectangle (1.0f, 1.0f, width - 2.0f, height - 2.0f, 3.0f, 1.0f);
  2161. const int totalBlocks = 7;
  2162. const int numBlocks = roundToInt (totalBlocks * level);
  2163. const float w = (width - 6.0f) / (float) totalBlocks;
  2164. for (int i = 0; i < totalBlocks; ++i)
  2165. {
  2166. if (i >= numBlocks)
  2167. g.setColour (Colours::lightblue.withAlpha (0.6f));
  2168. else
  2169. g.setColour (i < totalBlocks - 1 ? Colours::blue.withAlpha (0.5f)
  2170. : Colours::red);
  2171. g.fillRoundedRectangle (3.0f + i * w + w * 0.1f, 3.0f, w * 0.8f, height - 6.0f, w * 0.4f);
  2172. }
  2173. }
  2174. //==============================================================================
  2175. void LookAndFeel_V2::drawKeymapChangeButton (Graphics& g, int width, int height, Button& button, const String& keyDescription)
  2176. {
  2177. const Colour textColour (button.findColour (0x100ad01 /*KeyMappingEditorComponent::textColourId*/, true));
  2178. if (keyDescription.isNotEmpty())
  2179. {
  2180. if (button.isEnabled())
  2181. {
  2182. const float alpha = button.isDown() ? 0.3f : (button.isOver() ? 0.15f : 0.08f);
  2183. g.fillAll (textColour.withAlpha (alpha));
  2184. g.setOpacity (0.3f);
  2185. drawBevel (g, 0, 0, width, height, 2);
  2186. }
  2187. g.setColour (textColour);
  2188. g.setFont (height * 0.6f);
  2189. g.drawFittedText (keyDescription,
  2190. 3, 0, width - 6, height,
  2191. Justification::centred, 1);
  2192. }
  2193. else
  2194. {
  2195. const float thickness = 7.0f;
  2196. const float indent = 22.0f;
  2197. Path p;
  2198. p.addEllipse (0.0f, 0.0f, 100.0f, 100.0f);
  2199. p.addRectangle (indent, 50.0f - thickness, 100.0f - indent * 2.0f, thickness * 2.0f);
  2200. p.addRectangle (50.0f - thickness, indent, thickness * 2.0f, 50.0f - indent - thickness);
  2201. p.addRectangle (50.0f - thickness, 50.0f + thickness, thickness * 2.0f, 50.0f - indent - thickness);
  2202. p.setUsingNonZeroWinding (false);
  2203. g.setColour (textColour.withAlpha (button.isDown() ? 0.7f : (button.isOver() ? 0.5f : 0.3f)));
  2204. g.fillPath (p, p.getTransformToScaleToFit (2.0f, 2.0f, width - 4.0f, height - 4.0f, true));
  2205. }
  2206. if (button.hasKeyboardFocus (false))
  2207. {
  2208. g.setColour (textColour.withAlpha (0.4f));
  2209. g.drawRect (0, 0, width, height);
  2210. }
  2211. }
  2212. //==============================================================================
  2213. void LookAndFeel_V2::drawBevel (Graphics& g, const int x, const int y, const int width, const int height,
  2214. const int bevelThickness, const Colour& topLeftColour, const Colour& bottomRightColour,
  2215. const bool useGradient, const bool sharpEdgeOnOutside)
  2216. {
  2217. if (g.clipRegionIntersects (Rectangle<int> (x, y, width, height)))
  2218. {
  2219. LowLevelGraphicsContext& context = g.getInternalContext();
  2220. context.saveState();
  2221. for (int i = bevelThickness; --i >= 0;)
  2222. {
  2223. const float op = useGradient ? (sharpEdgeOnOutside ? bevelThickness - i : i) / (float) bevelThickness
  2224. : 1.0f;
  2225. context.setFill (topLeftColour.withMultipliedAlpha (op));
  2226. context.fillRect (Rectangle<int> (x + i, y + i, width - i * 2, 1), false);
  2227. context.setFill (topLeftColour.withMultipliedAlpha (op * 0.75f));
  2228. context.fillRect (Rectangle<int> (x + i, y + i + 1, 1, height - i * 2 - 2), false);
  2229. context.setFill (bottomRightColour.withMultipliedAlpha (op));
  2230. context.fillRect (Rectangle<int> (x + i, y + height - i - 1, width - i * 2, 1), false);
  2231. context.setFill (bottomRightColour.withMultipliedAlpha (op * 0.75f));
  2232. context.fillRect (Rectangle<int> (x + width - i - 1, y + i + 1, 1, height - i * 2 - 2), false);
  2233. }
  2234. context.restoreState();
  2235. }
  2236. }
  2237. //==============================================================================
  2238. void LookAndFeel_V2::drawShinyButtonShape (Graphics& g,
  2239. float x, float y, float w, float h,
  2240. float maxCornerSize,
  2241. const Colour& baseColour,
  2242. const float strokeWidth,
  2243. const bool flatOnLeft,
  2244. const bool flatOnRight,
  2245. const bool flatOnTop,
  2246. const bool flatOnBottom) noexcept
  2247. {
  2248. if (w <= strokeWidth * 1.1f || h <= strokeWidth * 1.1f)
  2249. return;
  2250. const float cs = jmin (maxCornerSize, w * 0.5f, h * 0.5f);
  2251. Path outline;
  2252. outline.addRoundedRectangle (x, y, w, h, cs, cs,
  2253. ! (flatOnLeft || flatOnTop),
  2254. ! (flatOnRight || flatOnTop),
  2255. ! (flatOnLeft || flatOnBottom),
  2256. ! (flatOnRight || flatOnBottom));
  2257. ColourGradient cg (baseColour, 0.0f, y,
  2258. baseColour.overlaidWith (Colour (0x070000ff)), 0.0f, y + h,
  2259. false);
  2260. cg.addColour (0.5, baseColour.overlaidWith (Colour (0x33ffffff)));
  2261. cg.addColour (0.51, baseColour.overlaidWith (Colour (0x110000ff)));
  2262. g.setGradientFill (cg);
  2263. g.fillPath (outline);
  2264. g.setColour (Colour (0x80000000));
  2265. g.strokePath (outline, PathStrokeType (strokeWidth));
  2266. }
  2267. //==============================================================================
  2268. void LookAndFeel_V2::drawGlassSphere (Graphics& g, const float x, const float y,
  2269. const float diameter, const Colour& colour,
  2270. const float outlineThickness) noexcept
  2271. {
  2272. if (diameter <= outlineThickness)
  2273. return;
  2274. Path p;
  2275. p.addEllipse (x, y, diameter, diameter);
  2276. {
  2277. ColourGradient cg (Colours::white.overlaidWith (colour.withMultipliedAlpha (0.3f)), 0, y,
  2278. Colours::white.overlaidWith (colour.withMultipliedAlpha (0.3f)), 0, y + diameter, false);
  2279. cg.addColour (0.4, Colours::white.overlaidWith (colour));
  2280. g.setGradientFill (cg);
  2281. g.fillPath (p);
  2282. }
  2283. g.setGradientFill (ColourGradient (Colours::white, 0, y + diameter * 0.06f,
  2284. Colours::transparentWhite, 0, y + diameter * 0.3f, false));
  2285. g.fillEllipse (x + diameter * 0.2f, y + diameter * 0.05f, diameter * 0.6f, diameter * 0.4f);
  2286. ColourGradient cg (Colours::transparentBlack,
  2287. x + diameter * 0.5f, y + diameter * 0.5f,
  2288. Colours::black.withAlpha (0.5f * outlineThickness * colour.getFloatAlpha()),
  2289. x, y + diameter * 0.5f, true);
  2290. cg.addColour (0.7, Colours::transparentBlack);
  2291. cg.addColour (0.8, Colours::black.withAlpha (0.1f * outlineThickness));
  2292. g.setGradientFill (cg);
  2293. g.fillPath (p);
  2294. g.setColour (Colours::black.withAlpha (0.5f * colour.getFloatAlpha()));
  2295. g.drawEllipse (x, y, diameter, diameter, outlineThickness);
  2296. }
  2297. //==============================================================================
  2298. void LookAndFeel_V2::drawGlassPointer (Graphics& g,
  2299. const float x, const float y, const float diameter,
  2300. const Colour& colour, const float outlineThickness,
  2301. const int direction) noexcept
  2302. {
  2303. if (diameter <= outlineThickness)
  2304. return;
  2305. Path p;
  2306. p.startNewSubPath (x + diameter * 0.5f, y);
  2307. p.lineTo (x + diameter, y + diameter * 0.6f);
  2308. p.lineTo (x + diameter, y + diameter);
  2309. p.lineTo (x, y + diameter);
  2310. p.lineTo (x, y + diameter * 0.6f);
  2311. p.closeSubPath();
  2312. p.applyTransform (AffineTransform::rotation (direction * (float_Pi * 0.5f), x + diameter * 0.5f, y + diameter * 0.5f));
  2313. {
  2314. ColourGradient cg (Colours::white.overlaidWith (colour.withMultipliedAlpha (0.3f)), 0, y,
  2315. Colours::white.overlaidWith (colour.withMultipliedAlpha (0.3f)), 0, y + diameter, false);
  2316. cg.addColour (0.4, Colours::white.overlaidWith (colour));
  2317. g.setGradientFill (cg);
  2318. g.fillPath (p);
  2319. }
  2320. ColourGradient cg (Colours::transparentBlack,
  2321. x + diameter * 0.5f, y + diameter * 0.5f,
  2322. Colours::black.withAlpha (0.5f * outlineThickness * colour.getFloatAlpha()),
  2323. x - diameter * 0.2f, y + diameter * 0.5f, true);
  2324. cg.addColour (0.5, Colours::transparentBlack);
  2325. cg.addColour (0.7, Colours::black.withAlpha (0.07f * outlineThickness));
  2326. g.setGradientFill (cg);
  2327. g.fillPath (p);
  2328. g.setColour (Colours::black.withAlpha (0.5f * colour.getFloatAlpha()));
  2329. g.strokePath (p, PathStrokeType (outlineThickness));
  2330. }
  2331. //==============================================================================
  2332. void LookAndFeel_V2::drawGlassLozenge (Graphics& g,
  2333. const float x, const float y, const float width, const float height,
  2334. const Colour& colour, const float outlineThickness, const float cornerSize,
  2335. const bool flatOnLeft,
  2336. const bool flatOnRight,
  2337. const bool flatOnTop,
  2338. const bool flatOnBottom) noexcept
  2339. {
  2340. if (width <= outlineThickness || height <= outlineThickness)
  2341. return;
  2342. const int intX = (int) x;
  2343. const int intY = (int) y;
  2344. const int intW = (int) width;
  2345. const int intH = (int) height;
  2346. const float cs = cornerSize < 0 ? jmin (width * 0.5f, height * 0.5f) : cornerSize;
  2347. const float edgeBlurRadius = height * 0.75f + (height - cs * 2.0f);
  2348. const int intEdge = (int) edgeBlurRadius;
  2349. Path outline;
  2350. outline.addRoundedRectangle (x, y, width, height, cs, cs,
  2351. ! (flatOnLeft || flatOnTop),
  2352. ! (flatOnRight || flatOnTop),
  2353. ! (flatOnLeft || flatOnBottom),
  2354. ! (flatOnRight || flatOnBottom));
  2355. {
  2356. ColourGradient cg (colour.darker (0.2f), 0, y,
  2357. colour.darker (0.2f), 0, y + height, false);
  2358. cg.addColour (0.03, colour.withMultipliedAlpha (0.3f));
  2359. cg.addColour (0.4, colour);
  2360. cg.addColour (0.97, colour.withMultipliedAlpha (0.3f));
  2361. g.setGradientFill (cg);
  2362. g.fillPath (outline);
  2363. }
  2364. ColourGradient cg (Colours::transparentBlack, x + edgeBlurRadius, y + height * 0.5f,
  2365. colour.darker (0.2f), x, y + height * 0.5f, true);
  2366. cg.addColour (jlimit (0.0, 1.0, 1.0 - (cs * 0.5f) / edgeBlurRadius), Colours::transparentBlack);
  2367. cg.addColour (jlimit (0.0, 1.0, 1.0 - (cs * 0.25f) / edgeBlurRadius), colour.darker (0.2f).withMultipliedAlpha (0.3f));
  2368. if (! (flatOnLeft || flatOnTop || flatOnBottom))
  2369. {
  2370. g.saveState();
  2371. g.setGradientFill (cg);
  2372. g.reduceClipRegion (intX, intY, intEdge, intH);
  2373. g.fillPath (outline);
  2374. g.restoreState();
  2375. }
  2376. if (! (flatOnRight || flatOnTop || flatOnBottom))
  2377. {
  2378. cg.point1.setX (x + width - edgeBlurRadius);
  2379. cg.point2.setX (x + width);
  2380. g.saveState();
  2381. g.setGradientFill (cg);
  2382. g.reduceClipRegion (intX + intW - intEdge, intY, 2 + intEdge, intH);
  2383. g.fillPath (outline);
  2384. g.restoreState();
  2385. }
  2386. {
  2387. const float leftIndent = flatOnTop || flatOnLeft ? 0.0f : cs * 0.4f;
  2388. const float rightIndent = flatOnTop || flatOnRight ? 0.0f : cs * 0.4f;
  2389. Path highlight;
  2390. highlight.addRoundedRectangle (x + leftIndent,
  2391. y + cs * 0.1f,
  2392. width - (leftIndent + rightIndent),
  2393. height * 0.4f,
  2394. cs * 0.4f,
  2395. cs * 0.4f,
  2396. ! (flatOnLeft || flatOnTop),
  2397. ! (flatOnRight || flatOnTop),
  2398. ! (flatOnLeft || flatOnBottom),
  2399. ! (flatOnRight || flatOnBottom));
  2400. g.setGradientFill (ColourGradient (colour.brighter (10.0f), 0, y + height * 0.06f,
  2401. Colours::transparentWhite, 0, y + height * 0.4f, false));
  2402. g.fillPath (highlight);
  2403. }
  2404. g.setColour (colour.darker().withMultipliedAlpha (1.5f));
  2405. g.strokePath (outline, PathStrokeType (outlineThickness));
  2406. }