|
|
@@ -3,6 +3,7 @@ |
|
|
|
#include <blendish.h> |
|
|
|
|
|
|
|
#include <common.hpp> |
|
|
|
#include <color.hpp> |
|
|
|
|
|
|
|
/** Useful for menu items with a "true" boolean state */ |
|
|
|
#define CHECKMARK_STRING "✔" |
|
|
@@ -10,3 +11,20 @@ |
|
|
|
|
|
|
|
/** Useful for menu items that open a sub-menu */ |
|
|
|
#define RIGHT_ARROW "▸" |
|
|
|
|
|
|
|
|
|
|
|
namespace rack { |
|
|
|
|
|
|
|
|
|
|
|
/** General user interface widgets using Blendish |
|
|
|
*/ |
|
|
|
namespace ui { |
|
|
|
|
|
|
|
|
|
|
|
void init(); |
|
|
|
void destroy(); |
|
|
|
void setTheme(NVGcolor bg, NVGcolor fg); |
|
|
|
|
|
|
|
|
|
|
|
} // namespace ui |
|
|
|
} // namespace rack |