Changes between Initial Version and Version 1 of GUI_-_Progress-bar


Ignore:
Timestamp:
Feb 23, 2008, 4:19:01 AM (16 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GUI_-_Progress-bar

    v1 v1  
     1{{Template:GUI_Object|progressbar|[wiki:GUI_-_Properties#caption caption], [wiki:GUI_-_Properties#sprite_background sprite_background], [wiki:GUI_-_Properties#sprite_bar sprite_bar], [wiki:GUI_-_Properties#tooltip tooltip], [wiki:GUI_-_Properties#tooltip_style tooltip_style]|none}}
     2
     3A progress-bar visually displays a value between 0 and 100%. The value can be everything between 0 and 100 and is stored in ''caption''.
     4
     5First a sprite is drawn to fill the whole size of the progressbar. Then another sprite is drawn on top of the first one, but spanning only to an extent, representing the given value, in width.
     6
     7[wiki:Image:gui-object-progressbar.png]
     8
     9'''''Code of example progressbar:'''''
     10
     11{{{
     12  <object type="progressbar"
     13          size="20 300 230 325"
     14          sprite_background="gd-input"
     15          sprite_bar="gd-blue"
     16  >30
     17  </object>
     18}}}