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.

27 lines
558B

  1. #pragma once
  2. #include <widget/OpaqueWidget.hpp>
  3. #include <Quantity.hpp>
  4. #include <ui/common.hpp>
  5. #include <context.hpp>
  6. namespace rack {
  7. namespace ui {
  8. struct Slider : widget::OpaqueWidget {
  9. /** Not owned. */
  10. Quantity* quantity = NULL;
  11. Slider();
  12. void draw(const DrawArgs& args) override;
  13. void onDragStart(const event::DragStart& e) override;
  14. void onDragMove(const event::DragMove& e) override;
  15. void onDragEnd(const event::DragEnd& e) override;
  16. void onDoubleClick(const event::DoubleClick& e) override;
  17. };
  18. } // namespace ui
  19. } // namespace rack