Ticket #2389: 2389.patch
File 2389.patch, 11.3 KB (added by stefan, 15 years ago) |
---|
-
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/huds/appearance/BorderHud.java
### Eclipse Workspace Patch 1.0 #P sophie
48 48 BorderHud.BorderInsetsBottom.class, 49 49 BorderHud.BorderInsetsLeft.class, 50 50 BorderHud.BorderOpacity.class}) 51 @VisualElementDef(parent=AppearanceHud.BorderSubHudButton.class, sortKey="ccc-border-hud") 51 // @VisualElementDef(parent=AppearanceHud.BorderSubHudButton.class, 52 // sortKey="ccc-border-hud") 53 @VisualElementDef(parent = AppearanceHud.BorderSubHudButton.class, sortKey = "ccc-border-hud") 52 54 public class BorderHud extends ElementHud { 53 55 54 56 @SuppressWarnings("unused") -
modules/org.sophie2.base.halos/src/main/java/org/sophie2/base/halos/HudDialog.java
200 200 if (parentHud != null) { 201 201 JComponent parentComponent = ((SwingVisualElement) parent().get()).swingComponent() 202 202 .get(); 203 203 if (parent().get().parent().get() != null && 204 parent().get().parent().get() instanceof HudTitleBar) { 205 parentComponent = ((SwingVisualElement) parent().get() 206 .parent().get()).swingComponent().get(); 207 } 208 204 209 int height = 0; 205 210 Container cur = parentComponent; 206 211 while (cur !=null && cur != parentHud.swingComponent().get()) { -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/shared/ContentHaloMenu.java
21 21 * @author milo 22 22 */ 23 23 @SkinElementId("main.app.halos.shared.frame-content-halo-menu") 24 @VisualElementDef(parent = AppMainWindow.class, sortKey = " zzz-frame-content-halo-menu")24 @VisualElementDef(parent = AppMainWindow.class, sortKey = "uuu-frame-content-halo-menu") 25 25 public class ContentHaloMenu extends FloatingHaloMenu { 26 26 27 27 @Override -
modules/org.sophie2.main.func.text/src/main/java/org/sophie2/main/func/text/chaining/TextChainHud.java
1 1 package org.sophie2.main.func.text.chaining; 2 2 3 import java.awt.Font; 3 4 import java.util.ArrayList; 4 5 import java.util.List; 5 6 … … 7 8 import org.sophie2.base.bound.BoundValidation; 8 9 import org.sophie2.base.bound.ComboInput; 9 10 import org.sophie2.base.bound.ComboState; 11 import org.sophie2.base.commons.util.ImmColor; 10 12 import org.sophie2.base.commons.util.position.ImmSize; 13 import org.sophie2.base.halos.CloseHudButton; 11 14 import org.sophie2.base.halos.HudDialog; 15 import org.sophie2.base.halos.HudTitleBar; 12 16 import org.sophie2.base.skins.SkinElementId; 13 17 import org.sophie2.base.visual.skins.ElementSkinPart; 14 18 import org.sophie2.base.visual.skins.RelatedChildren; … … 29 33 * 30 34 * @author nenko 31 35 */ 32 @RelatedChildren( { TextChainHud.TextChain ComboBox.class })36 @RelatedChildren( { TextChainHud.TextChainHudTitleBar.class, TextChainHud.TextChainComboBox.class }) 33 37 @VisualElementDef(parent = TextChainHaloButton.class, sortKey = "text-chain-hud") 34 38 @SkinElementId("main.func.text.hud.text-chain") 35 39 public class TextChainHud extends HudDialog { … … 40 44 part.add(TITLE_PROP_ID, "Chain Text Frames"); 41 45 part.add(TOOL_TIP_PROP_ID, "Choose chaining options"); 42 46 } 47 48 /** 49 * The title for the text chain hud. 50 * 51 * @author stefan 52 * 53 */ 54 @SkinElementId("main.func.text.hud.text-chain-title-bar") 55 @VisualElementDef(parent = TextChainHud.class, sortKey = "aaa-text-chain-hud-title-bar") 56 @RelatedChildren( { TextChainHudTitleBar.TextChainCloseButton.class }) 57 public static class TextChainHudTitleBar extends HudTitleBar { 58 59 @SuppressWarnings("unused") 60 @SkinPartDef 61 private static void defineSkin(ElementSkinPart part) { 62 63 part.add(TITLE_PROP_ID, "Text chain"); 64 part.add(FONT_ID, new Font("Arial", Font.BOLD, 12)); 65 part.add(FONT_COLOR_ID, new ImmColor(0.17578125f, 0.26171875f, 0.6875f)); 66 67 } 68 69 /** 70 * The close button of the text chain hud. 71 * 72 * @author stefan 73 */ 74 @SkinElementId("main.func.text.hud.text-chain-close-button") 75 @VisualElementDef(parent = TextChainHudTitleBar.class, sortKey = "aaa-text-chain-hud-close-button") 76 public static class TextChainCloseButton extends CloseHudButton { 77 78 @SuppressWarnings("unused") 79 @SkinPartDef 80 private static void defineSkin(ElementSkinPart part) { 81 part.add(TOOL_TIP_PROP_ID, "Close the text chain"); 82 } 83 84 } 85 86 } 43 87 44 88 /** 45 89 * A combo box that contains all text frames that can be chained to the -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/huds/color/ColorPicker.java
61 61 ColorPicker.AlphaValueDec.class, 62 62 ColorPicker.AlphaSlider.class 63 63 } ) 64 @VisualElementDef(parent = ColorPickerHud.class, sortKey = " aaa-color-picker")64 @VisualElementDef(parent = ColorPickerHud.class, sortKey = "bbb-color-picker") 65 65 public class ColorPicker extends BaseSwingVisualElement { 66 66 67 67 /** -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/page/resize/PageResizeHaloMenu.java
19 19 * @author milo, jani 20 20 */ 21 21 @SkinElementId("main.view.halos.page.resize.page-resize-halo-menu") 22 @VisualElementDef(parent = AppMainWindow.class, sortKey = " kkk-page-resize-halo-menu")22 @VisualElementDef(parent = AppMainWindow.class, sortKey = "zzz-page-resize-halo-menu") 23 23 @RelatedChildren( { PageResizeHaloButton.class }) 24 24 public class PageResizeHaloMenu extends FloatingHaloMenu { 25 25 -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/huds/gradient/GradientPickerHud.java
37 37 @SuppressWarnings("unused") 38 38 @SkinPartDef 39 39 private static void defineSkin(ElementSkinPart part) { 40 40 part.add(TITLE_PROP_ID, "Gradient"); 41 41 part.add(FONT_ID, new Font("Arial", Font.BOLD, 12)); 42 42 part.add(FONT_COLOR_ID, new ImmColor(0.17578125f, 0.26171875f, 0.6875f)); 43 43 -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/frame/RightSideHaloMenu.java
14 14 * @author peko 15 15 */ 16 16 @SkinElementId("main.view.halos.shared.right-side-halo-menu") 17 @VisualElementDef(parent = AppMainWindow.class, sortKey = " eee-right-side-halo-menu")17 @VisualElementDef(parent = AppMainWindow.class, sortKey = "yyy-right-side-halo-menu") 18 18 @RelatedChildren({ FrameZOrderUpHaloButton.class, FrameZOrderDownHaloButton.class}) 19 19 public class RightSideHaloMenu extends SelectionHaloMenu { 20 20 -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/huds/color/ColorPickerHud.java
30 30 * @author peko 31 31 */ 32 32 @SkinElementId("main.view.halos.huds.color-picker-hud-title-bar") 33 @VisualElementDef(parent = ColorPickerHud.class, sortKey = "a -color-picker-hud-title-bar")33 @VisualElementDef(parent = ColorPickerHud.class, sortKey = "aaa-color-picker-hud-title-bar") 34 34 @RelatedChildren( { ColorPickerHudTitleBar.ColorPickerCloseButton.class }) 35 35 public static class ColorPickerHudTitleBar extends HudTitleBar { 36 36 37 37 @SuppressWarnings("unused") 38 38 @SkinPartDef 39 39 private static void defineSkin(ElementSkinPart part) { 40 41 40 part.add(TITLE_PROP_ID, "Color"); 42 41 part.add(FONT_ID, new Font("Arial", Font.BOLD, 12)); 43 42 part.add(FONT_COLOR_ID, new ImmColor(0.17578125f, 0.26171875f, 0.6875f)); … … 50 49 * @author peko 51 50 */ 52 51 @SkinElementId("main.view.halos.huds.color-picker-close-button") 53 @VisualElementDef(parent = ColorPickerHudTitleBar.class, sortKey = " zzz-color-picker-close-button")52 @VisualElementDef(parent = ColorPickerHudTitleBar.class, sortKey = "aaa-color-picker-close-button") 54 53 public static class ColorPickerCloseButton extends CloseHudButton { 55 54 56 55 @SuppressWarnings("unused") … … 61 60 62 61 } 63 62 63 @Override 64 protected boolean computeVisible() { 65 return true; 66 } 67 64 68 } 65 69 66 70 @SuppressWarnings("unused") 67 71 @SkinPartDef 68 72 private static void defineSkin(ElementSkinPart part) { 69 part.add(TOOL_TIP_PROP_ID, "Pick a color .");73 part.add(TOOL_TIP_PROP_ID, "Pick a color"); 70 74 } 71 75 72 76 @Override -
modules/org.sophie2.extra.func.embedded/src/main/java/org/sophie2/extra/func/embedded/view/EmbeddedBooksHud.java
90 90 @SuppressWarnings("unused") 91 91 @SkinPartDef 92 92 private static void defineSkin(ElementSkinPart part) { 93 part.add(TITLE_PROP_ID, " Title");93 part.add(TITLE_PROP_ID, "Embedded book"); 94 94 part.add(FONT_ID, new Font("Arial", Font.BOLD, 12)); 95 95 part.add(FONT_COLOR_ID, new ImmColor(0.17578125f, 0.26171875f, 0.6875f)); 96 96 part.add(SIZE_PROP_ID, new ImmSize(150, 25));