DISTRHO Plugin Framework
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.

17 lines
458B

  1. // Copyright Jean Pierre Cimalando 2018.
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #include "Widget.hpp"
  6. class DemoWidgetClickable : public Widget {
  7. public:
  8. explicit DemoWidgetClickable(Widget *group);
  9. void onDisplay() override;
  10. bool onMouse(const MouseEvent &event) override;
  11. private:
  12. unsigned colorid_ = 0;
  13. };