annotate tools/editor/gui/lightedit.xml @ 697:ecaa4d98f05f tip

Abstracted the GUI code and refactored the GUIChan-specific code into its own module. * Most of the GUIChan code has been refactored into its own gui/guichan module. However, references to the GuiFont class still persist in the Engine and GuiManager code and these will need further refactoring. * GuiManager is now an abstract base class which specific implementations (e.g. GUIChan) should subclass. * The GUIChan GUI code is now a concrete implementation of GuiManager, most of which is in the new GuiChanGuiManager class. * The GUI code in the Console class has been refactored out of the Console and into the GUIChan module as its own GuiChanConsoleWidget class. The rest of the Console class related to executing commands was left largely unchanged. * Existing client code may need to downcast the GuiManager pointer received from FIFE::Engine::getGuiManager() to GuiChanGuiManager, since not all functionality is represented in the GuiManager abstract base class. Python client code can use the new GuiChanGuiManager.castTo static method for this purpose.
author M. George Hansen <technopolitica@gmail.com>
date Sat, 18 Jun 2011 00:28:40 -1000
parents 60621d858548
children
rev   line source
680
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
1 <Panel title="Light Editor" position="10,700" min_size="200,250">
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
2
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
3 <VBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
4 <Label text="General Options" min_size="45,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
5 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
6 <Label text="Group: " min_size="100,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
7 <TextField name="group" text="" min_size="100, 20" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
8 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
9
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
10 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
11 <Label text="Instance Id: " min_size="100,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
12 <TextField name="ins_id" text="" min_size="100, 20" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
13 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
14
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
15 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
16 <Label text="Object Id: " min_size="100,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
17 <TextField name="obj_id" text="" min_size="100, 20" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
18 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
19
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
20 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
21 <Label text="Stencil Test: " min_size="25,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
22 <TextBox text="-1" name="stencil" size="30,20" min_size="30,20" max_size="30,20" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
23 <Button name="stencil_up" text="+" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
24 <Button name="stencil_dn" text="-" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
25 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
26
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
27 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
28 <Label text="Alpha Test: " min_size="25,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
29 <TextBox text="0.0" name="alpha" size="30,20" min_size="30,20" max_size="30,20" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
30 <Button name="alpha_up" text="+" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
31 <Button name="alpha_dn" text="-" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
32 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
33
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
34 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
35 <Label text="Src Blend Mode: " min_size="25,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
36 <TextBox text="-1" name="src" size="30,20" min_size="30,20" max_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
37 <Button name="src_up" text="+" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
38 <Button name="src_dn" text="-" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
39 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
40
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
41 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
42 <Label text="Dst Blend Mode: " min_size="25,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
43 <TextBox text="-1" name="dst" size="30,20" min_size="30,20" max_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
44 <Button name="dst_up" text="+" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
45 <Button name="dst_dn" text="-" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
46 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
47
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
48 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
49 <Button text="Simple" name="simple_but" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
50 <Button text="Image" name="image_but" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
51 <Button text="Animation" name="animation_but" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
52 <Button text="Global" name="global_but" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
53 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
54
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
55 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
56 <Button text="Reset" name="reset" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
57 <Button text="Use" name="use" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
58 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
59 </VBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
60
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
61 <VBox name="simple_panel_wrapper">
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
62 <VBox name="simple_panel">
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
63 <Label text="Simple Light" min_size="45,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
64 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
65 <Label text="Intensity: " min_size="25,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
66 <TextBox text="0" name="intensity" size="30,20" min_size="30,20" max_size="30,20" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
67 <Button name="intensity_up" text="+" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
68 <Button name="intensity_dn" text="-" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
69 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
70
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
71 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
72 <Label text="R: " min_size="25,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
73 <TextBox text="0" name="red" size="30,20" min_size="30,20" max_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
74 <Button name="red_up" text="+" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
75 <Button name="red_dn" text="-" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
76 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
77
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
78 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
79 <Label text="G: " min_size="25,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
80 <TextBox text="0" name="green" size="30,20" min_size="30,20" max_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
81 <Button name="green_up" text="+" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
82 <Button name="green_dn" text="-" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
83 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
84
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
85 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
86 <Label text="B: " min_size="25,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
87 <TextBox text="0" name="blue" size="30,20" min_size="30,20" max_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
88 <Button name="blue_up" text="+" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
89 <Button name="blue_dn" text="-" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
90 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
91
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
92 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
93 <Label text="Radius: " min_size="25,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
94 <TextBox text="0" name="radius" size="30,20" min_size="30,20" max_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
95 <Button name="radius_up" text="+" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
96 <Button name="radius_dn" text="-" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
97 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
98
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
99 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
100 <Label text="Subdivisions: " min_size="25,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
101 <TextBox text="32" name="subdivisions" size="30,20" min_size="30,20" max_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
102 <Button name="subdivisions_up" text="+" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
103 <Button name="subdivisions_dn" text="-" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
104 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
105
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
106 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
107 <Label text="X-Stretch: " min_size="25,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
108 <TextBox text="1" name="xstretch" size="30,20" min_size="30,20" max_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
109 <Button name="xstretch_up" text="+" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
110 <Button name="xstretch_dn" text="-" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
111 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
112
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
113 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
114 <Label text="Y-Stretch: " min_size="25,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
115 <TextBox text="1" name="ystretch" size="30,20" min_size="30,20" max_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
116 <Button name="ystretch_up" text="+" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
117 <Button name="ystretch_dn" text="-" max_size="20,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
118 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
119 </VBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
120 </VBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
121
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
122 <VBox name="image_panel_wrapper">
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
123 <VBox name="image_panel">
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
124 <Label text="Light Image" min_size="45,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
125 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
126 <Label text="Image: " min_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
127 <TextField text="" name="image" size="60,20" min_size="40,20" max_size="300,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
128 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
129 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
130 <Button name="selec_image" text="last selected"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
131 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
132 </VBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
133 </VBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
134
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
135 <VBox name="animation_panel_wrapper">
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
136 <VBox name="animation_panel">
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
137 <Label text="Light Animation" min_size="45,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
138 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
139 <Label text="Animation: " min_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
140 <TextField text="" name="animation" size="60,20" min_size="40,20" max_size="300,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
141 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
142 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
143 <Button name="selec_animation" text="last selected"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
144 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
145 </VBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
146 </VBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
147
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
148 <VBox name="global_panel_wrapper">
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
149 <VBox name="global_panel">
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
150 <Label text="RGB values for Global Light" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
151 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
152 <Label text="R" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
153 <TextBox text="1.0" name="value_R" min_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
154 <Button text="+" name="increase_R" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
155 <Button text="-" name="decrease_R" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
156 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
157 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
158 <Label text="G" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
159 <TextBox text="1.0" name="value_G" min_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
160 <Button text="+" name="increase_G" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
161 <Button text="-" name="decrease_G" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
162 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
163 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
164 <Label text="B" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
165 <TextBox text="1.0" name="value_B" min_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
166 <Button text="+" name="increase_B" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
167 <Button text="-" name="decrease_B" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
168 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
169 <HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
170 <Label text="A" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
171 <TextBox text="1.0" name="value_A" min_size="30,20"/>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
172 <Button text="+" name="increase_A" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
173 <Button text="-" name="decrease_A" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
174 </HBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
175 <VBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
176 <Button text="Random" name="random_global_light" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
177 <Button text="Reset" name="reset_global_light" />
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
178 </VBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
179 </VBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
180 </VBox>
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
181
60621d858548 * Fixed the image/animation functions in GenericRenderer and LightRenderer. The functions now consider the camera zoom level.
helios2000@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 378
diff changeset
182 </Panel>