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.

16 lines
433B

  1. #pragma once
  2. #include "widgets/Widget.hpp"
  3. #include "widgets/EventWidget.hpp"
  4. #include "widgets/TransparentWidget.hpp"
  5. #include "widgets/OpaqueWidget.hpp"
  6. #include "widgets/TransformWidget.hpp"
  7. #include "widgets/ZoomWidget.hpp"
  8. #include "widgets/SVGWidget.hpp"
  9. #include "widgets/FramebufferWidget.hpp"
  10. #include "widgets/QuantityWidget.hpp"
  11. #define CHECKMARK_STRING "✔"
  12. #define CHECKMARK(_cond) ((_cond) ? CHECKMARK_STRING : "")