Subversion Repositories Games.Chess Giants

Rev

Rev 136 | Rev 150 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 136 Rev 140
Line 191... Line 191...
191
void Scene_Init (scene_t *scene, board_t *board);
191
void Scene_Init (scene_t *scene, board_t *board);
192
void Scene_Shutdown (scene_t *scene);
192
void Scene_Shutdown (scene_t *scene);
193
void Scene_Update (scene_t *scene, board_t *board);
193
void Scene_Update (scene_t *scene, board_t *board);
194
void Scene_AddCCReply (scene_t *scene, wchar_t *nickname, wchar_t *channelname, unsigned long color_rgbx, wchar_t *fmt, ...);
194
void Scene_AddCCReply (scene_t *scene, wchar_t *nickname, wchar_t *channelname, unsigned long color_rgbx, wchar_t *fmt, ...);
195
void Scene_AddAnnouncement (scene_t *scene, wchar_t *fmt, ...);
195
void Scene_AddAnnouncement (scene_t *scene, wchar_t *fmt, ...);
196
void Scene_SetButton (guibutton_t *button, float left, float top, float width, float height, int sprite_index, wchar_t *fmt, ...);
196
void Scene_SetupButton (guibutton_t *button, float left_percent, float top_percent, float width_percent, float height_percent, int sprite_index, wchar_t *fmt, ...);
197
void Scene_SetText (guitext_t *text, float xpos_percent, float ypos_percent, float maxwidth_percent, int horizontal_align, int vertical_align, int text_align, int font_index, unsigned long color_rgba, float duration, bool want_fade, wchar_t *fmt, ...);
197
void Scene_SetupTextArea (guitext_t *text, float xpos_percent, float ypos_percent, float maxwidth_percent, int horizontal_align, int vertical_align, int text_align, int font_index);
-
 
198
void Scene_UpdateText (guitext_t *text, unsigned long color_rgba, float duration, bool want_fade, wchar_t *fmt, ...);
198
 
199
 
199
// tabcontrol.cpp function prototypes
200
// tabcontrol.cpp function prototypes
200
void *TabControl_New (HWND hTabControlWnd, WNDPROC ParentProc);
201
void *TabControl_New (HWND hTabControlWnd, WNDPROC ParentProc);
201
void TabControl_AddPage (void *tab_control, wchar_t *page_name, int dialog_id);
202
void TabControl_AddPage (void *tab_control, wchar_t *page_name, int dialog_id);
202
void TabControl_SelectTab (void *tab_control, int page_index);
203
void TabControl_SelectTab (void *tab_control, int page_index);