Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation2/data/gui/scripts/GUITools.lua @ 6292

Last change on this file since 6292 was 6283, checked in by dafrick, 14 years ago

Some enhancements in KeyBindMenu.lua and InfoPopup, clear doesn't work, yet.

File size: 372 bytes
Line 
1function openDecisionPopup( text, callbackPtr )
2    showGUI("DecisionPopup", false, true)
3    DecisionPopup.setCallback(callbackPtr)
4    DecisionPopup.setText(text)
5end
6
7function openInfoPopup(text, functionPtr, closeButton)
8    showGUI("InfoPopup", false, true)
9    InfoPopup.execute(functionPtr)
10    InfoPopup.setText(text)
11    InfoPopup.setCloseButton(closeButton)
12end
Note: See TracBrowser for help on using the repository browser.