blob: af0b613478cc776cb1f27854c9fcd5c692eeab5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#pragma once
/* Application core: event loop, base event processing, audio synth. */
#include <the_Foundation/string.h>
iDeclareType(Window)
enum iAppEventMode {
waitForNewEvents_AppEventMode,
postedEventsOnly_AppEventMode,
};
enum iUserEventCode {
command_UserEventCode = 1,
refresh_UserEventCode = 2,
};
const iString *execPath_App (void);
int run_App (int argc, char **argv);
void processEvents_App (enum iAppEventMode mode);
void refresh_App (void);
iAny * findWidget_App (const char *id);
void addTicker_App (void (*ticker)(iAny *), iAny *context);
void postRefresh_App (void);
void postCommand_App (const char *command);
void postCommandf_App (const char *command, ...);
iLocalDef void postCommandString_App(const iString *command) {
postCommand_App(cstr_String(command));
}
iBool handleCommand_App (const char *cmd);
|