|
123456789101112131415161718192021222324252627282930313233 |
- /*
- ZynAddSubFX - a software synthesizer
-
- Connection.h - In-Process GUI Stubs
- Copyright (C) 2016 Mark McCurry
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- */
- //Defines the methods of communication for the GUI
- //Expect this code to mutate into some sort of ugly beast that will slowly
- //remove the tendrils of the UI from the RT code
-
- class Fl_Osc_Interface;
- namespace zyncarla
- {
- class MiddleWare;
- }
-
- namespace GUI
- {
- typedef void *ui_handle_t;
-
- ui_handle_t createUi(Fl_Osc_Interface *osc, void *exit);
- void destroyUi(ui_handle_t);
- void raiseUi(ui_handle_t, const char *);
- void raiseUi(ui_handle_t, const char *, const char *, ...);
- void tickUi(ui_handle_t);
-
- Fl_Osc_Interface *genOscInterface(zyncarla::MiddleWare*);
- };
|