The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

3002 lines
125KB

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