| 64 | class MenuButton : public juce::ShapeButton { |
| 65 | public: |
| 66 | explicit MenuButton(const juce::String &buttonName) |
| 67 | : juce::ShapeButton(buttonName, juce::Colours::lightgrey, juce::Colours::lightgrey, juce::Colours::white) { |
| 68 | // From JUCE/examples/GUI/MenusDemo.h |
| 69 | static constexpr uint8_t burgerMenuPathData[] = { |
| 70 | 110,109,0,0,128,64,0,0,32,65,108,0,0,224,65,0,0,32,65,98,254,212,232,65,0,0,32,65,0,0,240,65,252, |
| 71 | 169,17,65,0,0,240,65,0,0,0,65,98,0,0,240,65,8,172,220,64,254,212,232,65,0,0,192,64,0,0,224,65,0,0, |
| 72 | 192,64,108,0,0,128,64,0,0,192,64,98,16,88,57,64,0,0,192,64,0,0,0,64,8,172,220,64,0,0,0,64,0,0,0,65, |
| 73 | 98,0,0,0,64,252,169,17,65,16,88,57,64,0,0,32,65,0,0,128,64,0,0,32,65,99,109,0,0,224,65,0,0,96,65,108, |
| 74 | 0,0,128,64,0,0,96,65,98,16,88,57,64,0,0,96,65,0,0,0,64,4,86,110,65,0,0,0,64,0,0,128,65,98,0,0,0,64, |
| 75 | 254,212,136,65,16,88,57,64,0,0,144,65,0,0,128,64,0,0,144,65,108,0,0,224,65,0,0,144,65,98,254,212,232, |
| 76 | 65,0,0,144,65,0,0,240,65,254,212,136,65,0,0,240,65,0,0,128,65,98,0,0,240,65,4,86,110,65,254,212,232, |
| 77 | 65,0,0,96,65,0,0,224,65,0,0,96,65,99,109,0,0,224,65,0,0,176,65,108,0,0,128,64,0,0,176,65,98,16,88,57, |
| 78 | 64,0,0,176,65,0,0,0,64,2,43,183,65,0,0,0,64,0,0,192,65,98,0,0,0,64,254,212,200,65,16,88,57,64,0,0,208, |
| 79 | 65,0,0,128,64,0,0,208,65,108,0,0,224,65,0,0,208,65,98,254,212,232,65,0,0,208,65,0,0,240,65,254,212, |
| 80 | 200,65,0,0,240,65,0,0,192,65,98,0,0,240,65,2,43,183,65,254,212,232,65,0,0,176,65,0,0,224,65,0,0,176, |
| 81 | 65,99,101,0,0 |
| 82 | }; |
| 83 | juce::Path path; |
| 84 | path.loadPathFromData(burgerMenuPathData, sizeof(burgerMenuPathData)); |
| 85 | setShape(path, false, true, false); |
| 86 | setBorderSize(juce::BorderSize<int>(4)); |
| 87 | } |
| 88 | |
| 89 | void mouseDown(const juce::MouseEvent &event) override { |
| 90 | if (event.eventComponent == this) { |
nothing calls this directly
no outgoing calls
no test coverage detected