Преглед изворни кода

Implemented some code improvements on the IDE. Preparing work for tooltips.

Stan Hebben пре 6 година
родитељ
комит
f3a01ec07f
43 измењених фајлова са 475 додато и 220 уклоњено
  1. 5
    5
      DrawableGui/src/main/java/org/openzen/drawablegui/DButton.java
  2. 0
    3
      DrawableGui/src/main/java/org/openzen/drawablegui/DColorableIcon.java
  3. 1
    1
      DrawableGui/src/main/java/org/openzen/drawablegui/DComponent.java
  4. 3
    4
      DrawableGui/src/main/java/org/openzen/drawablegui/DEmptyView.java
  5. 17
    16
      DrawableGui/src/main/java/org/openzen/drawablegui/DHorizontalLayout.java
  6. 5
    5
      DrawableGui/src/main/java/org/openzen/drawablegui/DInputField.java
  7. 5
    5
      DrawableGui/src/main/java/org/openzen/drawablegui/DLabel.java
  8. 12
    11
      DrawableGui/src/main/java/org/openzen/drawablegui/DSideLayout.java
  9. 11
    4
      DrawableGui/src/main/java/org/openzen/drawablegui/DSizing.java
  10. 122
    0
      DrawableGui/src/main/java/org/openzen/drawablegui/DTooltip.java
  11. 32
    0
      DrawableGui/src/main/java/org/openzen/drawablegui/DTooltipStyle.java
  12. 4
    0
      DrawableGui/src/main/java/org/openzen/drawablegui/DUIContext.java
  13. 19
    18
      DrawableGui/src/main/java/org/openzen/drawablegui/DVerticalLayout.java
  14. 65
    0
      DrawableGui/src/main/java/org/openzen/drawablegui/border/DCompositeBorder.java
  15. 4
    4
      DrawableGui/src/main/java/org/openzen/drawablegui/border/DCustomWindowBorder.java
  16. 0
    1
      DrawableGui/src/main/java/org/openzen/drawablegui/border/DEmptyBorder.java
  17. 0
    1
      DrawableGui/src/main/java/org/openzen/drawablegui/border/DLineBorder.java
  18. 10
    10
      DrawableGui/src/main/java/org/openzen/drawablegui/form/DForm.java
  19. 0
    5
      DrawableGui/src/main/java/org/openzen/drawablegui/live/ImmutableLiveObject.java
  20. 0
    2
      DrawableGui/src/main/java/org/openzen/drawablegui/live/LiveObject.java
  21. 14
    0
      DrawableGui/src/main/java/org/openzen/drawablegui/live/MutableLiveObject.java
  22. 1
    1
      DrawableGui/src/main/java/org/openzen/drawablegui/live/SimpleLiveObject.java
  23. 8
    8
      DrawableGui/src/main/java/org/openzen/drawablegui/scroll/DScrollBar.java
  24. 7
    8
      DrawableGui/src/main/java/org/openzen/drawablegui/scroll/DScrollPane.java
  25. 0
    1
      DrawableGui/src/main/java/org/openzen/drawablegui/scroll/DScrollPaneStyle.java
  26. 2
    2
      DrawableGui/src/main/java/org/openzen/drawablegui/swing/SwingDialog.java
  27. 3
    3
      DrawableGui/src/main/java/org/openzen/drawablegui/swing/SwingGraphicsContext.java
  28. 2
    2
      DrawableGui/src/main/java/org/openzen/drawablegui/swing/SwingWindow.java
  29. 7
    9
      DrawableGui/src/main/java/org/openzen/drawablegui/tree/DTreeView.java
  30. 2
    2
      IDE/src/main/java/org/openzen/zenscript/ide/ui/IDEAspectBar.java
  31. 4
    4
      IDE/src/main/java/org/openzen/zenscript/ide/ui/IDEWindow.java
  32. 3
    1
      IDE/src/main/java/org/openzen/zenscript/ide/ui/dialog/CreateSourceFileDialog.java
  33. 5
    5
      IDE/src/main/java/org/openzen/zenscript/ide/ui/view/IconButtonControl.java
  34. 4
    4
      IDE/src/main/java/org/openzen/zenscript/ide/ui/view/StatusBarView.java
  35. 7
    7
      IDE/src/main/java/org/openzen/zenscript/ide/ui/view/TabbedView.java
  36. 11
    11
      IDE/src/main/java/org/openzen/zenscript/ide/ui/view/TabbedViewTab.java
  37. 6
    8
      IDE/src/main/java/org/openzen/zenscript/ide/ui/view/TabbedViewTabClose.java
  38. 2
    2
      IDE/src/main/java/org/openzen/zenscript/ide/ui/view/WindowView.java
  39. 6
    7
      IDE/src/main/java/org/openzen/zenscript/ide/ui/view/aspectbar/AspectBarSelectorButton.java
  40. 1
    1
      IDE/src/main/java/org/openzen/zenscript/ide/ui/view/aspectbar/AspectBarStyle.java
  41. 21
    24
      IDE/src/main/java/org/openzen/zenscript/ide/ui/view/aspectbar/AspectBarView.java
  42. 6
    6
      IDE/src/main/java/org/openzen/zenscript/ide/ui/view/aspectbar/WindowActionButton.java
  43. 38
    9
      IDE/src/main/java/org/openzen/zenscript/ide/ui/view/editor/SourceEditor.java

+ 5
- 5
DrawableGui/src/main/java/org/openzen/drawablegui/DButton.java Прегледај датотеку

@@ -8,7 +8,7 @@ package org.openzen.drawablegui;
8 8
 import org.openzen.drawablegui.live.LiveBool;
9 9
 import org.openzen.drawablegui.live.LiveObject;
10 10
 import org.openzen.drawablegui.live.LiveString;
11
-import org.openzen.drawablegui.live.SimpleLiveObject;
11
+import org.openzen.drawablegui.live.MutableLiveObject;
12 12
 import org.openzen.drawablegui.style.DShadow;
13 13
 import org.openzen.drawablegui.style.DStyleClass;
14 14
 import org.openzen.drawablegui.style.DStylePath;
@@ -20,7 +20,7 @@ import org.openzen.drawablegui.style.DStylePath;
20 20
 public class DButton implements DComponent {
21 21
 	private final DStyleClass styleClass;
22 22
 	private final LiveString label;
23
-	private final LiveObject<DDimensionPreferences> dimensionPreferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
23
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
24 24
 	private final LiveBool disabled;
25 25
 	private final Runnable action;
26 26
 	
@@ -48,14 +48,14 @@ public class DButton implements DComponent {
48 48
 		this.style = new DButtonStyle(context.getStylesheets().get(context, path));
49 49
 		fontMetrics = context.getFontMetrics(style.font);
50 50
 		
51
-		dimensionPreferences.setValue(new DDimensionPreferences(
51
+		sizing.setValue(new DSizing(
52 52
 				style.paddingLeft + style.paddingRight + fontMetrics.getWidth(label.getValue()),
53 53
 				style.paddingTop + style.paddingBottom + fontMetrics.getAscent() + fontMetrics.getDescent()));
54 54
 	}
55 55
 
56 56
 	@Override
57
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
58
-		return dimensionPreferences;
57
+	public LiveObject<DSizing> getSizing() {
58
+		return sizing;
59 59
 	}
60 60
 
61 61
 	@Override

+ 0
- 3
DrawableGui/src/main/java/org/openzen/drawablegui/DColorableIcon.java Прегледај датотеку

@@ -5,9 +5,6 @@
5 5
  */
6 6
 package org.openzen.drawablegui;
7 7
 
8
-import org.openzen.drawablegui.DCanvas;
9
-import org.openzen.drawablegui.DTransform2D;
10
-
11 8
 /**
12 9
  *
13 10
  * @author Hoofdgebruiker

+ 1
- 1
DrawableGui/src/main/java/org/openzen/drawablegui/DComponent.java Прегледај датотеку

@@ -16,7 +16,7 @@ import org.openzen.drawablegui.style.DStylePath;
16 16
 public interface DComponent extends Closeable {
17 17
 	void setContext(DStylePath parent, DUIContext context);
18 18
 	
19
-	LiveObject<DDimensionPreferences> getDimensionPreferences();
19
+	LiveObject<DSizing> getSizing();
20 20
 	
21 21
 	DIRectangle getBounds();
22 22
 	

+ 3
- 4
DrawableGui/src/main/java/org/openzen/drawablegui/DEmptyView.java Прегледај датотеку

@@ -16,8 +16,7 @@ import org.openzen.drawablegui.style.DStylePath;
16 16
 public class DEmptyView implements DComponent {
17 17
 	public static final DEmptyView INSTANCE = new DEmptyView();
18 18
 	
19
-	private static final LiveObject<DDimensionPreferences> DIMENSION = new ImmutableLiveObject(new DDimensionPreferences(0, 0));
20
-	private static final DIRectangle NO_BOUNDS = new DIRectangle(0, 0, 0, 0);
19
+	private static final LiveObject<DSizing> DIMENSION = new ImmutableLiveObject(DSizing.EMPTY);
21 20
 	
22 21
 	private DEmptyView() {}
23 22
 
@@ -27,13 +26,13 @@ public class DEmptyView implements DComponent {
27 26
 	}
28 27
 	
29 28
 	@Override
30
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
29
+	public LiveObject<DSizing> getSizing() {
31 30
 		return DIMENSION;
32 31
 	}
33 32
 	
34 33
 	@Override
35 34
 	public DIRectangle getBounds() {
36
-		return NO_BOUNDS;
35
+		return DIRectangle.EMPTY;
37 36
 	}
38 37
 
39 38
 	@Override

+ 17
- 16
DrawableGui/src/main/java/org/openzen/drawablegui/DHorizontalLayout.java Прегледај датотеку

@@ -9,6 +9,7 @@ import java.util.function.Consumer;
9 9
 import java.util.function.Predicate;
10 10
 import org.openzen.drawablegui.listeners.ListenerHandle;
11 11
 import org.openzen.drawablegui.live.LiveObject;
12
+import org.openzen.drawablegui.live.MutableLiveObject;
12 13
 import org.openzen.drawablegui.live.SimpleLiveObject;
13 14
 import org.openzen.drawablegui.style.DStyleClass;
14 15
 import org.openzen.drawablegui.style.DStylePath;
@@ -21,8 +22,8 @@ public class DHorizontalLayout extends BaseComponentGroup {
21 22
 	private final DStyleClass styleClass;
22 23
 	private final Alignment alignment;
23 24
 	private final Element[] components;
24
-	private final ListenerHandle<LiveObject.Listener<DDimensionPreferences>>[] componentSizeListeners;
25
-	private final LiveObject<DDimensionPreferences> dimensionPreferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
25
+	private final ListenerHandle<LiveObject.Listener<DSizing>>[] componentSizeListeners;
26
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
26 27
 	
27 28
 	private DUIContext context;
28 29
 	private DHorizontalLayoutStyle style;
@@ -40,7 +41,7 @@ public class DHorizontalLayout extends BaseComponentGroup {
40 41
 		totalShrink = 0;
41 42
 		
42 43
 		for (int i = 0; i < componentSizeListeners.length; i++) {
43
-			componentSizeListeners[i] = components[i].component.getDimensionPreferences().addListener((oldValue, newValue) -> updateDimensionPreferences());
44
+			componentSizeListeners[i] = components[i].component.getSizing().addListener((oldValue, newValue) -> updateDimensionPreferences());
44 45
 			
45 46
 			totalGrow += components[i].grow;
46 47
 			totalShrink += components[i].shrink;
@@ -76,8 +77,8 @@ public class DHorizontalLayout extends BaseComponentGroup {
76 77
 	}
77 78
 
78 79
 	@Override
79
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
80
-		return dimensionPreferences;
80
+	public LiveObject<DSizing> getSizing() {
81
+		return sizing;
81 82
 	}
82 83
 
83 84
 	@Override
@@ -147,7 +148,7 @@ public class DHorizontalLayout extends BaseComponentGroup {
147 148
 		if (bounds == null || context == null)
148 149
 			return;
149 150
 		
150
-		DDimensionPreferences myPreferences = dimensionPreferences.getValue();
151
+		DSizing myPreferences = sizing.getValue();
151 152
 		if (bounds.width < myPreferences.preferredWidth) {
152 153
 			layoutShrinked();
153 154
 		} else {
@@ -156,7 +157,7 @@ public class DHorizontalLayout extends BaseComponentGroup {
156 157
 	}
157 158
 	
158 159
 	private void layoutShrinked() {
159
-		DDimensionPreferences myPreferences = dimensionPreferences.getValue();
160
+		DSizing myPreferences = sizing.getValue();
160 161
 		if (totalShrink == 0) {
161 162
 			// now what?
162 163
 			// shrink proportionally, we have to shrink...
@@ -165,7 +166,7 @@ public class DHorizontalLayout extends BaseComponentGroup {
165 166
 			
166 167
 			for (int i = 0; i < components.length; i++) {
167 168
 				Element element = components[i];
168
-				DDimensionPreferences preferences = element.component.getDimensionPreferences().getValue();
169
+				DSizing preferences = element.component.getSizing().getValue();
169 170
 				int newX = x + preferences.preferredWidth;
170 171
 				float idealUnspacedX = newX * scale;
171 172
 				int idealX = (int)(idealUnspacedX + 0.5f + i * style.spacing);
@@ -177,7 +178,7 @@ public class DHorizontalLayout extends BaseComponentGroup {
177 178
 			float deltaScaled = delta / totalShrink;
178 179
 			int x = 0;
179 180
 			for (Element element : components) {
180
-				DDimensionPreferences preferences = element.component.getDimensionPreferences().getValue();
181
+				DSizing preferences = element.component.getSizing().getValue();
181 182
 				float scaledSize = preferences.preferredWidth + deltaScaled * element.shrink;
182 183
 				float idealUnspacedX = x + scaledSize;
183 184
 				int newX = (int)(idealUnspacedX + 0.5f);
@@ -189,13 +190,13 @@ public class DHorizontalLayout extends BaseComponentGroup {
189 190
 	
190 191
 	private void layoutGrown() {
191 192
 		// resize according to grow values
192
-		DDimensionPreferences myPreferences = dimensionPreferences.getValue();
193
+		DSizing myPreferences = sizing.getValue();
193 194
 		
194 195
 		if (totalGrow == 0) {
195 196
 			int deltaX = (int)(myPreferences.preferredWidth - bounds.width);
196 197
 			int x = bounds.x + (int)(deltaX * alignment.align);
197 198
 			for (Element element : components) {
198
-				DDimensionPreferences preferences = element.component.getDimensionPreferences().getValue();
199
+				DSizing preferences = element.component.getSizing().getValue();
199 200
 				int newX = x + preferences.preferredWidth;
200 201
 				layout(element, x, newX - x);
201 202
 				x = newX + style.spacing;
@@ -205,7 +206,7 @@ public class DHorizontalLayout extends BaseComponentGroup {
205 206
 			float deltaScaled = delta / totalGrow;
206 207
 			int x = 0;
207 208
 			for (Element element : components) {
208
-				DDimensionPreferences preferences = element.component.getDimensionPreferences().getValue();
209
+				DSizing preferences = element.component.getSizing().getValue();
209 210
 				float scaledSize = preferences.preferredWidth + deltaScaled * element.grow;
210 211
 				float idealUnspacedX = x + scaledSize;
211 212
 				int newX = (int)(idealUnspacedX + 0.5f);
@@ -216,7 +217,7 @@ public class DHorizontalLayout extends BaseComponentGroup {
216 217
 	}
217 218
 	
218 219
 	private void layout(Element element, int x, int width) {
219
-		DDimensionPreferences preferences = element.component.getDimensionPreferences().getValue();
220
+		DSizing preferences = element.component.getSizing().getValue();
220 221
 		int height;
221 222
 		int y;
222 223
 		switch (element.alignment) {
@@ -249,7 +250,7 @@ public class DHorizontalLayout extends BaseComponentGroup {
249 250
 		int maximumWidth = -style.spacing;
250 251
 		int maximumHeight = Integer.MAX_VALUE;
251 252
 		for (Element element : components) {
252
-			DDimensionPreferences preferences = element.component.getDimensionPreferences().getValue();
253
+			DSizing preferences = element.component.getSizing().getValue();
253 254
 			preferredWidth += preferences.preferredWidth + style.spacing;
254 255
 			preferredHeight = Math.max(preferredHeight, preferences.preferredHeight);
255 256
 			
@@ -260,13 +261,13 @@ public class DHorizontalLayout extends BaseComponentGroup {
260 261
 			maximumHeight = Math.min(maximumHeight, preferences.maximumHeight);
261 262
 		}
262 263
 		
263
-		DDimensionPreferences preferences = new DDimensionPreferences(
264
+		DSizing preferences = new DSizing(
264 265
 				minimumWidth + style.paddingLeft + style.paddingRight,
265 266
 				minimumHeight + style.paddingTop + style.paddingBottom,
266 267
 				preferredWidth + style.paddingLeft + style.paddingRight,
267 268
 				preferredHeight + style.paddingTop + style.paddingBottom,
268 269
 				maximumWidth + style.paddingLeft + style.paddingRight,
269 270
 				maximumHeight + style.paddingTop + style.paddingBottom);
270
-		dimensionPreferences.setValue(preferences);
271
+		sizing.setValue(preferences);
271 272
 	}
272 273
 }

+ 5
- 5
DrawableGui/src/main/java/org/openzen/drawablegui/DInputField.java Прегледај датотеку

@@ -8,8 +8,8 @@ package org.openzen.drawablegui;
8 8
 import org.openzen.drawablegui.listeners.ListenerHandle;
9 9
 import org.openzen.drawablegui.live.LiveObject;
10 10
 import org.openzen.drawablegui.live.LiveString;
11
+import org.openzen.drawablegui.live.MutableLiveObject;
11 12
 import org.openzen.drawablegui.live.MutableLiveString;
12
-import org.openzen.drawablegui.live.SimpleLiveObject;
13 13
 import org.openzen.drawablegui.style.DDimension;
14 14
 import org.openzen.drawablegui.style.DStyleClass;
15 15
 import org.openzen.drawablegui.style.DStylePath;
@@ -23,7 +23,7 @@ public class DInputField implements DComponent {
23 23
 	private final ListenerHandle<LiveString.Listener> valueListener;
24 24
 	
25 25
 	private final DStyleClass styleClass;
26
-	private final LiveObject<DDimensionPreferences> dimensionPreferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
26
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
27 27
 	private DIRectangle bounds = DIRectangle.EMPTY;
28 28
 	private final DDimension preferredWidth;
29 29
 	
@@ -70,7 +70,7 @@ public class DInputField implements DComponent {
70 70
 		DStylePath path = parent.getChild("input", styleClass);
71 71
 		style = new DInputFieldStyle(context.getStylesheets().get(context, path));
72 72
 		fontMetrics = context.getFontMetrics(style.font);
73
-		dimensionPreferences.setValue(new DDimensionPreferences(
73
+		sizing.setValue(new DSizing(
74 74
 				preferredWidth.evalInt(context) + style.paddingLeft + style.paddingRight + 2 * style.borderWidth,
75 75
 				fontMetrics.getAscent() + fontMetrics.getDescent() + style.paddingTop + style.paddingBottom + 2 * style.borderWidth));
76 76
 		
@@ -85,8 +85,8 @@ public class DInputField implements DComponent {
85 85
 	}
86 86
 
87 87
 	@Override
88
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
89
-		return dimensionPreferences;
88
+	public LiveObject<DSizing> getSizing() {
89
+		return sizing;
90 90
 	}
91 91
 
92 92
 	@Override

+ 5
- 5
DrawableGui/src/main/java/org/openzen/drawablegui/DLabel.java Прегледај датотеку

@@ -8,7 +8,7 @@ package org.openzen.drawablegui;
8 8
 import org.openzen.drawablegui.listeners.ListenerHandle;
9 9
 import org.openzen.drawablegui.live.LiveObject;
10 10
 import org.openzen.drawablegui.live.LiveString;
11
-import org.openzen.drawablegui.live.SimpleLiveObject;
11
+import org.openzen.drawablegui.live.MutableLiveObject;
12 12
 import org.openzen.drawablegui.style.DStyleClass;
13 13
 import org.openzen.drawablegui.style.DStylePath;
14 14
 
@@ -19,7 +19,7 @@ import org.openzen.drawablegui.style.DStylePath;
19 19
 public class DLabel implements DComponent {
20 20
 	private final LiveString label;
21 21
 	private final DStyleClass styleClass;
22
-	private final LiveObject<DDimensionPreferences> preferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
22
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
23 23
 	private final ListenerHandle<LiveString.Listener> labelListener;
24 24
 	
25 25
 	private DUIContext context;
@@ -46,8 +46,8 @@ public class DLabel implements DComponent {
46 46
 	}
47 47
 
48 48
 	@Override
49
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
50
-		return preferences;
49
+	public LiveObject<DSizing> getSizing() {
50
+		return sizing;
51 51
 	}
52 52
 
53 53
 	@Override
@@ -82,7 +82,7 @@ public class DLabel implements DComponent {
82 82
 	}
83 83
 	
84 84
 	private void calculateDimension() {
85
-		preferences.setValue(new DDimensionPreferences(
85
+		sizing.setValue(new DSizing(
86 86
 			style.border.getPaddingLeft() + fontMetrics.getWidth(label.getValue()) + style.border.getPaddingRight(),
87 87
 			style.border.getPaddingTop() + fontMetrics.getAscent() + fontMetrics.getDescent() + style.border.getPaddingTop()));
88 88
 	}

+ 12
- 11
DrawableGui/src/main/java/org/openzen/drawablegui/DSideLayout.java Прегледај датотеку

@@ -12,6 +12,7 @@ import java.util.function.Consumer;
12 12
 import java.util.function.Predicate;
13 13
 import org.openzen.drawablegui.listeners.ListenerHandle;
14 14
 import org.openzen.drawablegui.live.LiveObject;
15
+import org.openzen.drawablegui.live.MutableLiveObject;
15 16
 import org.openzen.drawablegui.live.SimpleLiveObject;
16 17
 import org.openzen.drawablegui.style.DStyleClass;
17 18
 import org.openzen.drawablegui.style.DStylePath;
@@ -25,7 +26,7 @@ public class DSideLayout extends BaseComponentGroup {
25 26
 	
26 27
 	private DComponent main;
27 28
 	private final List<SideComponent> sides = new ArrayList<>();
28
-	private final LiveObject<DDimensionPreferences> dimensionPreferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
29
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
29 30
 	
30 31
 	private DStylePath path;
31 32
 	private DUIContext context;
@@ -83,8 +84,8 @@ public class DSideLayout extends BaseComponentGroup {
83 84
 	}
84 85
 
85 86
 	@Override
86
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
87
-		return dimensionPreferences;
87
+	public LiveObject<DSizing> getSizing() {
88
+		return sizing;
88 89
 	}
89 90
 
90 91
 	@Override
@@ -97,7 +98,7 @@ public class DSideLayout extends BaseComponentGroup {
97 98
 		int bottom = bounds.y + bounds.height;
98 99
 		for (int i = sides.size() - 1; i >= 0; i--) {
99 100
 			SideComponent side = sides.get(i);
100
-			DDimensionPreferences preferences = side.component.getDimensionPreferences().getValue();
101
+			DSizing preferences = side.component.getSizing().getValue();
101 102
 			
102 103
 			switch (side.side) {
103 104
 				case TOP: {
@@ -175,7 +176,7 @@ public class DSideLayout extends BaseComponentGroup {
175 176
 	}
176 177
 	
177 178
 	private void recalculateSize() {
178
-		DDimensionPreferences mainPreferences = main.getDimensionPreferences().getValue();
179
+		DSizing mainPreferences = main.getSizing().getValue();
179 180
 		int minimumWidth = mainPreferences.minimumWidth;
180 181
 		int minimumHeight = mainPreferences.minimumHeight;
181 182
 		int preferredWidth = mainPreferences.preferredWidth;
@@ -184,7 +185,7 @@ public class DSideLayout extends BaseComponentGroup {
184 185
 		int maximumHeight = mainPreferences.maximumHeight;
185 186
 		
186 187
 		for (SideComponent side : sides) {
187
-			DDimensionPreferences sidePreferences = side.component.getDimensionPreferences().getValue();
188
+			DSizing sidePreferences = side.component.getSizing().getValue();
188 189
 			switch (side.side) {
189 190
 				case LEFT:
190 191
 				case RIGHT:
@@ -207,7 +208,7 @@ public class DSideLayout extends BaseComponentGroup {
207 208
 			}
208 209
 		}
209 210
 		
210
-		dimensionPreferences.setValue(new DDimensionPreferences(
211
+		sizing.setValue(new DSizing(
211 212
 				minimumWidth,
212 213
 				minimumHeight,
213 214
 				preferredWidth,
@@ -241,15 +242,15 @@ public class DSideLayout extends BaseComponentGroup {
241 242
 			side.close();
242 243
 	}
243 244
 	
244
-	public class SideComponent implements Closeable, LiveObject.Listener<DDimensionPreferences> {
245
+	public class SideComponent implements Closeable, LiveObject.Listener<DSizing> {
245 246
 		public final Side side;
246 247
 		public final DComponent component;
247
-		public final ListenerHandle<LiveObject.Listener<DDimensionPreferences>> listenerHandle;
248
+		public final ListenerHandle<LiveObject.Listener<DSizing>> listenerHandle;
248 249
 
249 250
 		public SideComponent(Side side, DComponent component) {
250 251
 			this.side = side;
251 252
 			this.component = component;
252
-			listenerHandle = component.getDimensionPreferences().addListener(this);
253
+			listenerHandle = component.getSizing().addListener(this);
253 254
 		}
254 255
 		
255 256
 		@Override
@@ -258,7 +259,7 @@ public class DSideLayout extends BaseComponentGroup {
258 259
 		}
259 260
 
260 261
 		@Override
261
-		public void onUpdated(DDimensionPreferences oldValue, DDimensionPreferences newValue) {
262
+		public void onUpdated(DSizing oldValue, DSizing newValue) {
262 263
 			recalculateSize();
263 264
 		}
264 265
 	}

DrawableGui/src/main/java/org/openzen/drawablegui/DDimensionPreferences.java → DrawableGui/src/main/java/org/openzen/drawablegui/DSizing.java Прегледај датотеку

@@ -5,12 +5,19 @@
5 5
  */
6 6
 package org.openzen.drawablegui;
7 7
 
8
+import org.openzen.drawablegui.live.MutableLiveObject;
9
+import org.openzen.drawablegui.live.SimpleLiveObject;
10
+
8 11
 /**
9 12
  *
10 13
  * @author Hoofdgebruiker
11 14
  */
12
-public class DDimensionPreferences {
13
-	public static final DDimensionPreferences EMPTY = new DDimensionPreferences(0, 0);
15
+public class DSizing {
16
+	public static MutableLiveObject<DSizing> create() {
17
+		return new SimpleLiveObject<>(DSizing.EMPTY);
18
+	}
19
+	
20
+	public static final DSizing EMPTY = new DSizing(0, 0);
14 21
 	
15 22
 	public final int minimumWidth;
16 23
 	public final int minimumHeight;
@@ -19,7 +26,7 @@ public class DDimensionPreferences {
19 26
 	public final int maximumWidth;
20 27
 	public final int maximumHeight;
21 28
 	
22
-	public DDimensionPreferences(int preferredWidth, int preferredHeight) {
29
+	public DSizing(int preferredWidth, int preferredHeight) {
23 30
 		this.minimumWidth = 0;
24 31
 		this.minimumHeight = 0;
25 32
 		this.preferredWidth = preferredWidth;
@@ -28,7 +35,7 @@ public class DDimensionPreferences {
28 35
 		this.maximumHeight = 1000000;
29 36
 	}
30 37
 	
31
-	public DDimensionPreferences(int minimumWidth, int minimumHeight, int preferredWidth, int preferredHeight, int maximumWidth, int maximumHeight) {
38
+	public DSizing(int minimumWidth, int minimumHeight, int preferredWidth, int preferredHeight, int maximumWidth, int maximumHeight) {
32 39
 		this.minimumWidth = minimumWidth;
33 40
 		this.minimumHeight = minimumHeight;
34 41
 		this.preferredWidth = preferredWidth;

+ 122
- 0
DrawableGui/src/main/java/org/openzen/drawablegui/DTooltip.java Прегледај датотеку

@@ -0,0 +1,122 @@
1
+/*
2
+ * To change this license header, choose License Headers in Project Properties.
3
+ * To change this template file, choose Tools | Templates
4
+ * and open the template in the editor.
5
+ */
6
+package org.openzen.drawablegui;
7
+
8
+import org.openzen.drawablegui.listeners.ListenerHandle;
9
+import org.openzen.drawablegui.live.LiveObject;
10
+import org.openzen.drawablegui.live.LiveString;
11
+import org.openzen.drawablegui.live.MutableLiveObject;
12
+import org.openzen.drawablegui.style.DStyleClass;
13
+import org.openzen.drawablegui.style.DStylePath;
14
+
15
+/**
16
+ *
17
+ * @author Hoofdgebruiker
18
+ */
19
+public class DTooltip implements DComponent {
20
+	private final DStyleClass styleClass;
21
+	private final LiveString tooltip;
22
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
23
+	private final ListenerHandle<LiveString.Listener> tooltipListener;
24
+	
25
+	private DUIContext context;
26
+	private DIRectangle bounds;
27
+	private DFontMetrics fontMetrics;
28
+	private DTooltipStyle style;
29
+	private boolean visible = false;
30
+	private DTimerHandle timerHandle = null;
31
+	
32
+	public DTooltip(DStyleClass styleClass, LiveString tooltip) {
33
+		this.styleClass = styleClass;
34
+		this.tooltip = tooltip;
35
+		tooltipListener = tooltip.addListener(this::onTooltipChanged);
36
+	}
37
+	
38
+	private void onTooltipChanged(String oldValue, String newValue) {
39
+		if (context == null)
40
+			return;
41
+		
42
+		sizing.setValue(new DSizing(
43
+				style.border.getPaddingLeft() + fontMetrics.getWidth(newValue) + style.border.getPaddingRight(),
44
+				style.border.getPaddingTop() + fontMetrics.getAscent() + fontMetrics.getDescent() + style.border.getPaddingBottom()));
45
+	}
46
+	
47
+	public void onTargetMouseEnter(DMouseEvent e) {
48
+		if (timerHandle != null)
49
+			timerHandle.close();
50
+		
51
+		timerHandle = context.setTimer(1000, this::show);
52
+		setBounds(new DIRectangle(e.x, e.y, sizing.getValue().preferredWidth, sizing.getValue().preferredHeight));
53
+	}
54
+	
55
+	public void onTargetMouseExit(DMouseEvent e) {
56
+		if (timerHandle != null) {
57
+			timerHandle.close();
58
+			timerHandle = null;
59
+		}
60
+		
61
+		hide();
62
+	}
63
+	
64
+	private void show() {
65
+		visible = true;
66
+		context.repaint(bounds);
67
+		
68
+		if (timerHandle != null) {
69
+			timerHandle.close();
70
+			timerHandle = null;
71
+		}
72
+	}
73
+	
74
+	private void hide() {
75
+		visible = false;
76
+		context.repaint(bounds);
77
+	}
78
+	
79
+	@Override
80
+	public void setContext(DStylePath parent, DUIContext context) {
81
+		this.context = context;
82
+		
83
+		DStylePath path = parent.getChild("tooltip", styleClass);
84
+		style = new DTooltipStyle(context.getStylesheets().get(context, path));
85
+		fontMetrics = context.getFontMetrics(style.font);
86
+	}
87
+
88
+	@Override
89
+	public LiveObject<DSizing> getSizing() {
90
+		return sizing;
91
+	}
92
+
93
+	@Override
94
+	public DIRectangle getBounds() {
95
+		return bounds;
96
+	}
97
+
98
+	@Override
99
+	public int getBaselineY() {
100
+		return style.border.getPaddingTop() + fontMetrics.getAscent();
101
+	}
102
+
103
+	@Override
104
+	public void setBounds(DIRectangle bounds) {
105
+		this.bounds = bounds;
106
+	}
107
+
108
+	@Override
109
+	public void paint(DCanvas canvas) {
110
+		if (!visible)
111
+			return;
112
+		
113
+		canvas.fillRectangle(bounds.x, bounds.y, bounds.width, bounds.height, style.backgroundColor);
114
+		style.border.paint(canvas, bounds);
115
+		canvas.drawText(style.font, style.textColor, bounds.x + style.border.getPaddingLeft(), style.border.getPaddingTop(), tooltip.getValue());
116
+	}
117
+
118
+	@Override
119
+	public void close() {
120
+		tooltipListener.close();
121
+	}
122
+}

+ 32
- 0
DrawableGui/src/main/java/org/openzen/drawablegui/DTooltipStyle.java Прегледај датотеку

@@ -0,0 +1,32 @@
1
+/*
2
+ * To change this license header, choose License Headers in Project Properties.
3
+ * To change this template file, choose Tools | Templates
4
+ * and open the template in the editor.
5
+ */
6
+package org.openzen.drawablegui;
7
+
8
+import org.openzen.drawablegui.border.DBorder;
9
+import org.openzen.drawablegui.border.DCompositeBorder;
10
+import org.openzen.drawablegui.border.DLineBorder;
11
+import org.openzen.drawablegui.border.DPaddedBorder;
12
+import org.openzen.drawablegui.style.DStyleDefinition;
13
+
14
+/**
15
+ *
16
+ * @author Hoofdgebruiker
17
+ */
18
+public class DTooltipStyle {
19
+	public final DBorder border;
20
+	public final DFont font;
21
+	public final int backgroundColor;
22
+	public final int textColor;
23
+	
24
+	public DTooltipStyle(DStyleDefinition style) {
25
+		border = style.getBorder("border", context -> new DCompositeBorder(
26
+				new DLineBorder(0xFF, 1),
27
+				new DPaddedBorder(context.dp(4), context.dp(4), context.dp(4), context.dp(4))));
28
+		font = style.getFont("font", context -> new DFont(DFontFamily.UI, false, false, false, context.sp(12)));
29
+		backgroundColor = style.getColor("backgroundColor", 0xFFFFFFE1);
30
+		textColor = style.getColor("textColor", 0xFF000000);
31
+	}
32
+}

+ 4
- 0
DrawableGui/src/main/java/org/openzen/drawablegui/DUIContext.java Прегледај датотеку

@@ -44,6 +44,10 @@ public interface DUIContext {
44 44
 		return (int)(dp * getScale());
45 45
 	}
46 46
 	
47
+	default int sp(float sp) {
48
+		return (int)(sp * getTextScale());
49
+	}
50
+	
47 51
 	enum Cursor {
48 52
 		NORMAL,
49 53
 		HAND,

+ 19
- 18
DrawableGui/src/main/java/org/openzen/drawablegui/DVerticalLayout.java Прегледај датотеку

@@ -9,6 +9,7 @@ import java.util.function.Consumer;
9 9
 import java.util.function.Predicate;
10 10
 import org.openzen.drawablegui.listeners.ListenerHandle;
11 11
 import org.openzen.drawablegui.live.LiveObject;
12
+import org.openzen.drawablegui.live.MutableLiveObject;
12 13
 import org.openzen.drawablegui.live.SimpleLiveObject;
13 14
 import org.openzen.drawablegui.style.DStyleClass;
14 15
 import org.openzen.drawablegui.style.DStylePath;
@@ -21,8 +22,8 @@ public class DVerticalLayout extends BaseComponentGroup {
21 22
 	private final DStyleClass styleClass;
22 23
 	private final Alignment alignment;
23 24
 	private final Element[] components;
24
-	private final ListenerHandle<LiveObject.Listener<DDimensionPreferences>>[] componentSizeListeners;
25
-	private final LiveObject<DDimensionPreferences> dimensionPreferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
25
+	private final ListenerHandle<LiveObject.Listener<DSizing>>[] componentSizeListeners;
26
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
26 27
 	
27 28
 	private DUIContext context;
28 29
 	private DHorizontalLayoutStyle style;
@@ -40,7 +41,7 @@ public class DVerticalLayout extends BaseComponentGroup {
40 41
 		totalShrink = 0;
41 42
 		
42 43
 		for (int i = 0; i < componentSizeListeners.length; i++) {
43
-			componentSizeListeners[i] = components[i].component.getDimensionPreferences().addListener((oldValue, newValue) -> updateDimensionPreferences());
44
+			componentSizeListeners[i] = components[i].component.getSizing().addListener((oldValue, newValue) -> updateDimensionPreferences());
44 45
 			
45 46
 			totalGrow += components[i].grow;
46 47
 			totalShrink += components[i].shrink;
@@ -76,8 +77,8 @@ public class DVerticalLayout extends BaseComponentGroup {
76 77
 	}
77 78
 
78 79
 	@Override
79
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
80
-		return dimensionPreferences;
80
+	public LiveObject<DSizing> getSizing() {
81
+		return sizing;
81 82
 	}
82 83
 
83 84
 	@Override
@@ -105,8 +106,8 @@ public class DVerticalLayout extends BaseComponentGroup {
105 106
 
106 107
 	@Override
107 108
 	public void close() {
108
-		for (int i = 0; i < componentSizeListeners.length; i++) {
109
-			componentSizeListeners[i].close();
109
+		for (ListenerHandle<LiveObject.Listener<DSizing>> listener : componentSizeListeners) {
110
+			listener.close();
110 111
 		}
111 112
 	}
112 113
 	
@@ -147,7 +148,7 @@ public class DVerticalLayout extends BaseComponentGroup {
147 148
 		if (bounds == null || context == null)
148 149
 			return;
149 150
 		
150
-		DDimensionPreferences myPreferences = dimensionPreferences.getValue();
151
+		DSizing myPreferences = sizing.getValue();
151 152
 		if (bounds.height < myPreferences.preferredHeight) {
152 153
 			layoutShrinked();
153 154
 		} else {
@@ -156,7 +157,7 @@ public class DVerticalLayout extends BaseComponentGroup {
156 157
 	}
157 158
 	
158 159
 	private void layoutShrinked() {
159
-		DDimensionPreferences myPreferences = dimensionPreferences.getValue();
160
+		DSizing myPreferences = sizing.getValue();
160 161
 		if (totalShrink == 0) {
161 162
 			// now what?
162 163
 			// shrink proportionally, we have to shrink...
@@ -165,7 +166,7 @@ public class DVerticalLayout extends BaseComponentGroup {
165 166
 			
166 167
 			for (int i = 0; i < components.length; i++) {
167 168
 				Element element = components[i];
168
-				DDimensionPreferences preferences = element.component.getDimensionPreferences().getValue();
169
+				DSizing preferences = element.component.getSizing().getValue();
169 170
 				int newY = y + preferences.preferredHeight;
170 171
 				float idealUnspacedY = newY * scale;
171 172
 				int idealY = (int)(idealUnspacedY + 0.5f + i * style.spacing);
@@ -177,7 +178,7 @@ public class DVerticalLayout extends BaseComponentGroup {
177 178
 			float deltaScaled = delta / totalShrink;
178 179
 			int y = bounds.y;
179 180
 			for (Element element : components) {
180
-				DDimensionPreferences preferences = element.component.getDimensionPreferences().getValue();
181
+				DSizing preferences = element.component.getSizing().getValue();
181 182
 				float scaledSize = preferences.preferredHeight + deltaScaled * element.shrink;
182 183
 				float idealUnspacedY = y + scaledSize;
183 184
 				int newY = (int)(idealUnspacedY + 0.5f);
@@ -189,13 +190,13 @@ public class DVerticalLayout extends BaseComponentGroup {
189 190
 	
190 191
 	private void layoutGrown() {
191 192
 		// resize according to grow values
192
-		DDimensionPreferences myPreferences = dimensionPreferences.getValue();
193
+		DSizing myPreferences = sizing.getValue();
193 194
 		
194 195
 		if (totalGrow == 0) {
195 196
 			int deltaY = (int)(myPreferences.preferredHeight - bounds.height);
196 197
 			int y = bounds.y + (int)(deltaY * alignment.align);
197 198
 			for (Element element : components) {
198
-				DDimensionPreferences preferences = element.component.getDimensionPreferences().getValue();
199
+				DSizing preferences = element.component.getSizing().getValue();
199 200
 				int newY = y + preferences.preferredHeight;
200 201
 				layout(element, y, newY - y);
201 202
 				y = newY;
@@ -205,7 +206,7 @@ public class DVerticalLayout extends BaseComponentGroup {
205 206
 			float deltaScaled = delta / totalGrow;
206 207
 			int y = bounds.y;
207 208
 			for (Element element : components) {
208
-				DDimensionPreferences preferences = element.component.getDimensionPreferences().getValue();
209
+				DSizing preferences = element.component.getSizing().getValue();
209 210
 				float scaledSize = preferences.preferredHeight + deltaScaled * element.grow;
210 211
 				float idealUnspacedY = y + scaledSize;
211 212
 				int newY = (int)(idealUnspacedY + 0.5f);
@@ -216,7 +217,7 @@ public class DVerticalLayout extends BaseComponentGroup {
216 217
 	}
217 218
 	
218 219
 	private void layout(Element element, int y, int height) {
219
-		DDimensionPreferences preferences = element.component.getDimensionPreferences().getValue();
220
+		DSizing preferences = element.component.getSizing().getValue();
220 221
 		int x;
221 222
 		int width;
222 223
 		switch (element.alignment) {
@@ -250,7 +251,7 @@ public class DVerticalLayout extends BaseComponentGroup {
250 251
 		int maximumHeight = -style.spacing;
251 252
 		
252 253
 		for (Element element : components) {
253
-			DDimensionPreferences preferences = element.component.getDimensionPreferences().getValue();
254
+			DSizing preferences = element.component.getSizing().getValue();
254 255
 			preferredWidth = Math.max(preferredWidth, preferences.preferredWidth);
255 256
 			preferredHeight += preferences.preferredHeight + style.spacing;
256 257
 			
@@ -261,13 +262,13 @@ public class DVerticalLayout extends BaseComponentGroup {
261 262
 			maximumHeight += preferences.maximumHeight + style.spacing;
262 263
 		}
263 264
 		
264
-		DDimensionPreferences preferences = new DDimensionPreferences(
265
+		DSizing preferences = new DSizing(
265 266
 				minimumWidth + style.paddingLeft + style.paddingRight,
266 267
 				minimumHeight + style.paddingTop + style.paddingBottom,
267 268
 				preferredWidth + style.paddingLeft + style.paddingRight,
268 269
 				preferredHeight + style.paddingTop + style.paddingBottom,
269 270
 				maximumWidth + style.paddingLeft + style.paddingRight,
270 271
 				maximumHeight + style.paddingTop + style.paddingBottom);
271
-		dimensionPreferences.setValue(preferences);
272
+		sizing.setValue(preferences);
272 273
 	}
273 274
 }

+ 65
- 0
DrawableGui/src/main/java/org/openzen/drawablegui/border/DCompositeBorder.java Прегледај датотеку

@@ -0,0 +1,65 @@
1
+/*
2
+ * To change this license header, choose License Headers in Project Properties.
3
+ * To change this template file, choose Tools | Templates
4
+ * and open the template in the editor.
5
+ */
6
+package org.openzen.drawablegui.border;
7
+
8
+import org.openzen.drawablegui.DCanvas;
9
+import org.openzen.drawablegui.DIRectangle;
10
+
11
+/**
12
+ *
13
+ * @author Hoofdgebruiker
14
+ */
15
+public class DCompositeBorder implements DBorder {
16
+	private final DBorder[] borders;
17
+	
18
+	public DCompositeBorder(DBorder... borders) {
19
+		this.borders = borders;
20
+	}
21
+
22
+	@Override
23
+	public void paint(DCanvas canvas, DIRectangle bounds) {
24
+		for (DBorder border : borders) {
25
+			border.paint(canvas, bounds);
26
+			bounds = new DIRectangle(
27
+					bounds.x + border.getPaddingLeft(),
28
+					bounds.y + border.getPaddingTop(),
29
+					bounds.width - border.getPaddingLeft() - border.getPaddingRight(),
30
+					bounds.height - border.getPaddingTop() - border.getPaddingBottom());
31
+		}
32
+	}
33
+
34
+	@Override
35
+	public int getPaddingLeft() {
36
+		int total = 0;
37
+		for (DBorder border : borders)
38
+			total += border.getPaddingLeft();
39
+		return total;
40
+	}
41
+
42
+	@Override
43
+	public int getPaddingRight() {
44
+		int total = 0;
45
+		for (DBorder border : borders)
46
+			total += border.getPaddingRight();
47
+		return total;
48
+	}
49
+
50
+	@Override
51
+	public int getPaddingTop() {
52
+		int total = 0;
53
+		for (DBorder border : borders)
54
+			total += border.getPaddingTop();
55
+		return total;
56
+	}
57
+
58
+	@Override
59
+	public int getPaddingBottom() {
60
+		int total = 0;
61
+		for (DBorder border : borders)
62
+			total += border.getPaddingBottom();
63
+		return total;
64
+	}
65
+}

+ 4
- 4
DrawableGui/src/main/java/org/openzen/drawablegui/border/DCustomWindowBorder.java Прегледај датотеку

@@ -7,7 +7,7 @@ package org.openzen.drawablegui.border;
7 7
 
8 8
 import org.openzen.drawablegui.DCanvas;
9 9
 import org.openzen.drawablegui.DComponent;
10
-import org.openzen.drawablegui.DDimensionPreferences;
10
+import org.openzen.drawablegui.DSizing;
11 11
 import org.openzen.drawablegui.DMouseEvent;
12 12
 import org.openzen.drawablegui.DPath;
13 13
 import org.openzen.drawablegui.DTransform2D;
@@ -28,7 +28,7 @@ import org.openzen.drawablegui.style.DStylePath;
28 28
 public class DCustomWindowBorder implements DComponent {
29 29
 	private final DStyleClass styleClass;
30 30
 	private final DComponent content;
31
-	private final LiveObject<DDimensionPreferences> preferences = new ImmutableLiveObject<>(DDimensionPreferences.EMPTY);
31
+	private final LiveObject<DSizing> sizing = new ImmutableLiveObject<>(DSizing.EMPTY);
32 32
 	
33 33
 	private DUIContext context;
34 34
 	private DCustomWindowBorderStyle style;
@@ -64,8 +64,8 @@ public class DCustomWindowBorder implements DComponent {
64 64
 	}
65 65
 
66 66
 	@Override
67
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
68
-		return preferences;
67
+	public LiveObject<DSizing> getSizing() {
68
+		return sizing;
69 69
 	}
70 70
 
71 71
 	@Override

+ 0
- 1
DrawableGui/src/main/java/org/openzen/drawablegui/border/DEmptyBorder.java Прегледај датотеку

@@ -7,7 +7,6 @@ package org.openzen.drawablegui.border;
7 7
 
8 8
 import org.openzen.drawablegui.DCanvas;
9 9
 import org.openzen.drawablegui.DIRectangle;
10
-import org.openzen.drawablegui.DUIContext;
11 10
 
12 11
 /**
13 12
  *

+ 0
- 1
DrawableGui/src/main/java/org/openzen/drawablegui/border/DLineBorder.java Прегледај датотеку

@@ -8,7 +8,6 @@ package org.openzen.drawablegui.border;
8 8
 import org.openzen.drawablegui.DCanvas;
9 9
 import org.openzen.drawablegui.DTransform2D;
10 10
 import org.openzen.drawablegui.DIRectangle;
11
-import org.openzen.drawablegui.DUIContext;
12 11
 
13 12
 /**
14 13
  *

+ 10
- 10
DrawableGui/src/main/java/org/openzen/drawablegui/form/DForm.java Прегледај датотеку

@@ -10,12 +10,12 @@ import java.util.function.Predicate;
10 10
 import org.openzen.drawablegui.BaseComponentGroup;
11 11
 import org.openzen.drawablegui.DCanvas;
12 12
 import org.openzen.drawablegui.DComponent;
13
-import org.openzen.drawablegui.DDimensionPreferences;
13
+import org.openzen.drawablegui.DSizing;
14 14
 import org.openzen.drawablegui.DFontMetrics;
15 15
 import org.openzen.drawablegui.DIRectangle;
16 16
 import org.openzen.drawablegui.DUIContext;
17 17
 import org.openzen.drawablegui.live.LiveObject;
18
-import org.openzen.drawablegui.live.SimpleLiveObject;
18
+import org.openzen.drawablegui.live.MutableLiveObject;
19 19
 import org.openzen.drawablegui.style.DStyleClass;
20 20
 import org.openzen.drawablegui.style.DStylePath;
21 21
 
@@ -26,7 +26,7 @@ import org.openzen.drawablegui.style.DStylePath;
26 26
 public class DForm extends BaseComponentGroup {
27 27
 	private final DFormComponent[] components;
28 28
 	private final DStyleClass styleClass;
29
-	private final LiveObject<DDimensionPreferences> preferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
29
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
30 30
 	
31 31
 	private DIRectangle bounds;
32 32
 	private DUIContext context;
@@ -56,26 +56,26 @@ public class DForm extends BaseComponentGroup {
56 56
 		
57 57
 		for (DFormComponent component : components) {
58 58
 			maxLabelWidth = Math.max(maxLabelWidth, fontMetrics.getWidth(component.label));
59
-			int componentWidth = component.component.getDimensionPreferences().getValue().preferredWidth;
59
+			int componentWidth = component.component.getSizing().getValue().preferredWidth;
60 60
 			maxFieldWidth = Math.max(maxFieldWidth, componentWidth);
61 61
 		}
62 62
 		
63 63
 		for (DFormComponent component : components) {
64
-			height += component.component.getDimensionPreferences().getValue().preferredHeight;
64
+			height += component.component.getSizing().getValue().preferredHeight;
65 65
 			height += style.spacing;
66 66
 		}
67 67
 		
68 68
 		this.maxFieldWidth = maxFieldWidth;
69 69
 		this.maxLabelWidth = maxLabelWidth;
70
-		preferences.setValue(new DDimensionPreferences(maxLabelWidth + maxFieldWidth + style.paddingLeft + style.paddingRight + style.spacing, height));
70
+		sizing.setValue(new DSizing(maxLabelWidth + maxFieldWidth + style.paddingLeft + style.paddingRight + style.spacing, height));
71 71
 		
72 72
 		if (bounds != null)
73 73
 			layout();
74 74
 	}
75 75
 
76 76
 	@Override
77
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
78
-		return preferences;
77
+	public LiveObject<DSizing> getSizing() {
78
+		return sizing;
79 79
 	}
80 80
 
81 81
 	@Override
@@ -108,7 +108,7 @@ public class DForm extends BaseComponentGroup {
108 108
 			canvas.drawText(style.labelFont, style.labelColor, x, y + baseline, component.label);
109 109
 			component.component.paint(canvas);
110 110
 			
111
-			y += component.component.getDimensionPreferences().getValue().preferredHeight + style.spacing;
111
+			y += component.component.getSizing().getValue().preferredHeight + style.spacing;
112 112
 		}
113 113
 	}
114 114
 
@@ -122,7 +122,7 @@ public class DForm extends BaseComponentGroup {
122 122
 		int y = bounds.y + style.paddingBottom;
123 123
 		
124 124
 		for (DFormComponent component : components) {
125
-			int preferredHeight = component.component.getDimensionPreferences().getValue().preferredHeight;
125
+			int preferredHeight = component.component.getSizing().getValue().preferredHeight;
126 126
 			DIRectangle componentBounds = new DIRectangle(x + maxLabelWidth, y, bounds.width - maxLabelWidth - style.paddingLeft - style.paddingRight - style.spacing, preferredHeight);
127 127
 			component.component.setBounds(componentBounds);
128 128
 			

+ 0
- 5
DrawableGui/src/main/java/org/openzen/drawablegui/live/ImmutableLiveObject.java Прегледај датотеку

@@ -24,11 +24,6 @@ public class ImmutableLiveObject<T> implements LiveObject<T> {
24 24
 		return value;
25 25
 	}
26 26
 
27
-	@Override
28
-	public void setValue(T value) {
29
-		throw new UnsupportedOperationException("Immutable value");
30
-	}
31
-
32 27
 	@Override
33 28
 	public ListenerHandle<Listener<T>> addListener(Listener<T> listener) {
34 29
 		return new DummyListenerHandle<>(listener);

+ 0
- 2
DrawableGui/src/main/java/org/openzen/drawablegui/live/LiveObject.java Прегледај датотеку

@@ -14,8 +14,6 @@ import org.openzen.drawablegui.listeners.ListenerHandle;
14 14
 public interface LiveObject<T> {
15 15
 	public T getValue();
16 16
 	
17
-	public void setValue(T value);
18
-	
19 17
 	public ListenerHandle<Listener<T>> addListener(Listener<T> listener);
20 18
 	
21 19
 	public interface Listener<T> {

+ 14
- 0
DrawableGui/src/main/java/org/openzen/drawablegui/live/MutableLiveObject.java Прегледај датотеку

@@ -0,0 +1,14 @@
1
+/*
2
+ * To change this license header, choose License Headers in Project Properties.
3
+ * To change this template file, choose Tools | Templates
4
+ * and open the template in the editor.
5
+ */
6
+package org.openzen.drawablegui.live;
7
+
8
+/**
9
+ *
10
+ * @author Hoofdgebruiker
11
+ */
12
+public interface MutableLiveObject<T> extends LiveObject<T> {
13
+	public void setValue(T value);
14
+}

+ 1
- 1
DrawableGui/src/main/java/org/openzen/drawablegui/live/SimpleLiveObject.java Прегледај датотеку

@@ -12,7 +12,7 @@ import org.openzen.drawablegui.listeners.ListenerList;
12 12
  *
13 13
  * @author Hoofdgebruiker
14 14
  */
15
-public class SimpleLiveObject<T> implements LiveObject<T> {
15
+public class SimpleLiveObject<T> implements MutableLiveObject<T> {
16 16
 	private final ListenerList<Listener<T>> listeners = new ListenerList<>();
17 17
 	private T value;
18 18
 	

+ 8
- 8
DrawableGui/src/main/java/org/openzen/drawablegui/scroll/DScrollBar.java Прегледај датотеку

@@ -7,14 +7,14 @@ package org.openzen.drawablegui.scroll;
7 7
 
8 8
 import org.openzen.drawablegui.DCanvas;
9 9
 import org.openzen.drawablegui.DComponent;
10
-import org.openzen.drawablegui.DDimensionPreferences;
10
+import org.openzen.drawablegui.DSizing;
11 11
 import org.openzen.drawablegui.DMouseEvent;
12 12
 import org.openzen.drawablegui.DIRectangle;
13 13
 import org.openzen.drawablegui.listeners.ListenerHandle;
14 14
 import org.openzen.drawablegui.live.LiveInt;
15 15
 import org.openzen.drawablegui.live.LiveObject;
16
-import org.openzen.drawablegui.live.SimpleLiveObject;
17 16
 import org.openzen.drawablegui.DUIContext;
17
+import org.openzen.drawablegui.live.MutableLiveObject;
18 18
 import org.openzen.drawablegui.style.DStyleClass;
19 19
 import org.openzen.drawablegui.style.DStylePath;
20 20
 
@@ -23,7 +23,7 @@ import org.openzen.drawablegui.style.DStylePath;
23 23
  * @author Hoofdgebruiker
24 24
  */
25 25
 public class DScrollBar implements DComponent {
26
-	private final LiveObject<DDimensionPreferences> preferences;
26
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
27 27
 	
28 28
 	private final DStyleClass styleClass;
29 29
 	private final LiveInt targetHeight;
@@ -47,7 +47,6 @@ public class DScrollBar implements DComponent {
47 47
 		this.styleClass = styleClass;
48 48
 		this.targetHeight = targetHeight;
49 49
 		this.offset = offset;
50
-		this.preferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
51 50
 		
52 51
 		targetHeightListener = targetHeight.addListener(new ScrollListener());
53 52
 		offsetListener = offset.addListener(new ScrollListener());
@@ -57,12 +56,12 @@ public class DScrollBar implements DComponent {
57 56
 	public void setContext(DStylePath parent, DUIContext context) {
58 57
 		this.context = context;
59 58
 		this.style = new DScrollBarStyle(context.getStylesheets().get(context, parent.getChild("scrollbar", styleClass)));
60
-		preferences.setValue(new DDimensionPreferences(style.width, 0));
59
+		sizing.setValue(new DSizing(style.width, 0));
61 60
 	}
62 61
 
63 62
 	@Override
64
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
65
-		return preferences;
63
+	public LiveObject<DSizing> getSizing() {
64
+		return sizing;
66 65
 	}
67 66
 
68 67
 	@Override
@@ -138,7 +137,8 @@ public class DScrollBar implements DComponent {
138 137
 
139 138
 	@Override
140 139
 	public void close() {
141
-		// nothing to clean up
140
+		targetHeightListener.close();
141
+		offsetListener.close();
142 142
 	}
143 143
 	
144 144
 	private void checkHover(DMouseEvent e) {

+ 7
- 8
DrawableGui/src/main/java/org/openzen/drawablegui/scroll/DScrollPane.java Прегледај датотеку

@@ -9,7 +9,7 @@ import org.openzen.drawablegui.DAnchor;
9 9
 import org.openzen.drawablegui.DCanvas;
10 10
 import org.openzen.drawablegui.DClipboard;
11 11
 import org.openzen.drawablegui.DComponent;
12
-import org.openzen.drawablegui.DDimensionPreferences;
12
+import org.openzen.drawablegui.DSizing;
13 13
 import org.openzen.drawablegui.DFont;
14 14
 import org.openzen.drawablegui.DFontMetrics;
15 15
 import org.openzen.drawablegui.DIRectangle;
@@ -61,7 +61,7 @@ public class DScrollPane implements DComponent {
61 61
 		offsetXListener = offsetX.addListener(new ScrollListener());
62 62
 		offsetYListener = offsetY.addListener(new ScrollListener());
63 63
 		
64
-		contents.getDimensionPreferences().addListener((oldPreferences, newPreferences) -> {
64
+		contents.getSizing().addListener((oldPreferences, newPreferences) -> {
65 65
 			if (bounds == null)
66 66
 				return;
67 67
 			
@@ -94,8 +94,8 @@ public class DScrollPane implements DComponent {
94 94
 	}
95 95
 
96 96
 	@Override
97
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
98
-		return contents.getDimensionPreferences(); // TODO: derived preferences
97
+	public LiveObject<DSizing> getSizing() {
98
+		return contents.getSizing(); // TODO: derived preferences
99 99
 	}
100 100
 
101 101
 	@Override
@@ -115,10 +115,9 @@ public class DScrollPane implements DComponent {
115 115
 		if (this.context == null)
116 116
 			return;
117 117
 		
118
-		int height = Math.max(
119
-				bounds.height - style.border.getPaddingTop() - style.border.getPaddingBottom(),
120
-				contents.getDimensionPreferences().getValue().preferredHeight);
121
-		int scrollBarWidth = scrollBar.getDimensionPreferences().getValue().preferredWidth;
118
+		int height = Math.max(bounds.height - style.border.getPaddingTop() - style.border.getPaddingBottom(),
119
+				contents.getSizing().getValue().preferredHeight);
120
+		int scrollBarWidth = scrollBar.getSizing().getValue().preferredWidth;
122 121
 		scrollBar.setBounds(new DIRectangle(
123 122
 				bounds.x + bounds.width - scrollBarWidth - style.border.getPaddingRight(),
124 123
 				bounds.y + style.border.getPaddingTop(),

+ 0
- 1
DrawableGui/src/main/java/org/openzen/drawablegui/scroll/DScrollPaneStyle.java Прегледај датотеку

@@ -7,7 +7,6 @@ package org.openzen.drawablegui.scroll;
7 7
 
8 8
 import org.openzen.drawablegui.border.DBorder;
9 9
 import org.openzen.drawablegui.border.DLineBorder;
10
-import org.openzen.drawablegui.DUIContext;
11 10
 import org.openzen.drawablegui.style.DStyleDefinition;
12 11
 
13 12
 /**

+ 2
- 2
DrawableGui/src/main/java/org/openzen/drawablegui/swing/SwingDialog.java Прегледај датотеку

@@ -13,7 +13,7 @@ import java.awt.event.WindowStateListener;
13 13
 import javax.swing.JDialog;
14 14
 import javax.swing.JFrame;
15 15
 import org.openzen.drawablegui.DComponent;
16
-import org.openzen.drawablegui.DDimensionPreferences;
16
+import org.openzen.drawablegui.DSizing;
17 17
 import org.openzen.drawablegui.DIRectangle;
18 18
 import org.openzen.drawablegui.DUIContext;
19 19
 import org.openzen.drawablegui.DUIWindow;
@@ -125,7 +125,7 @@ public final class SwingDialog extends JDialog implements WindowListener, Window
125 125
 		SwingDialog result = new SwingDialog(this, title, component, false);
126 126
 		result.setResizable(false);
127 127
 		
128
-		DDimensionPreferences size = component.getDimensionPreferences().getValue();
128
+		DSizing size = component.getSizing().getValue();
129 129
 		result.setLocation(
130 130
 				getX() + (getWidth() - size.preferredWidth) / 2,
131 131
 				getY() + (getHeight() - size.preferredHeight) / 2);

+ 3
- 3
DrawableGui/src/main/java/org/openzen/drawablegui/swing/SwingGraphicsContext.java Прегледај датотеку

@@ -15,7 +15,7 @@ import javax.swing.Timer;
15 15
 import org.openzen.drawablegui.DAnchor;
16 16
 import org.openzen.drawablegui.DClipboard;
17 17
 import org.openzen.drawablegui.DComponent;
18
-import org.openzen.drawablegui.DDimensionPreferences;
18
+import org.openzen.drawablegui.DSizing;
19 19
 import org.openzen.drawablegui.DPath;
20 20
 import org.openzen.drawablegui.DFont;
21 21
 import org.openzen.drawablegui.DFontMetrics;
@@ -155,7 +155,7 @@ public class SwingGraphicsContext implements DUIContext {
155 155
 		windowContext.graphics = this.graphics; // help a little...
156 156
 		
157 157
 		root.setContext(DStylePathRoot.INSTANCE, windowContext);
158
-		DDimensionPreferences dimension = root.getDimensionPreferences().getValue();
158
+		DSizing dimension = root.getSizing().getValue();
159 159
 		int tx = (int)(x - anchor.alignX * dimension.preferredWidth);
160 160
 		int ty = (int)(y - anchor.alignY * dimension.preferredHeight);
161 161
 		
@@ -175,7 +175,7 @@ public class SwingGraphicsContext implements DUIContext {
175 175
 		windowContext.graphics = this.graphics; // help a little...
176 176
 		
177 177
 		root.setContext(DStylePathRoot.INSTANCE, windowContext);
178
-		DDimensionPreferences dimension = root.getDimensionPreferences().getValue();
178
+		DSizing dimension = root.getSizing().getValue();
179 179
 		int tx = (int)(x - anchor.alignX * dimension.preferredWidth);
180 180
 		int ty = (int)(y - anchor.alignY * dimension.preferredHeight);
181 181
 		

+ 2
- 2
DrawableGui/src/main/java/org/openzen/drawablegui/swing/SwingWindow.java Прегледај датотеку

@@ -12,7 +12,7 @@ import java.awt.event.WindowListener;
12 12
 import java.awt.event.WindowStateListener;
13 13
 import javax.swing.JFrame;
14 14
 import org.openzen.drawablegui.DComponent;
15
-import org.openzen.drawablegui.DDimensionPreferences;
15
+import org.openzen.drawablegui.DSizing;
16 16
 import org.openzen.drawablegui.DIRectangle;
17 17
 import org.openzen.drawablegui.DUIContext;
18 18
 import org.openzen.drawablegui.DUIWindow;
@@ -106,7 +106,7 @@ public final class SwingWindow extends JFrame implements WindowListener, WindowS
106 106
 		SwingWindow result = new SwingWindow(title, component, false);
107 107
 		result.setResizable(false);
108 108
 		
109
-		DDimensionPreferences size = component.getDimensionPreferences().getValue();
109
+		DSizing size = component.getSizing().getValue();
110 110
 		result.setLocation(
111 111
 				getX() + (getWidth() - size.preferredWidth) / 2,
112 112
 				getY() + (getHeight() - size.preferredHeight) / 2);

+ 7
- 9
DrawableGui/src/main/java/org/openzen/drawablegui/tree/DTreeView.java Прегледај датотеку

@@ -10,7 +10,7 @@ import java.util.ArrayList;
10 10
 import java.util.List;
11 11
 import org.openzen.drawablegui.DCanvas;
12 12
 import org.openzen.drawablegui.DComponent;
13
-import org.openzen.drawablegui.DDimensionPreferences;
13
+import org.openzen.drawablegui.DSizing;
14 14
 import org.openzen.drawablegui.DDrawable;
15 15
 import org.openzen.drawablegui.DFontMetrics;
16 16
 import org.openzen.drawablegui.DMouseEvent;
@@ -18,10 +18,9 @@ import org.openzen.drawablegui.DTransform2D;
18 18
 import org.openzen.drawablegui.DIRectangle;
19 19
 import org.openzen.drawablegui.listeners.ListenerHandle;
20 20
 import org.openzen.drawablegui.live.LiveBool;
21
-import org.openzen.drawablegui.live.LiveObject;
22
-import org.openzen.drawablegui.live.SimpleLiveObject;
23 21
 import org.openzen.drawablegui.DUIContext;
24 22
 import org.openzen.drawablegui.live.LiveList;
23
+import org.openzen.drawablegui.live.MutableLiveObject;
25 24
 import org.openzen.drawablegui.style.DStylePath;
26 25
 
27 26
 /**
@@ -29,7 +28,7 @@ import org.openzen.drawablegui.style.DStylePath;
29 28
  * @author Hoofdgebruiker
30 29
  */
31 30
 public class DTreeView<N extends DTreeNode<N>> implements DComponent {
32
-	private final LiveObject<DDimensionPreferences> dimensionPreferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
31
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
33 32
 	private DIRectangle bounds;
34 33
 	
35 34
 	private int selectedRow = -1;
@@ -60,8 +59,8 @@ public class DTreeView<N extends DTreeNode<N>> implements DComponent {
60 59
 	}
61 60
 
62 61
 	@Override
63
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
64
-		return dimensionPreferences;
62
+	public MutableLiveObject<DSizing> getSizing() {
63
+		return sizing;
65 64
 	}
66 65
 	
67 66
 	@Override
@@ -188,9 +187,8 @@ public class DTreeView<N extends DTreeNode<N>> implements DComponent {
188 187
 		}
189 188
 		
190 189
 		if (rows.size() != oldRowCount) {
191
-			DDimensionPreferences preferences = dimensionPreferences.getValue();
192
-			dimensionPreferences.setValue(
193
-					new DDimensionPreferences(
190
+			DSizing preferences = sizing.getValue();
191
+			sizing.setValue(new DSizing(
194 192
 							preferences.minimumWidth,
195 193
 							preferences.minimumHeight,
196 194
 							preferences.preferredWidth,

+ 2
- 2
IDE/src/main/java/org/openzen/zenscript/ide/ui/IDEAspectBar.java Прегледај датотеку

@@ -6,8 +6,8 @@
6 6
 package org.openzen.zenscript.ide.ui;
7 7
 
8 8
 import org.openzen.drawablegui.live.LiveArrayList;
9
-import org.openzen.drawablegui.live.LiveObject;
10 9
 import org.openzen.drawablegui.live.MutableLiveList;
10
+import org.openzen.drawablegui.live.MutableLiveObject;
11 11
 import org.openzen.drawablegui.live.SimpleLiveObject;
12 12
 
13 13
 /**
@@ -16,5 +16,5 @@ import org.openzen.drawablegui.live.SimpleLiveObject;
16 16
  */
17 17
 public class IDEAspectBar {
18 18
 	public final MutableLiveList<IDEAspectToolbar> toolbars = new LiveArrayList<>();
19
-	public final LiveObject<IDEAspectToolbar> active = new SimpleLiveObject<>(null);
19
+	public final MutableLiveObject<IDEAspectToolbar> active = new SimpleLiveObject<>(null);
20 20
 }

+ 4
- 4
IDE/src/main/java/org/openzen/zenscript/ide/ui/IDEWindow.java Прегледај датотеку

@@ -6,8 +6,8 @@
6 6
 package org.openzen.zenscript.ide.ui;
7 7
 
8 8
 import org.openzen.drawablegui.live.LiveBool;
9
-import org.openzen.drawablegui.live.LiveObject;
10 9
 import org.openzen.drawablegui.live.LivePredicateBool;
10
+import org.openzen.drawablegui.live.MutableLiveObject;
11 11
 import org.openzen.drawablegui.live.SimpleLiveObject;
12 12
 import org.openzen.drawablegui.style.DStyleClass;
13 13
 import org.openzen.zenscript.ide.host.DevelopmentHost;
@@ -37,9 +37,9 @@ public class IDEWindow {
37 37
 	
38 38
 	public IDEAspectToolbar projectToolbar;
39 39
 	
40
-	private final LiveObject<IDEModule> contextModule = new SimpleLiveObject<>(null);
41
-	private final LiveObject<IDEPackage> contextPackage = new SimpleLiveObject<>(null);
42
-	private final LiveObject<IDESourceFile> contextFile = new SimpleLiveObject<>(null);
40
+	private final MutableLiveObject<IDEModule> contextModule = new SimpleLiveObject<>(null);
41
+	private final MutableLiveObject<IDEPackage> contextPackage = new SimpleLiveObject<>(null);
42
+	private final MutableLiveObject<IDESourceFile> contextFile = new SimpleLiveObject<>(null);
43 43
 	private final LiveBool addContentDisabled = new LivePredicateBool(contextPackage, pkg -> pkg == null);
44 44
 	
45 45
 	public IDEWindow(DevelopmentHost host) {

+ 3
- 1
IDE/src/main/java/org/openzen/zenscript/ide/ui/dialog/CreateSourceFileDialog.java Прегледај датотеку

@@ -23,6 +23,7 @@ import org.openzen.drawablegui.style.DDpDimension;
23 23
 import org.openzen.drawablegui.style.DStyleClass;
24 24
 import org.openzen.zenscript.ide.host.IDEModule;
25 25
 import org.openzen.zenscript.ide.host.IDEPackage;
26
+import org.openzen.zenscript.ide.host.IDESourceFile;
26 27
 import org.openzen.zenscript.ide.ui.IDEWindow;
27 28
 
28 29
 /**
@@ -84,6 +85,7 @@ public class CreateSourceFileDialog {
84 85
 	
85 86
 	private void ok() {
86 87
 		window.close();
87
-		pkg.createSourceFile(name.getValue() + ".zs");
88
+		IDESourceFile file = pkg.createSourceFile(name.getValue() + ".zs");
89
+		ideWindow.open(file);
88 90
 	}
89 91
 }

+ 5
- 5
IDE/src/main/java/org/openzen/zenscript/ide/ui/view/IconButtonControl.java Прегледај датотеку

@@ -8,7 +8,7 @@ package org.openzen.zenscript.ide.ui.view;
8 8
 import java.util.function.Consumer;
9 9
 import org.openzen.drawablegui.DCanvas;
10 10
 import org.openzen.drawablegui.DComponent;
11
-import org.openzen.drawablegui.DDimensionPreferences;
11
+import org.openzen.drawablegui.DSizing;
12 12
 import org.openzen.drawablegui.DDrawable;
13 13
 import org.openzen.drawablegui.DMouseEvent;
14 14
 import org.openzen.drawablegui.DPath;
@@ -19,7 +19,7 @@ import org.openzen.drawablegui.listeners.ListenerHandle;
19 19
 import org.openzen.drawablegui.live.ImmutableLiveBool;
20 20
 import org.openzen.drawablegui.live.LiveBool;
21 21
 import org.openzen.drawablegui.live.LiveObject;
22
-import org.openzen.drawablegui.live.SimpleLiveObject;
22
+import org.openzen.drawablegui.live.MutableLiveObject;
23 23
 import org.openzen.drawablegui.style.DStyleClass;
24 24
 import org.openzen.drawablegui.style.DStylePath;
25 25
 
@@ -38,7 +38,7 @@ public class IconButtonControl implements DComponent {
38 38
 	private DUIContext context;
39 39
 	private IconButtonControlStyle style;
40 40
 	private DIRectangle bounds;
41
-	private final LiveObject<DDimensionPreferences> preferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
41
+	private final MutableLiveObject<DSizing> preferences = DSizing.create();
42 42
 	private boolean hover;
43 43
 	private boolean press;
44 44
 	private DPath shape;
@@ -66,14 +66,14 @@ public class IconButtonControl implements DComponent {
66 66
 		int iconHeight = (int)(icon.getNominalWidth() * context.getScale() + 0.5f);
67 67
 		int width = iconWidth + 2 * style.padding + 2 * style.margin;
68 68
 		int height = iconHeight + 2 * style.padding + 2 * style.margin;
69
-		preferences.setValue(new DDimensionPreferences(width, height));
69
+		preferences.setValue(new DSizing(width, height));
70 70
 		
71 71
 		if (bounds != null)
72 72
 			setBounds(bounds);
73 73
 	}
74 74
 
75 75
 	@Override
76
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
76
+	public LiveObject<DSizing> getSizing() {
77 77
 		return preferences;
78 78
 	}
79 79
 

+ 4
- 4
IDE/src/main/java/org/openzen/zenscript/ide/ui/view/StatusBarView.java Прегледај датотеку

@@ -7,7 +7,7 @@ package org.openzen.zenscript.ide.ui.view;
7 7
 
8 8
 import org.openzen.drawablegui.DCanvas;
9 9
 import org.openzen.drawablegui.DComponent;
10
-import org.openzen.drawablegui.DDimensionPreferences;
10
+import org.openzen.drawablegui.DSizing;
11 11
 import org.openzen.drawablegui.DFontMetrics;
12 12
 import org.openzen.drawablegui.DIRectangle;
13 13
 import org.openzen.drawablegui.live.LiveObject;
@@ -22,7 +22,7 @@ import org.openzen.drawablegui.style.DStylePath;
22 22
  * @author Hoofdgebruiker
23 23
  */
24 24
 public class StatusBarView implements DComponent {
25
-	private final SimpleLiveObject<DDimensionPreferences> dimensionPreferences = new SimpleLiveObject<>(new DDimensionPreferences(0, 0));
25
+	private final SimpleLiveObject<DSizing> dimensionPreferences = new SimpleLiveObject<>(new DSizing(0, 0));
26 26
 	
27 27
 	private final DStyleClass styleClass;
28 28
 	private final LiveString content;
@@ -44,11 +44,11 @@ public class StatusBarView implements DComponent {
44 44
 		style = new StatusBarStyle(context.getStylesheets().get(context, path));
45 45
 		fontMetrics = context.getFontMetrics(style.font);
46 46
 		
47
-		dimensionPreferences.setValue(new DDimensionPreferences(0, style.paddingTop + fontMetrics.getAscent() + fontMetrics.getDescent() + style.paddingBottom));
47
+		dimensionPreferences.setValue(new DSizing(0, style.paddingTop + fontMetrics.getAscent() + fontMetrics.getDescent() + style.paddingBottom));
48 48
 	}
49 49
 	
50 50
 	@Override
51
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
51
+	public LiveObject<DSizing> getSizing() {
52 52
 		return dimensionPreferences;
53 53
 	}
54 54
 	

+ 7
- 7
IDE/src/main/java/org/openzen/zenscript/ide/ui/view/TabbedView.java Прегледај датотеку

@@ -10,16 +10,16 @@ import java.util.function.Predicate;
10 10
 import org.openzen.drawablegui.BaseComponentGroup;
11 11
 import org.openzen.drawablegui.DCanvas;
12 12
 import org.openzen.drawablegui.DComponent;
13
-import org.openzen.drawablegui.DDimensionPreferences;
13
+import org.openzen.drawablegui.DSizing;
14 14
 import org.openzen.drawablegui.DFontMetrics;
15 15
 import org.openzen.drawablegui.DIRectangle;
16 16
 import org.openzen.drawablegui.DUIContext;
17
-import org.openzen.drawablegui.live.ImmutableLiveObject;
18 17
 import org.openzen.drawablegui.live.LiveArrayList;
19 18
 import org.openzen.drawablegui.live.LiveList;
20 19
 import org.openzen.drawablegui.live.LiveMappedList;
21 20
 import org.openzen.drawablegui.live.LiveObject;
22 21
 import org.openzen.drawablegui.live.MutableLiveList;
22
+import org.openzen.drawablegui.live.MutableLiveObject;
23 23
 import org.openzen.drawablegui.live.SimpleLiveObject;
24 24
 import org.openzen.drawablegui.style.DStyleClass;
25 25
 import org.openzen.drawablegui.style.DStylePath;
@@ -31,8 +31,8 @@ import org.openzen.drawablegui.style.DStylePath;
31 31
 public class TabbedView extends BaseComponentGroup {
32 32
 	private final DStyleClass styleClass;
33 33
 	public final MutableLiveList<TabbedViewComponent> tabs = new LiveArrayList<>();
34
-	private final LiveObject<DDimensionPreferences> preferences = new ImmutableLiveObject<>(DDimensionPreferences.EMPTY);
35
-	public final LiveObject<TabbedViewComponent> currentTab = new SimpleLiveObject<>(null);
34
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
35
+	public final MutableLiveObject<TabbedViewComponent> currentTab = new SimpleLiveObject<>(null);
36 36
 	
37 37
 	private DUIContext context;
38 38
 	private DStylePath path;
@@ -82,8 +82,8 @@ public class TabbedView extends BaseComponentGroup {
82 82
 	}
83 83
 
84 84
 	@Override
85
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
86
-		return preferences;
85
+	public LiveObject<DSizing> getSizing() {
86
+		return sizing;
87 87
 	}
88 88
 
89 89
 	@Override
@@ -141,7 +141,7 @@ public class TabbedView extends BaseComponentGroup {
141 141
 		
142 142
 		int x = bounds.x + style.tabBarSpacingLeft;
143 143
 		for (DComponent tab : tabComponents) {
144
-			DDimensionPreferences preferences = tab.getDimensionPreferences().getValue();
144
+			DSizing preferences = tab.getSizing().getValue();
145 145
 			tab.setBounds(new DIRectangle(
146 146
 					x, bounds.y + totalTabHeight - preferences.preferredHeight, preferences.preferredWidth, preferences.preferredHeight));
147 147
 			

+ 11
- 11
IDE/src/main/java/org/openzen/zenscript/ide/ui/view/TabbedViewTab.java Прегледај датотеку

@@ -7,7 +7,7 @@ package org.openzen.zenscript.ide.ui.view;
7 7
 
8 8
 import org.openzen.drawablegui.DCanvas;
9 9
 import org.openzen.drawablegui.DComponent;
10
-import org.openzen.drawablegui.DDimensionPreferences;
10
+import org.openzen.drawablegui.DSizing;
11 11
 import org.openzen.drawablegui.DFontMetrics;
12 12
 import org.openzen.drawablegui.DIRectangle;
13 13
 import org.openzen.drawablegui.DMouseEvent;
@@ -15,7 +15,7 @@ import org.openzen.drawablegui.DPath;
15 15
 import org.openzen.drawablegui.DTransform2D;
16 16
 import org.openzen.drawablegui.DUIContext;
17 17
 import org.openzen.drawablegui.live.LiveObject;
18
-import org.openzen.drawablegui.live.SimpleLiveObject;
18
+import org.openzen.drawablegui.live.MutableLiveObject;
19 19
 import org.openzen.drawablegui.style.DStyleClass;
20 20
 import org.openzen.drawablegui.style.DStylePath;
21 21
 
@@ -25,8 +25,8 @@ import org.openzen.drawablegui.style.DStylePath;
25 25
  */
26 26
 public class TabbedViewTab implements DComponent {
27 27
 	private final TabbedViewComponent tab;
28
-	private final LiveObject<DDimensionPreferences> preferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
29
-	private final LiveObject<TabbedViewComponent> currentTab;
28
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
29
+	private final MutableLiveObject<TabbedViewComponent> currentTab;
30 30
 	
31 31
 	private final TabbedView parent;
32 32
 	public final TabbedViewTabClose closeButton;
@@ -40,7 +40,7 @@ public class TabbedViewTab implements DComponent {
40 40
 	private boolean hover;
41 41
 	private boolean press;
42 42
 	
43
-	public TabbedViewTab(TabbedView parent, LiveObject<TabbedViewComponent> currentTab, TabbedViewComponent tab) {
43
+	public TabbedViewTab(TabbedView parent, MutableLiveObject<TabbedViewComponent> currentTab, TabbedViewComponent tab) {
44 44
 		this.parent = parent;
45 45
 		this.currentTab = currentTab;
46 46
 		this.tab = tab;
@@ -60,17 +60,17 @@ public class TabbedViewTab implements DComponent {
60 60
 		closeButton.setContext(path, context);
61 61
 		
62 62
 		textWidth = fontMetrics.getWidth(tab.title);
63
-		preferences.setValue(new DDimensionPreferences(
63
+		sizing.setValue(new DSizing(
64 64
 				style.paddingLeft + textWidth + style.paddingRight
65 65
 						+ style.closeIconPadding
66
-						+ closeButton.getDimensionPreferences().getValue().preferredWidth,
66
+						+ closeButton.getSizing().getValue().preferredWidth,
67 67
 				style.paddingTop + fontMetrics.getAscent() + fontMetrics.getDescent()
68 68
 						+ style.paddingBottom));
69 69
 	}
70 70
 
71 71
 	@Override
72
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
73
-		return preferences;
72
+	public LiveObject<DSizing> getSizing() {
73
+		return sizing;
74 74
 	}
75 75
 
76 76
 	@Override
@@ -87,7 +87,7 @@ public class TabbedViewTab implements DComponent {
87 87
 	public void setBounds(DIRectangle bounds) {
88 88
 		this.bounds = bounds;
89 89
 		
90
-		DDimensionPreferences close = closeButton.getDimensionPreferences().getValue();
90
+		DSizing close = closeButton.getSizing().getValue();
91 91
 		closeButton.setBounds(new DIRectangle(
92 92
 				bounds.x + bounds.width - close.preferredWidth - style.paddingRight,
93 93
 				bounds.y + (bounds.height - close.preferredHeight) / 2,
@@ -98,7 +98,7 @@ public class TabbedViewTab implements DComponent {
98 98
 	@Override
99 99
 	public void paint(DCanvas canvas) {
100 100
 		int width = style.paddingLeft + textWidth + style.paddingRight
101
-				+ closeButton.getDimensionPreferences().getValue().preferredWidth + style.closeIconPadding;
101
+				+ closeButton.getSizing().getValue().preferredWidth + style.closeIconPadding;
102 102
 
103 103
 		int color = style.tabColorNormal;
104 104
 		if (currentTab.getValue() == tab)

+ 6
- 8
IDE/src/main/java/org/openzen/zenscript/ide/ui/view/TabbedViewTabClose.java Прегледај датотеку

@@ -8,17 +8,15 @@ package org.openzen.zenscript.ide.ui.view;
8 8
 import org.openzen.drawablegui.DCanvas;
9 9
 import org.openzen.drawablegui.DColorableIcon;
10 10
 import org.openzen.drawablegui.DComponent;
11
-import org.openzen.drawablegui.DDimensionPreferences;
12
-import org.openzen.drawablegui.DDrawable;
11
+import org.openzen.drawablegui.DSizing;
13 12
 import org.openzen.drawablegui.DIRectangle;
14 13
 import org.openzen.drawablegui.DMouseEvent;
15 14
 import org.openzen.drawablegui.DTransform2D;
16 15
 import org.openzen.drawablegui.DUIContext;
17 16
 import org.openzen.drawablegui.live.LiveObject;
18
-import org.openzen.drawablegui.live.SimpleLiveObject;
17
+import org.openzen.drawablegui.live.MutableLiveObject;
19 18
 import org.openzen.drawablegui.style.DStyleClass;
20 19
 import org.openzen.drawablegui.style.DStylePath;
21
-import org.openzen.zenscript.ide.ui.icons.ColoredIcon;
22 20
 import org.openzen.zenscript.ide.ui.icons.ScalableCloseIcon;
23 21
 
24 22
 /**
@@ -27,7 +25,7 @@ import org.openzen.zenscript.ide.ui.icons.ScalableCloseIcon;
27 25
  */
28 26
 public class TabbedViewTabClose implements DComponent {
29 27
 	private final TabbedViewTab tab;
30
-	private final LiveObject<DDimensionPreferences> preferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
28
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
31 29
 	
32 30
 	private DUIContext context;
33 31
 	private DIRectangle bounds;
@@ -47,13 +45,13 @@ public class TabbedViewTabClose implements DComponent {
47 45
 		
48 46
 		DStylePath path = parent.getChild("tabClose", DStyleClass.EMPTY);
49 47
 		style = new TabbedViewTabCloseStyle(context.getStylesheets().get(context, path));
50
-		preferences.setValue(new DDimensionPreferences(style.size, style.size));
48
+		sizing.setValue(new DSizing(style.size, style.size));
51 49
 		icon = new ScalableCloseIcon(style.size / 24);
52 50
 	}
53 51
 
54 52
 	@Override
55
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
56
-		return preferences;
53
+	public LiveObject<DSizing> getSizing() {
54
+		return sizing;
57 55
 	}
58 56
 
59 57
 	@Override

+ 2
- 2
IDE/src/main/java/org/openzen/zenscript/ide/ui/view/WindowView.java Прегледај датотеку

@@ -5,7 +5,7 @@
5 5
  */
6 6
 package org.openzen.zenscript.ide.ui.view;
7 7
 
8
-import org.openzen.drawablegui.DDimensionPreferences;
8
+import org.openzen.drawablegui.DSizing;
9 9
 import org.openzen.drawablegui.DEmptyView;
10 10
 import org.openzen.drawablegui.scroll.DScrollPane;
11 11
 import org.openzen.drawablegui.DSideLayout;
@@ -36,7 +36,7 @@ public final class WindowView extends DSideLayout {
36 36
 		this.window = window;
37 37
 		
38 38
 		DTreeView projectView = new DTreeView(DTreeViewStyle.DEFAULT, new RootTreeNode(window, host), false);
39
-		projectView.getDimensionPreferences().setValue(new DDimensionPreferences(500, 500));
39
+		projectView.getSizing().setValue(new DSizing(500, 500));
40 40
 		setMain(tabs = new TabbedView(DStyleClass.EMPTY));
41 41
 		add(Side.LEFT, new DScrollPane(DStyleClass.forId("projectView"), projectView));
42 42
 		add(Side.BOTTOM, new StatusBarView(DStyleClass.EMPTY, status));

+ 6
- 7
IDE/src/main/java/org/openzen/zenscript/ide/ui/view/aspectbar/AspectBarSelectorButton.java Прегледај датотеку

@@ -8,7 +8,7 @@ package org.openzen.zenscript.ide.ui.view.aspectbar;
8 8
 import java.util.function.Consumer;
9 9
 import org.openzen.drawablegui.DCanvas;
10 10
 import org.openzen.drawablegui.DComponent;
11
-import org.openzen.drawablegui.DDimensionPreferences;
11
+import org.openzen.drawablegui.DSizing;
12 12
 import org.openzen.drawablegui.DDrawable;
13 13
 import org.openzen.drawablegui.DMouseEvent;
14 14
 import org.openzen.drawablegui.DPath;
@@ -18,7 +18,7 @@ import org.openzen.drawablegui.DIRectangle;
18 18
 import org.openzen.drawablegui.listeners.ListenerHandle;
19 19
 import org.openzen.drawablegui.live.LiveBool;
20 20
 import org.openzen.drawablegui.live.LiveObject;
21
-import org.openzen.drawablegui.live.SimpleLiveObject;
21
+import org.openzen.drawablegui.live.MutableLiveObject;
22 22
 import org.openzen.drawablegui.style.DShadow;
23 23
 import org.openzen.drawablegui.style.DStyleClass;
24 24
 import org.openzen.drawablegui.style.DStylePath;
@@ -28,12 +28,11 @@ import org.openzen.drawablegui.style.DStylePath;
28 28
  * @author Hoofdgebruiker
29 29
  */
30 30
 public class AspectBarSelectorButton implements DComponent {
31
-	
32 31
 	public final LiveBool active;
33 32
 	
34 33
 	private final DStyleClass styleClass;
35 34
 	private final DDrawable icon;
36
-	private final LiveObject<DDimensionPreferences> preferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
35
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
37 36
 	private final Consumer<DMouseEvent> onClick;
38 37
 	private DUIContext context;
39 38
 	private AspectBarSelectorButtonStyle style;
@@ -58,7 +57,7 @@ public class AspectBarSelectorButton implements DComponent {
58 57
 		this.context = context;
59 58
 		DStylePath path = parent.getChild("selectorbutton", styleClass);
60 59
 		style = new AspectBarSelectorButtonStyle(context.getStylesheets().get(context, path));
61
-		preferences.setValue(new DDimensionPreferences(style.width, style.height));
60
+		sizing.setValue(new DSizing(style.width, style.height));
62 61
 		shape = DPath.roundedRectangle(
63 62
 				0,
64 63
 				0,
@@ -68,8 +67,8 @@ public class AspectBarSelectorButton implements DComponent {
68 67
 	}
69 68
 
70 69
 	@Override
71
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
72
-		return preferences;
70
+	public LiveObject<DSizing> getSizing() {
71
+		return sizing;
73 72
 	}
74 73
 
75 74
 	@Override

+ 1
- 1
IDE/src/main/java/org/openzen/zenscript/ide/ui/view/aspectbar/AspectBarStyle.java Прегледај датотеку

@@ -40,7 +40,7 @@ public class AspectBarStyle {
40 40
 	public final DShadow windowControlShadow;
41 41
 	
42 42
 	public AspectBarStyle(DStyleDefinition style) {
43
-		height = style.getDimension("height", new DDpDimension(32));
43
+		height = style.getDimension("height", new DDpDimension(38));
44 44
 		aspectSelectorPaddingLeft = style.getDimension("aspectSelectorPaddingLeft", new DDpDimension(4));
45 45
 		aspectSelectorToToolbarSpacing = style.getDimension("aspectSelectorToToolbarSpacing", new DDpDimension(16));
46 46
 		toolbarTitleToControlsSpacing = style.getDimension("toolbarTitleToControlsSpacing", new DDpDimension(8));

+ 21
- 24
IDE/src/main/java/org/openzen/zenscript/ide/ui/view/aspectbar/AspectBarView.java Прегледај датотеку

@@ -12,13 +12,12 @@ import java.util.function.Predicate;
12 12
 import org.openzen.drawablegui.BaseComponentGroup;
13 13
 import org.openzen.drawablegui.DCanvas;
14 14
 import org.openzen.drawablegui.DComponent;
15
-import org.openzen.drawablegui.DDimensionPreferences;
15
+import org.openzen.drawablegui.DSizing;
16 16
 import org.openzen.drawablegui.DFontMetrics;
17 17
 import org.openzen.drawablegui.DPath;
18 18
 import org.openzen.drawablegui.DTransform2D;
19 19
 import org.openzen.drawablegui.DIRectangle;
20 20
 import org.openzen.drawablegui.live.LiveObject;
21
-import org.openzen.drawablegui.live.SimpleLiveObject;
22 21
 import org.openzen.zenscript.ide.ui.IDEAspectBar;
23 22
 import org.openzen.zenscript.ide.ui.IDEAspectToolbar;
24 23
 import org.openzen.drawablegui.DUIContext;
@@ -28,6 +27,7 @@ import org.openzen.drawablegui.live.LiveBool;
28 27
 import org.openzen.drawablegui.live.LiveList;
29 28
 import org.openzen.drawablegui.live.LiveMappedList;
30 29
 import org.openzen.drawablegui.live.LivePredicateBool;
30
+import org.openzen.drawablegui.live.MutableLiveObject;
31 31
 import org.openzen.drawablegui.style.DStyleClass;
32 32
 import org.openzen.drawablegui.style.DStylePath;
33 33
 import org.openzen.zenscript.ide.ui.IDEAspectBarControl;
@@ -40,10 +40,9 @@ import org.openzen.zenscript.ide.ui.icons.ScalableMinimizeIcon;
40 40
  * @author Hoofdgebruiker
41 41
  */
42 42
 public class AspectBarView extends BaseComponentGroup {
43
-	private final SimpleLiveObject<DDimensionPreferences> dimensionPreferences = new SimpleLiveObject<>(new DDimensionPreferences(0, 64));
43
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
44 44
 	private final DStyleClass styleClass;
45 45
 	private final IDEAspectBar aspectBar;
46
-	private final List<IDEAspectToolbar> contextBars = new ArrayList<>();
47 46
 	
48 47
 	private DIRectangle bounds;
49 48
 	private DUIContext context;
@@ -64,9 +63,9 @@ public class AspectBarView extends BaseComponentGroup {
64 63
 	private WindowActionButton maximizeRestore;
65 64
 	private WindowActionButton close;
66 65
 	
67
-	private final ListenerHandle<LiveObject.Listener<DDimensionPreferences>> minimizeRelayout;
68
-	private final ListenerHandle<LiveObject.Listener<DDimensionPreferences>> maximizeRestoreRelayout;
69
-	private final ListenerHandle<LiveObject.Listener<DDimensionPreferences>> closeRelayout;
66
+	private final ListenerHandle<LiveObject.Listener<DSizing>> minimizeRelayout;
67
+	private final ListenerHandle<LiveObject.Listener<DSizing>> maximizeRestoreRelayout;
68
+	private final ListenerHandle<LiveObject.Listener<DSizing>> closeRelayout;
70 69
 	
71 70
 	public AspectBarView(DStyleClass styleClass, IDEAspectBar aspectBar) {
72 71
 		this.styleClass = styleClass;
@@ -76,16 +75,16 @@ public class AspectBarView extends BaseComponentGroup {
76 75
 		listener = aspectBar.toolbars.addListener(new ToolbarListListener());
77 76
 		
78 77
 		minimize = new WindowActionButton(scale -> new ScalableMinimizeIcon(scale), e -> context.getWindow().minimize());
79
-		minimizeRelayout = minimize.getDimensionPreferences().addListener((a, b) -> layout());
78
+		minimizeRelayout = minimize.getSizing().addListener((a, b) -> layout());
80 79
 		maximizeRestore = new WindowActionButton(ScalableMaximizeIcon::new, e -> {
81 80
 			if (context.getWindow().getWindowState().getValue() == DUIWindow.State.MAXIMIZED)
82 81
 				context.getWindow().restore();
83 82
 			else
84 83
 				context.getWindow().maximize();
85 84
 		});
86
-		maximizeRestoreRelayout = maximizeRestore.getDimensionPreferences().addListener((a, b) -> layout());
85
+		maximizeRestoreRelayout = maximizeRestore.getSizing().addListener((a, b) -> layout());
87 86
 		close = new WindowActionButton(scale -> new ScalableCloseIcon(scale), e -> context.getWindow().close());
88
-		closeRelayout = close.getDimensionPreferences().addListener((a, b) -> layout());
87
+		closeRelayout = close.getSizing().addListener((a, b) -> layout());
89 88
 		
90 89
 		selectorButtons = new LiveMappedList<>(
91 90
 				aspectBar.toolbars,
@@ -111,14 +110,11 @@ public class AspectBarView extends BaseComponentGroup {
111 110
 		activeToolbarTitleFontMetrics = context.getFontMetrics(style.activeToolbarTitleFont);
112 111
 		showWindowControls = !context.getWindow().hasTitleBar();
113 112
 		
113
+		sizing.setValue(new DSizing(0, style.height));
114
+		
114 115
 		for (DComponent selectorButton : selectorButtons)
115 116
 			selectorButton.setContext(path, context);
116 117
 		
117
-		if (bounds != null) {
118
-			layout();
119
-			aspectBar.active.setValue(aspectBar.active.getValue());
120
-		}
121
-		
122 118
 		if (activeToolbarComponents != null)
123 119
 			for (DComponent component : activeToolbarComponents)
124 120
 				component.setContext(path, context);
@@ -129,8 +125,8 @@ public class AspectBarView extends BaseComponentGroup {
129 125
 	}
130 126
 	
131 127
 	@Override
132
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
133
-		return dimensionPreferences;
128
+	public LiveObject<DSizing> getSizing() {
129
+		return sizing;
134 130
 	}
135 131
 	
136 132
 	@Override
@@ -231,9 +227,9 @@ public class AspectBarView extends BaseComponentGroup {
231 227
 		layoutActiveToolbarComponents();
232 228
 		
233 229
 		int x = bounds.x + bounds.width;
234
-		DDimensionPreferences closeSize = close.getDimensionPreferences().getValue();
235
-		DDimensionPreferences maximizeRestoreSize = maximizeRestore.getDimensionPreferences().getValue();
236
-		DDimensionPreferences minimizeSize = minimize.getDimensionPreferences().getValue();
230
+		DSizing closeSize = close.getSizing().getValue();
231
+		DSizing maximizeRestoreSize = maximizeRestore.getSizing().getValue();
232
+		DSizing minimizeSize = minimize.getSizing().getValue();
237 233
 		
238 234
 		x -= closeSize.preferredWidth;
239 235
 		close.setBounds(new DIRectangle(x, bounds.y, closeSize.preferredWidth, closeSize.preferredHeight));
@@ -253,8 +249,8 @@ public class AspectBarView extends BaseComponentGroup {
253 249
 		int x = bounds.x + style.aspectSelectorPaddingLeft;
254 250
 		
255 251
 		for (DComponent component : selectorButtons) {
256
-			int width = component.getDimensionPreferences().getValue().preferredWidth;
257
-			int height = component.getDimensionPreferences().getValue().preferredHeight;
252
+			int width = component.getSizing().getValue().preferredWidth;
253
+			int height = component.getSizing().getValue().preferredHeight;
258 254
 			int y = bounds.y + (bounds.height - style.aspectSelectorBottomSize - height) / 2;
259 255
 			component.setBounds(new DIRectangle(x, y, width, height));
260 256
 			
@@ -265,7 +261,7 @@ public class AspectBarView extends BaseComponentGroup {
265 261
 	}
266 262
 	
267 263
 	private void layoutActiveToolbarComponents() {
268
-		if (bounds == null)
264
+		if (bounds == null || bounds.height < (style.aspectBarPaddingTop + style.controlPaddingTop + style.controlPaddingBottom))
269 265
 			return;
270 266
 		
271 267
 		int x = aspectSelectorEndX
@@ -275,8 +271,9 @@ public class AspectBarView extends BaseComponentGroup {
275 271
 		
276 272
 		int y = style.aspectBarPaddingTop + style.controlPaddingTop;
277 273
 		int height = bounds.height - y - style.controlPaddingBottom;
274
+		
278 275
 		for (DComponent toolbarComponent : activeToolbarComponents) {
279
-			int width = toolbarComponent.getDimensionPreferences().getValue().preferredWidth;
276
+			int width = toolbarComponent.getSizing().getValue().preferredWidth;
280 277
 			toolbarComponent.setBounds(
281 278
 					new DIRectangle(x, bounds.y + y, width, height));
282 279
 			x += width;

+ 6
- 6
IDE/src/main/java/org/openzen/zenscript/ide/ui/view/aspectbar/WindowActionButton.java Прегледај датотеку

@@ -10,7 +10,7 @@ import java.util.function.Function;
10 10
 import org.openzen.drawablegui.DCanvas;
11 11
 import org.openzen.drawablegui.DColorableIcon;
12 12
 import org.openzen.drawablegui.DComponent;
13
-import org.openzen.drawablegui.DDimensionPreferences;
13
+import org.openzen.drawablegui.DSizing;
14 14
 import org.openzen.drawablegui.DMouseEvent;
15 15
 import org.openzen.drawablegui.DTransform2D;
16 16
 import org.openzen.drawablegui.DUIContext;
@@ -18,7 +18,7 @@ import org.openzen.drawablegui.DIRectangle;
18 18
 import org.openzen.drawablegui.listeners.ListenerHandle;
19 19
 import org.openzen.drawablegui.live.LiveBool;
20 20
 import org.openzen.drawablegui.live.LiveObject;
21
-import org.openzen.drawablegui.live.SimpleLiveObject;
21
+import org.openzen.drawablegui.live.MutableLiveObject;
22 22
 import org.openzen.drawablegui.style.DStylePath;
23 23
 import org.openzen.zenscript.ide.ui.icons.ScalableCloseIcon;
24 24
 
@@ -27,7 +27,7 @@ import org.openzen.zenscript.ide.ui.icons.ScalableCloseIcon;
27 27
  * @author Hoofdgebruiker
28 28
  */
29 29
 public class WindowActionButton implements DComponent {
30
-	private final SimpleLiveObject<DDimensionPreferences> preferences = new SimpleLiveObject<>(DDimensionPreferences.EMPTY);
30
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
31 31
 	
32 32
 	private final Function<Float, DColorableIcon> scalableIcon;
33 33
 	private final Consumer<DMouseEvent> action;
@@ -54,14 +54,14 @@ public class WindowActionButton implements DComponent {
54 54
 		windowFocusedListener = windowFocused.addListener((a, b) -> repaint());
55 55
 		
56 56
 		icon = scalableIcon == null ? null : scalableIcon.apply(context.getScale());
57
-		preferences.setValue(new DDimensionPreferences(
57
+		sizing.setValue(new DSizing(
58 58
 				(int)(48 * context.getScale()),
59 59
 				(int)(24 * context.getScale())));
60 60
 	}
61 61
 
62 62
 	@Override
63
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
64
-		return preferences;
63
+	public LiveObject<DSizing> getSizing() {
64
+		return sizing;
65 65
 	}
66 66
 
67 67
 	@Override

+ 38
- 9
IDE/src/main/java/org/openzen/zenscript/ide/ui/view/editor/SourceEditor.java Прегледај датотеку

@@ -8,7 +8,7 @@ package org.openzen.zenscript.ide.ui.view.editor;
8 8
 import java.io.IOException;
9 9
 import org.openzen.drawablegui.DCanvas;
10 10
 import org.openzen.drawablegui.DComponent;
11
-import org.openzen.drawablegui.DDimensionPreferences;
11
+import org.openzen.drawablegui.DSizing;
12 12
 import org.openzen.drawablegui.DFont;
13 13
 import org.openzen.drawablegui.DFontFamily;
14 14
 import org.openzen.drawablegui.DFontMetrics;
@@ -29,6 +29,7 @@ import org.openzen.zenscript.lexer.ZSToken;
29 29
 import org.openzen.zenscript.lexer.ZSTokenParser;
30 30
 import org.openzen.zenscript.lexer.ZSTokenType;
31 31
 import org.openzen.drawablegui.DUIContext;
32
+import org.openzen.drawablegui.live.MutableLiveObject;
32 33
 import org.openzen.drawablegui.live.SimpleLiveBool;
33 34
 import org.openzen.drawablegui.style.DStyleClass;
34 35
 import org.openzen.drawablegui.style.DStylePath;
@@ -44,7 +45,7 @@ import org.openzen.zenscript.ide.ui.view.IconButtonControl;
44 45
 public class SourceEditor implements DComponent {
45 46
 	private final DStyleClass styleClass;
46 47
 	private final DFont font = new DFont(DFontFamily.CODE, false, false, false, 24);
47
-	private final LiveObject<DDimensionPreferences> dimensionPreferences = new SimpleLiveObject<>(new DDimensionPreferences(0, 0));
48
+	private final MutableLiveObject<DSizing> sizing = DSizing.create();
48 49
 	private final String tab = "    ";
49 50
 	private final IDESourceFile sourceFile;
50 51
 	private final TokenModel tokens;
@@ -124,7 +125,7 @@ public class SourceEditor implements DComponent {
124 125
 		fullLineHeight = textLineHeight + fontMetrics.getLeading() + style.extraLineSpacing;
125 126
 		selectionLineHeight = textLineHeight + style.selectionPaddingTop + style.selectionPaddingBottom;
126 127
 		
127
-		dimensionPreferences.setValue(new DDimensionPreferences(0, fullLineHeight * tokens.getLineCount()));
128
+		sizing.setValue(new DSizing(0, fullLineHeight * tokens.getLineCount()));
128 129
 		
129 130
 		if (blinkTimer != null)
130 131
 			blinkTimer.close();
@@ -132,8 +133,8 @@ public class SourceEditor implements DComponent {
132 133
 	}
133 134
 
134 135
 	@Override
135
-	public LiveObject<DDimensionPreferences> getDimensionPreferences() {
136
-		return dimensionPreferences;
136
+	public LiveObject<DSizing> getSizing() {
137
+		return sizing;
137 138
 	}
138 139
 
139 140
 	@Override
@@ -464,6 +465,18 @@ public class SourceEditor implements DComponent {
464 465
 		if (deleteSelection())
465 466
 			return;
466 467
 		
468
+		if (cursorEnd.line > 0) {
469
+			String indent = tokens.getLine(cursorEnd.line - 1).getIndent(); // TODO: get nominal indent for current scope
470
+			if (cursorEnd.offset == indent.length()) {
471
+				// remove entire indent
472
+				SourcePosition deleteFrom = new SourcePosition(tokens, cursorEnd.line - 1, tokens.getLine(cursorEnd.line - 1).length());
473
+				tokens.delete(deleteFrom, cursorEnd);
474
+				unchanged.setValue(false);
475
+				setCursor(deleteFrom, deleteFrom);
476
+				return;
477
+			}
478
+		}
479
+		
467 480
 		if (cursorEnd.offset == 0) {
468 481
 			if (cursorEnd.line == 0)
469 482
 				return;
@@ -489,9 +502,25 @@ public class SourceEditor implements DComponent {
489 502
 	private void type(String value) {
490 503
 		deleteSelection();
491 504
 		
492
-		tokens.insert(cursorEnd, value);
493
-		SourcePosition position = new SourcePosition(tokens, cursorEnd.line, cursorEnd.offset + value.length());
494
-		setCursor(position, position);
505
+		if (value.equals("{")) {
506
+			String indent = tokens.getLine(cursorEnd.line).getIndent();
507
+			tokens.insert(cursorEnd, "{\n" + indent + "\t\n" + indent + "}");
508
+			
509
+			SourcePosition position = new SourcePosition(tokens, cursorEnd.line + 1, indent.length() + 1);
510
+			setCursor(position, position);
511
+		} else if (value.equals(";")) {
512
+			String indent = tokens.getLine(cursorEnd.line).getIndent();
513
+			tokens.insert(cursorEnd, ";\n" + indent);
514
+			
515
+			SourcePosition position = new SourcePosition(tokens, cursorEnd.line + 1, indent.length());
516
+			setCursor(position, position);
517
+		} else {
518
+			tokens.insert(cursorEnd, value);
519
+			
520
+			SourcePosition position = new SourcePosition(tokens, cursorEnd.line, cursorEnd.offset + value.length());
521
+			setCursor(position, position);
522
+		}
523
+		
495 524
 		unchanged.setValue(false);
496 525
 	}
497 526
 	
@@ -620,7 +649,7 @@ public class SourceEditor implements DComponent {
620 649
 	}
621 650
 	
622 651
 	private void onLinesUpdated() {
623
-		dimensionPreferences.setValue(new DDimensionPreferences(0, fullLineHeight * tokens.getLineCount()));
652
+		sizing.setValue(new DSizing(0, fullLineHeight * tokens.getLineCount()));
624 653
 		
625 654
 		if (bounds != null)
626 655
 			context.repaint(bounds);

Loading…
Откажи
Сачувај