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.

21 lines
405B

  1. #pragma once
  2. #include "app.hpp"
  3. namespace rack {
  4. void guiInit();
  5. void guiDestroy();
  6. void guiRun();
  7. bool guiIsKeyPressed(int key);
  8. void guiCursorLock();
  9. void guiCursorUnlock();
  10. const char *guiSaveDialog(const char *filters, const char *filename);
  11. const char *guiOpenDialog(const char *filters, const char *filename);
  12. extern NVGcontext *gVg;
  13. extern std::shared_ptr<Font> gGuiFont;
  14. } // namespace rack