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.

13 lines
303B

  1. #pragma once
  2. #include <nanovg.h>
  3. #include <blendish.h>
  4. #include <common.hpp>
  5. /** Useful for menu items with a "true" boolean state */
  6. #define CHECKMARK_STRING "✔"
  7. #define CHECKMARK(_cond) ((_cond) ? CHECKMARK_STRING : "")
  8. /** Useful for menu items that open a sub-menu */
  9. #define RIGHT_ARROW "▸"