ui_popup.h
Go to the documentation of this file.00001
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef CLIENT_UI_UI_POPUP_H
00026 #define CLIENT_UI_UI_POPUP_H
00027
00028 #include "node/ui_node_text.h"
00029
00030 #define POPUPLIST_WINDOW_NAME "popup_list"
00031 #define POPUPLIST_NODE_NAME "popup_list"
00032
00034
00035 #define UI_MAX_SMALLTEXTLEN 1024
00036
00037 extern char popupText[UI_MAX_SMALLTEXTLEN];
00038
00039 void UI_Popup(const char *title, const char *text);
00040 struct uiNode_s *UI_PopupList(const char *title, const char *headline, linkedList_t* entries, const char *clickAction);
00041 void UI_PopupButton(const char *title, const char *text,
00042 const char *clickAction1, const char *clickText1, const char *tooltip1,
00043 const char *clickAction2, const char *clickText2, const char *tooltip2,
00044 const char *clickAction3, const char *clickText3, const char *tooltip3);
00045
00046 #endif