[SDL_Tizen] Improve indicator functions
[platform/upstream/SDL.git] / src / video / tizen / SDL_tizenwindow.h
index fa9a798..1b5fff1 100755 (executable)
@@ -47,6 +47,7 @@ typedef struct {
     int received_rotation;
 
     SDL_bool support_pre_rotation;
+    SDL_bool support_indicator;
 
 } SDL_WindowData;
 
@@ -95,14 +96,19 @@ extern void _tizen_ecore_ipc_client_send(int major, int minor, int ref, int ref_
 extern void _tizen_set_window_size(SDL_Window * window, int w, int h);
 enum
 {
-    OP_INDICATOR_SHOW=1,
+    OP_INDICATOR_INIT = 1,
+    OP_INDICATOR_SHOW,
     OP_INDICATOR_HIDE,
     OP_RESUME,
     OP_PAUSE,
     OP_TERMINATE
 };
 
-extern void Tizen_ExecuteIndicatorProcess();
+extern void Tizen_ExecuteIndicatorProcess(SDL_WindowData *wind);
+extern void _tizen_ecore_ipc_client_send(int major, int minor, int ref, int ref_to);
+
+extern void _tizen_quickpanel_on(SDL_WindowData *wind);
+extern void _tizen_quickpanel_off(SDL_WindowData *wind);
 
 #endif /* _SDL_tizenwindow_h */