comparison mde/gui/renderer/IRenderer.d @ 111:1655693702fc

Resolved ticket #4, allowing widgets to reload strings and recalculate sizes mid-run. Removed prefinalize and finalize and added setup as the new second initialization phase, which can be re-run.
author Diggory Hardy <diggory.hardy@gmail.com>
date Sat, 06 Dec 2008 17:41:42 +0000
parents 2a1428ec5344
children d28aea50c6da
comparison
equal deleted inserted replaced
110:6acd96f8685f 111:1655693702fc
168 void drawToggle (wdim x, wdim y, bool state, bool pushed); /// ditto 168 void drawToggle (wdim x, wdim y, bool state, bool pushed); /// ditto
169 169
170 /** Get a TextAdapter to draw some text. 170 /** Get a TextAdapter to draw some text.
171 * 171 *
172 * If no colour is passes, a default is used (white). */ 172 * If no colour is passes, a default is used (white). */
173 TextAdapter getAdapter (char[] text, int colour = 0xFFFFFF); 173 TextAdapter getAdapter (int colour = 0xFFFFFF);
174 //END Methods 174 //END Methods
175 } 175 }