Ticket #2389: 2389_im-fin.patch

File 2389_im-fin.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
     
    4848                BorderHud.BorderInsetsBottom.class, 
    4949                BorderHud.BorderInsetsLeft.class, 
    5050                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") 
    5254public class BorderHud extends ElementHud { 
    5355         
    5456        @SuppressWarnings("unused") 
  • modules/org.sophie2.base.halos/src/main/java/org/sophie2/base/halos/HudDialog.java

     
    200200                        if (parentHud != null) { 
    201201                                JComponent parentComponent = ((SwingVisualElement) parent().get()).swingComponent() 
    202202                                                .get(); 
    203  
     203                                if (findParentElement(HudTitleBar.class) != null) { 
     204//                                      parentComponent = ((SwingVisualElement) parent().get() 
     205//                                                      .parent().get()).swingComponent().get(); 
     206                                        parentComponent = findParentElement(HudTitleBar.class).swingComponent().get(); 
     207                                } 
     208                                 
    204209                                int height = 0; 
    205210                                Container cur = parentComponent; 
    206211                                while (cur !=null && cur != parentHud.swingComponent().get()) { 
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/shared/ContentHaloMenu.java

     
    2121 * @author milo 
    2222 */ 
    2323@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") 
    2525public class ContentHaloMenu extends FloatingHaloMenu { 
    2626 
    2727        @Override 
  • modules/org.sophie2.main.func.text/src/main/java/org/sophie2/main/func/text/chaining/TextChainHud.java

     
    11package org.sophie2.main.func.text.chaining; 
    22 
     3import java.awt.Font; 
    34import java.util.ArrayList; 
    45import java.util.List; 
    56 
     
    78import org.sophie2.base.bound.BoundValidation; 
    89import org.sophie2.base.bound.ComboInput; 
    910import org.sophie2.base.bound.ComboState; 
     11import org.sophie2.base.commons.util.ImmColor; 
    1012import org.sophie2.base.commons.util.position.ImmSize; 
     13import org.sophie2.base.halos.CloseHudButton; 
    1114import org.sophie2.base.halos.HudDialog; 
     15import org.sophie2.base.halos.HudTitleBar; 
    1216import org.sophie2.base.skins.SkinElementId; 
    1317import org.sophie2.base.visual.skins.ElementSkinPart; 
    1418import org.sophie2.base.visual.skins.RelatedChildren; 
     
    2933 *  
    3034 * @author nenko 
    3135 */ 
    32 @RelatedChildren( { TextChainHud.TextChainComboBox.class }) 
     36@RelatedChildren( { TextChainHud.TextChainHudTitleBar.class, TextChainHud.TextChainComboBox.class }) 
    3337@VisualElementDef(parent = TextChainHaloButton.class, sortKey = "text-chain-hud") 
    3438@SkinElementId("main.func.text.hud.text-chain") 
    3539public class TextChainHud extends HudDialog { 
     
    4044                part.add(TITLE_PROP_ID, "Chain Text Frames"); 
    4145                part.add(TOOL_TIP_PROP_ID, "Choose chaining options"); 
    4246        } 
     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        } 
    4387 
    4488        /** 
    4589         * 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

     
    6161        ColorPicker.AlphaValueDec.class, 
    6262        ColorPicker.AlphaSlider.class  
    6363} )  
    64 @VisualElementDef(parent = ColorPickerHud.class, sortKey = "aaa-color-picker") 
     64@VisualElementDef(parent = ColorPickerHud.class, sortKey = "bbb-color-picker") 
    6565public class ColorPicker extends BaseSwingVisualElement { 
    6666 
    6767        /** 
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/page/resize/PageResizeHaloMenu.java

     
    1919 * @author milo, jani 
    2020 */ 
    2121@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") 
    2323@RelatedChildren( { PageResizeHaloButton.class }) 
    2424public class PageResizeHaloMenu extends FloatingHaloMenu { 
    2525 
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/huds/gradient/GradientPickerHud.java

     
    3737                @SuppressWarnings("unused") 
    3838                @SkinPartDef 
    3939                private static void defineSkin(ElementSkinPart part) { 
    40  
     40                        part.add(TITLE_PROP_ID, "Gradient"); 
    4141                        part.add(FONT_ID, new Font("Arial", Font.BOLD, 12)); 
    4242                        part.add(FONT_COLOR_ID, new ImmColor(0.17578125f, 0.26171875f, 0.6875f)); 
    4343 
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/frame/RightSideHaloMenu.java

     
    1414 * @author peko 
    1515 */ 
    1616@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") 
    1818@RelatedChildren({ FrameZOrderUpHaloButton.class, FrameZOrderDownHaloButton.class}) 
    1919public class RightSideHaloMenu extends SelectionHaloMenu { 
    2020 
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/huds/color/ColorPickerHud.java

     
    3030         * @author peko 
    3131         */ 
    3232        @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") 
    3434        @RelatedChildren( { ColorPickerHudTitleBar.ColorPickerCloseButton.class }) 
    3535        public static class ColorPickerHudTitleBar extends HudTitleBar { 
    3636                 
    3737                @SuppressWarnings("unused") 
    3838                @SkinPartDef 
    3939                private static void defineSkin(ElementSkinPart part) { 
    40  
    4140                        part.add(TITLE_PROP_ID, "Color"); 
    4241                        part.add(FONT_ID, new Font("Arial", Font.BOLD, 12)); 
    4342                        part.add(FONT_COLOR_ID, new ImmColor(0.17578125f, 0.26171875f, 0.6875f)); 
     
    5049                 * @author peko 
    5150                 */ 
    5251                @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") 
    5453                public static class ColorPickerCloseButton extends CloseHudButton { 
    5554                 
    5655                        @SuppressWarnings("unused") 
     
    6160                         
    6261                } 
    6362                 
     63                @Override 
     64                protected boolean computeVisible() { 
     65                        return true; 
     66                } 
     67                 
    6468        } 
    6569         
    6670        @SuppressWarnings("unused") 
    6771        @SkinPartDef 
    6872        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"); 
    7074        } 
    7175         
    7276        @Override 
  • modules/org.sophie2.extra.func.embedded/src/main/java/org/sophie2/extra/func/embedded/view/EmbeddedBooksHud.java

     
    9090                @SuppressWarnings("unused") 
    9191                @SkinPartDef 
    9292                private static void defineSkin(ElementSkinPart part) { 
    93                         part.add(TITLE_PROP_ID, "Title"); 
     93                        part.add(TITLE_PROP_ID, "Embedded book"); 
    9494                        part.add(FONT_ID, new Font("Arial", Font.BOLD, 12)); 
    9595                        part.add(FONT_COLOR_ID, new ImmColor(0.17578125f, 0.26171875f, 0.6875f)); 
    9696                        part.add(SIZE_PROP_ID, new ImmSize(150, 25));