Ticket #2495: 2495.patch

File 2495.patch, 58.1 KB (added by diana, 15 years ago)
  • TabularUnified modules/org.sophie2.main.app.layout/src/main/java/org/sophie2/main/app/layout/left/pages/PageStructurePalette.java

    ### Eclipse Workspace Patch 1.0
    #P sophie
     
    1010import org.sophie2.base.commons.util.ImmList; 
    1111import org.sophie2.base.commons.util.position.ImmPoint; 
    1212import org.sophie2.base.commons.util.position.ImmSize; 
    13 import org.sophie2.base.commons.util.position.Position; 
    1413import org.sophie2.base.dnd.SophieDragDropHandler; 
    1514import org.sophie2.base.layout.model.TreePalette; 
    1615import org.sophie2.base.layout.model.TreePaletteItem; 
    1716import org.sophie2.base.model.book.ElementH; 
    18 import org.sophie2.base.model.book.frame.BoundMode; 
    1917import org.sophie2.base.model.book.interfaces.ResizableElement; 
    2018import org.sophie2.base.model.book.links.Link; 
    2119import org.sophie2.base.model.book.links.LinkRule; 
     
    255253                        } 
    256254 
    257255                        if (type().get() == ItemType.DETAILS_LOCATION) { 
    258                                 ImmPoint pos = model.getLocation(BoundMode.CONTENT, 
    259                                                 Position.TOP_LEFT, element().get().getTime()); 
     256                                ImmPoint pos = element().get().contentLocation().get(); 
    260257 
    261258                                return "Frame Location : " + "( " + pos.getX() +  
    262259                                ", " + pos.getY() + " )"; 
    
          
  • TabularUnified modules/org.sophie2.main.func.text/src/main/java/org/sophie2/main/func/text/links/TextLinkProcessor.java

     
    22 
    33import java.util.HashMap; 
    44 
     5 
    56import org.sophie2.base.commons.structures.ImmTreeMap; 
    67import org.sophie2.base.commons.util.ImmColor; 
    78import org.sophie2.base.commons.util.ImmMap; 
    89import org.sophie2.base.model.text.HotAttr; 
     10import org.sophie2.base.model.text.TextChange; 
    911import org.sophie2.base.model.text.TextReplaceChange; 
    1012import org.sophie2.base.model.text.elements.CommonAttr; 
    1113import org.sophie2.base.model.text.model.ImmTextInterval; 
     
    130132 
    131133        public DefaultTextEffect applyChange(TextProcessorEffect prevEffect, ImmText oldSource, 
    132134                        ImmText oldResult, TextLinkOptions procOptions) { 
    133 //              TextChange change = prevEffect.getChange(); 
    134 //              ImmText sourceText = prevEffect.getText(); 
    135 //              ImmText toProcess = sourceText.subText(change.getTargetDamage(sourceText)); 
    136 // 
    137 //              TextReplaceChange effect = new TextReplaceChange( 
    138 //                              change.getSourceDamage(oldSource), process(toProcess, procOptions)); 
    139 // 
    140 //              ImmText result = effect.applyTo(oldResult); 
    141 //              assert result.getEnd() == sourceText.getEnd() : result.getEnd() + " : " + sourceText.getEnd(); 
    142 // 
    143 //              return new DefaultTextEffect(effect, result); 
    144                  
    145                 ImmText res = process(prevEffect.getText(), procOptions); 
    146                 return new DefaultTextEffect(ImmTextUtils.getChange(oldResult, res), res); 
     135 
     136                TextChange change = prevEffect.getChange(); 
     137                ImmText oldResult2 = prevEffect.getText(); 
     138                ImmTextInterval damagedInterval = change.getTargetDamage(oldSource); 
     139                ImmText damagedText = oldResult2.subText(damagedInterval); 
     140                damagedText = process(damagedText, procOptions); 
     141                ImmText res = ImmTextUtils.fastReplaceInterval(damagedInterval, oldResult2, damagedText); 
     142                if (res == null) { 
     143                        ImmText prefixText = oldResult2.subText(new ImmTextInterval(oldResult2.getBegin(), damagedInterval.getBegin())); 
     144                        ImmText suffixText = oldResult2.subText(new ImmTextInterval(damagedInterval.getEnd(), oldResult2.getEnd())); 
     145                        res = prefixText.concat(damagedText); 
     146                        res = res.concat(suffixText); 
     147                } 
     148                TextChange newChange = new TextReplaceChange(damagedInterval, damagedText); 
     149                return new DefaultTextEffect(newChange, res); 
    147150        } 
    148151 
    149152        public ImmText process(ImmText sourceText, TextLinkOptions procOptions) { 
     
    161164                                HashMap<HotAttr<?>, Object> values = new HashMap<HotAttr<?>, Object>(); 
    162165                                ImmColor fgColor = procOptions.getColor(linkId); 
    163166                                if (fgColor != null) { 
    164  
    165167                                        values.put(CommonAttr.FOREGROUND_COLOR, fgColor); 
    166                                         unitStyle = unitStyle.derive(values); 
    167168 
    168                                         // TODO performance could be better if the style is applied for a whole interval. 
    169                                         result = result.applyStyle(unitStyle, new ImmTextInterval(i, i+1)); 
     169                                        HotStyleDef newStyle = HotStyleDef.getEmpty().derive(values); 
     170                                        int endIndex = getEndForLinkId(sourceText, i); 
     171                                        result = result.applyStyle(newStyle, new ImmTextInterval(i, endIndex)); 
     172                                        i += endIndex; 
    170173                                } 
    171174                        } 
    172175                } 
    173176 
    174177                return result; 
    175178        } 
     179        private int getEndForLinkId(ImmText sourceText, int beginIndex) { 
     180                String linkId = sourceText.unitAt(beginIndex).getStyle().getValue(CommonAttr.LINK_ATTRIBUTE); 
     181                int endIndex  = beginIndex; 
     182                for (; endIndex < sourceText.getEnd(); ++endIndex) { 
     183                        if (! sourceText.unitAt(endIndex).getStyle().getValue(CommonAttr.LINK_ATTRIBUTE).equals(linkId)) { 
     184                                break; 
     185                        } 
     186                } 
     187                return endIndex; 
     188        } 
    176189 
    177190        public DefaultTextEffect setOptions(ImmText source, ImmText oldProcessed, 
    178191                        TextLinkOptions oldOptions, TextLinkOptions newOptions) { 
    
          
  • TabularUnified modules/org.sophie2.base.model.text/src/main/java/org/sophie2/base/model/text/model/TextUtils.java

     
    9797         *                      The text's prefix. 
    9898         */ 
    9999        public static ImmText getPrefix(ImmText text, int toIndex) { 
    100                 if (text.getEnd() == 0) { 
     100                if (text.getEnd() == 0 || text.getEnd() == toIndex) { 
    101101                        return text; 
    102102                } 
    103103                ImmTextInterval interval =  
     
    120120         */ 
    121121        public static ImmText getSuffix(ImmText text, int fromIndex) { 
    122122 
    123                 if (text.getEnd() == 0 && fromIndex == 0) { 
     123                if (text.getEnd() == 0 || fromIndex == text.getBegin()) { 
    124124                        return text; 
    125125                } 
    126126                int begin = ImmTextUtils.advance(text, text.getBegin(), fromIndex); 
    
          
  • TabularUnified modules/org.sophie2.base.model.text/src/main/java/org/sophie2/base/model/text/model/ImmHotText.java

     
    8989        public ImmHotText replace(ImmTextInterval interval, ImmText newText) { 
    9090                assert interval != null : "Interval should not be null"; 
    9191                assert newText != null : "Text should not be null"; 
    92                  
     92 
    9393                if (interval.isEmpty() && newText.getEnd() == 0) { 
    9494                        return this; 
    9595                } 
     
    114114                        newTextUnits = newTextUnits.remove(index); 
    115115                } 
    116116 
    117                 int endRunIndex = getRunEnd(0); 
     117                HotStyleDef lastUnitStyle = null; 
     118                HotStyleDef lastUsedStyle = null; 
    118119                HotStyleDef newStyle  = newStyles; 
    119120                if (newText.getEnd() >= 1) { 
    120121                        TextUnit unit = newText.unitAt(0); 
    121122                        HotStyleDef style = unit.getStyle(); 
    122                                 newStyle = newStyle.derive(style); 
     123                        lastUnitStyle = style; 
     124                        newStyle = newStyle.derive(style); 
     125                        lastUsedStyle = newStyle; 
    123126                } 
    124127 
    125128                for (int i = 0; i < newText.getEnd(); ++i, ++index) { 
    126129                        TextUnit unit = newText.unitAt(i); 
    127                         if (i >= endRunIndex) { 
    128                                 HotStyleDef style = unit.getStyle(); 
    129                                 newStyle = newStyle.replaceDerive(style); 
    130                                 endRunIndex = getRunEnd(endRunIndex + 1); 
     130                        HotStyleDef style = unit.getStyle(); 
     131                        if (lastUnitStyle != null &&  
     132                                        style.getHash().equals(lastUnitStyle.getHash())) { 
     133                                newStyle = lastUsedStyle; 
     134                        } else { 
     135                        //I do not see the difference between using derive  
     136                        //and replaceDerive(if sth. is wrong with the styles-use replaceDerive instead) 
     137                        //--diana 05-08-10 
     138                                newStyle = newStyle.derive(style); 
     139                                lastUsedStyle = newStyle; 
     140                                lastUnitStyle = style; 
    131141                        } 
    132142 
    133143                        newTextUnits =  
     
    156166        } 
    157167 
    158168        public ImmHotText applyStyle(HotStyleDef style, ImmTextInterval interval) { 
    159                  
     169 
    160170                if (interval.isEmpty()) { 
    161171                        return this; 
    162172                } 
    163                  
     173 
    164174                ImmList<TextUnit> newImmTextUnits = this.textUnits; 
     175                HotStyleDef lastUnitStyle = this.textUnits.get(interval.getBegin()).getStyle(); 
     176                HotStyleDef lastUsedStyle = this.textUnits.get(interval.getBegin()).getStyle().derive(style); 
    165177 
     178                 
    166179                // TODO what if the begin is after the end?? --kyli 
    167180                for (int i = interval.getBegin(); i < interval.getEnd(); ++i) { 
     181                        HotStyleDef unitStyle = this.textUnits.get(i).getStyle(); 
     182                        HotStyleDef newStyle = lastUsedStyle; 
     183                        if (! unitStyle.getHash().equals(lastUnitStyle.getHash())) { 
     184                                newStyle = unitStyle.derive(style); 
     185                                lastUnitStyle = unitStyle; 
     186                                lastUsedStyle = newStyle; 
     187                        } 
    168188                        TextUnit newTextUnit =  new TextUnit(this.textUnits.get(i).getChar(), 
    169                                         this.textUnits.get(i).getStyle().derive(style)); 
     189                                        newStyle); 
    170190                        newImmTextUnits = newImmTextUnits.set(i, newTextUnit); 
    171191                } 
    172192 
     
    241261                ImmHotText otherHotText = (ImmHotText) otherText; 
    242262                return new ImmHotText(this.textUnits.concat(otherHotText.textUnits)); 
    243263        } 
    244  
    245         private int getRunEnd(int i) { 
    246                 if (this.getEnd() <= i) { 
    247                         return i; 
     264         
     265        @SuppressWarnings("unused") 
     266        private ImmHotText replaceUnits(ImmTextInterval interval, ImmHotText text) { 
     267                ImmList<TextUnit> newUnits = text.textUnits; 
     268                ImmList<TextUnit> newTextUnits = this.textUnits; 
     269                assert interval.getEnd() - interval.getBegin() == newUnits.size() : "Inconsistent replace!"; 
     270                for(int i = interval.getBegin(); i < interval.getEnd(); ++i) { 
     271                        newTextUnits = newTextUnits.set(i, newUnits.get(i - interval.getBegin())); 
    248272                } 
    249                 int endIndex = i; 
    250                 assert endIndex < this.getEnd() && endIndex >= this.getBegin(); 
     273                assert newTextUnits.size() == this.textUnits.size(); 
     274                return new ImmHotText(newTextUnits); 
     275        } 
    251276 
    252                 HotStyleDef styleDef = unitAt(endIndex).getStyle(); 
    253                 while (endIndex < this.getEnd()) { 
    254                         if (! unitAt(endIndex).getStyle().equals(styleDef)) { 
    255                                 break; 
    256                         } 
    257                         ++ endIndex; 
    258                 } 
    259                 return endIndex - 1 < getBegin() ? endIndex : endIndex - 1; 
    260         } 
     277        //Currently the HotStyleDef::equals method is not fast enough to use this function ;( 
     278        //      private int getRunEnd(int i) { 
     279        //              if (this.getEnd() <= i) { 
     280        //                      return i; 
     281        //              } 
     282        //              int endIndex = i; 
     283        //              assert endIndex < this.getEnd() && endIndex >= this.getBegin(); 
     284        // 
     285        //              HotStyleDef styleDef = unitAt(endIndex).getStyle(); 
     286        //              while (endIndex < this.getEnd()) { 
     287        //                      if (! unitAt(endIndex).getStyle().equals(styleDef)) { 
     288        //                              break; 
     289        //                      } 
     290        //                      ++ endIndex; 
     291        //              } 
     292        //              return endIndex - 1 < getBegin() ? endIndex : endIndex - 1; 
     293        //      } 
    261294} 
    
          
  • TabularUnified modules/org.sophie2.base.connectivity/.settings/org.eclipse.jdt.launching.prefs

     
     1#Thu Aug 12 11:26:08 EEST 2010 
     2eclipse.preferences.version=1 
     3org.eclipse.jdt.launching.PREF_STRICTLY_COMPATIBLE_JRE_NOT_AVAILABLE=warning 
    
          
  • TabularUnified modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/frame/rotate/FrameRotateHaloMenu.java

     
    4141                                if (!computeVisible()) { 
    4242                                        return ImmPoint.ZERO; 
    4343                                } 
     44                                ImmPoint frameLocation = frameView.contentLocation().get();  
     45                                 
    4446                                FrameH frame = frameView.model().get();  
    45                                 ImmPoint frameLocation = frame.getLocation(BoundMode.CONTENT, Position.TOP_LEFT,  
    46                                                 frameView.getTime());  
    47                                 ImmPoint locInParent = frame.getLocation(BoundMode.MARGIN, Position.BOTTOM_RIGHT, 
    48                                                 frameView.getTime()); 
     47                                ImmPoint locInParent = frame.getLocation(frameView.contentLocation().get(), 
     48                                                BoundMode.MARGIN, Position.BOTTOM_RIGHT); 
    4949                                ImmPoint locInFrame =  
    5050                                        locInParent.translate(-frameLocation.getX(), -frameLocation.getY()); 
    5151                                return locInFrame; 
    
          
  • TabularUnified modules/org.sophie2.base.model.text/src/main/java/org/sophie2/base/model/text/mvc/CaretProcessor.java

     
    44import java.util.Map; 
    55 
    66import org.sophie2.base.model.text.HotAttr; 
     7import org.sophie2.base.model.text.TextChange; 
     8import org.sophie2.base.model.text.TextReplaceChange; 
    79import org.sophie2.base.model.text.elements.LayoutAttr; 
    810import org.sophie2.base.model.text.model.ImmText; 
    911import org.sophie2.base.model.text.model.ImmTextInterval; 
     
    4547                ImmText sourceText = prevEffect.getText(); 
    4648                ImmText newText = getStyledText(sourceText, procOptions); 
    4749 
    48                 return new DefaultTextEffect(ImmTextUtils.getChange(oldResult, newText), newText); 
     50                ImmTextInterval damagedInterval = prevEffect.getChange().getSourceDamage(oldSource); 
     51                ImmText replaceText = newText.subText(damagedInterval); 
     52                TextChange change = new TextReplaceChange(damagedInterval, replaceText); 
     53                return new DefaultTextEffect(change, newText); 
    4954        } 
    5055 
    5156        public Class<CaretOptions> getOptionsClass() { 
     
    5964        public DefaultTextEffect setOptions(ImmText source,  
    6065                        ImmText oldProcessed, CaretOptions oldOptions, CaretOptions newOptions) { 
    6166 
     67                 
    6268                ImmText newText = getStyledText(source, newOptions); 
    6369 
    6470                return new DefaultTextEffect(ImmTextUtils.getChange(oldProcessed, newText), newText); 
    
          
  • TabularUnified modules/org.sophie2.main.func.text/.settings/org.eclipse.core.resources.prefs

     
     1#Thu Aug 12 10:29:41 EEST 2010 
     2eclipse.preferences.version=1 
     3encoding/<project>=UTF-8 
    
          
  • TabularUnified modules/org.sophie2.main.app.halos/src/test/java/org/sophie2/main/app/halos/frame/rotate/FrameRotateHaloButtonTest.java

     
    116116        @Test 
    117117        public void test90() { 
    118118                 
    119                 ImmArea area = this.frame.getBoundArea(BoundMode.MARGIN, this.fv.getTime(), true); 
     119                ImmArea area = this.fv.getBoundArea(BoundMode.MARGIN, true); 
    120120                int marginHeight = (int) area.getBounds().getHeight(); 
    121121                 
    122122                rotate(0, -marginHeight, -Math.PI/2, null); 
     
    128128        @Test 
    129129        public void test45() { 
    130130                 
    131                 ImmArea area = this.frame.getBoundArea(BoundMode.MARGIN, this.fv.getTime(), true); 
     131                ImmArea area = this.fv.getBoundArea(BoundMode.MARGIN, true); 
    132132                int marginHeight = (int) area.getBounds().getHeight(); 
    133133                 
    134134                rotate(0, -marginHeight/2, -Math.PI/4, null); 
     
    142142                BaseBookView bookView = this.pwa.bookView().get(); 
    143143                bookView.setViewOptions(bookView.getViewOptions().modifyZoom(0.5f)); 
    144144                                 
    145                 ImmArea area = this.frame.getBoundArea(BoundMode.MARGIN, this.fv.getTime(), true); 
     145                ImmArea area = this.fv.getBoundArea(BoundMode.MARGIN, true); 
    146146 
    147147                int marginHeight = (int) area.getBounds().getHeight(); 
    148148                rotate(0, -marginHeight/4, -Math.PI/4, null); 
     
    156156                BaseBookView bookView = this.pwa.bookView().get(); 
    157157                bookView.setViewOptions(bookView.getViewOptions().modifyZoom(2.0f)); 
    158158                 
    159                 ImmArea area = this.frame.getBoundArea(BoundMode.MARGIN, this.fv.getTime(), true); 
     159                ImmArea area = this.fv.getBoundArea(BoundMode.MARGIN, true); 
    160160                int marginHeight = (int) area.getBounds().getHeight(); 
    161161                 
    162162                rotate(0, -marginHeight, -Math.PI/4, null); 
    
          
  • TabularUnified modules/org.sophie2.main.func.text/src/main/java/org/sophie2/main/func/text/rtf/ApplyRtfStylesUtility.java

     
    2020import org.sophie2.base.model.text.elements.TextAlign; 
    2121import org.sophie2.base.model.text.model.ImmHotText; 
    2222import org.sophie2.base.model.text.model.ImmText; 
    23 import org.sophie2.base.model.text.model.ImmTextInterval; 
    2423import org.sophie2.base.model.text.model.ImmTextUtils; 
    2524import org.sophie2.base.model.text.style.HotStyleDef; 
    2625import org.sophie2.main.app.commons.util.AttributedPair; 
     
    7574 
    7675                applyStyles(element, builder, entries); 
    7776 
    78  
    79                 ImmText newText = new ImmHotText(builder.toString(), null); 
     77                String text = builder.toString(); 
     78                ImmText newText = ImmTextUtils.createEmptyText(); 
    8079                int curPos = newText.getBegin(); 
    8180 
    8281                for (ElementEntry entry : entries) { 
    8382                        int length = entry.getLength(); 
    84                         ImmTextInterval interval = new ImmTextInterval(curPos, ImmTextUtils. 
    85                                         advance(newText, curPos, length)); 
    8683                        HotStyleDef def = HotStyleDef.getEmpty().derive(entry.getAttributes()); 
    87                         newText = newText.applyStyle(def, interval); 
    88                         curPos = ImmTextUtils.advance(newText, curPos, length); 
     84                        ImmText styledText = new ImmHotText(text.substring(curPos, curPos + length) , def);  
     85                        curPos += length; 
     86                        newText = newText.concat(styledText); 
    8987                } 
    9088 
    9189                return newText; 
    
          
  • TabularUnified modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/page/PwaSelector.java

     
    340340         *                      True if the specified ElementView can be selected; false otherwise. 
    341341         */ 
    342342        public boolean canBeSelected(ElementView toSelect) { 
    343                 if (!toSelect.getTime().isOn()) { 
     343                if (!toSelect.isOn().get()) { 
    344344                        return false; 
    345345                } 
    346346                 
    
          
  • TabularUnified modules/org.sophie2.main.func.text/src/main/java/org/sophie2/main/func/text/view/TextFrameView.java

     
    33import java.util.List; 
    44 
    55import org.sophie2.base.commons.util.position.ImmArea; 
    6 import org.sophie2.base.media.TimePos; 
    76import org.sophie2.base.model.book.frame.BoundMode; 
    87import org.sophie2.base.model.resources.r4.access.ResourceAccess; 
    98import org.sophie2.base.model.text.model.ImmTextInterval; 
     
    5554         */ 
    5655        public Prop<ImmArea> wrappedArea() { 
    5756                class wrappedArea extends AutoProperty<ImmArea> { 
    58  
     57                         
    5958                        @Override 
    6059                        protected ImmArea compute() { 
    61                                 TimePos time = getTime(); 
    62                                 ImmArea resArea = model().get().getBoundArea(BoundMode.CONTENT, time, true); 
     60                                ImmArea resArea = getBoundArea(BoundMode.CONTENT, true); 
    6361                                ElementView parentView = parent().get(); 
    6462                                 
    6563                                if (parentView != null) { 
     
    7371                                                                break; 
    7472                                                        } 
    7573                                                        resArea = resArea.subtract( 
    76                                                                         nextView.model().get().getBoundArea(BoundMode.MARGIN, time, false)); 
     74                                                                        nextView.getBoundArea(BoundMode.MARGIN, false)); 
    7775                                                } 
    7876                                        } 
     77                                        return resArea;  
    7978                                } 
    80                                 return resArea; 
     79                                return ImmArea.EMPTY; 
    8180                        } 
    8281                } 
    8382                return getBean().makeProp(wrappedArea.class); 
    
          
  • TabularUnified modules/org.sophie2.base.model.book/src/main/java/org/sophie2/base/model/book/FrameH.java

     
    11package org.sophie2.base.model.book; 
    22 
    33import org.sophie2.base.commons.util.ImmList; 
    4 import org.sophie2.base.commons.util.position.ImmArea; 
    54import org.sophie2.base.commons.util.position.ImmInsets; 
    65import org.sophie2.base.commons.util.position.ImmPoint; 
    76import org.sophie2.base.commons.util.position.ImmSize; 
    87import org.sophie2.base.media.TimePos; 
    98import org.sophie2.base.model.book.frame.BoundMode; 
    10 import org.sophie2.base.model.book.frame.FrameR4; 
    11 import org.sophie2.base.model.book.frame.WrappingModes; 
    129import org.sophie2.base.model.book.interfaces.CompositeElement; 
    1310import org.sophie2.base.model.book.interfaces.MemberElement; 
    1411import org.sophie2.base.model.book.interfaces.ResizableElement; 
     
    196193                return ".frame.s2"; 
    197194        } 
    198195         
    199         @Override 
    200         public ImmArea getBoundArea(BoundMode boundMode, TimePos elementTime, 
    201                         Boolean wrapMode) { 
    202                 if (!wrapMode) {  
    203                                 if (WrappingModes.NO_WRAP.equals(this.get(FrameR4.KEY_WRAP))) {  
    204                                         return ImmArea.EMPTY;  
    205                                 }  
    206                 }  
    207                 return super.getBoundArea(boundMode, elementTime, wrapMode); 
    208         } 
    209  
    210196} 
    
          
  • TabularUnified modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/align/AlignElementsLogic.java

     
    4949 
    5050                        ImmArea bounds = ImmArea.EMPTY; 
    5151                        for (ElementView view : selected) { 
    52                                 ImmArea area = view.model().get().getBoundArea(BoundMode.CONTENT, view.getTime(), true);  
     52                                ImmArea area = view.getBoundArea(BoundMode.CONTENT, true);  
    5353                                bounds = bounds.union(area); 
    5454                        } 
    5555 
     
    6666                        for (int i = 0; i < selected.size(); ++i) { 
    6767                                if (selected.get(i).model().get().isMember()) { 
    6868                                        ElementView selectedView = selected.get(i); 
    69                                         ImmRect oldBounds = selectedView.model().get().getBoundArea(  
    70                                                         BoundMode.CONTENT, selectedView.getTime(), true).getBounds();    
     69                                        ImmRect oldBounds = selectedView.getBoundArea(  
     70                                                        BoundMode.CONTENT, true).getBounds();    
    7171                                        ImmPoint newLocation = button.calculateNewLocation(oldBounds, alignValue); 
    7272                                        oldLocations.add(selectedView.model().get().get(MemberElement.KEY_LOCATION));  
    7373                                        newLocations.add(newLocation); 
    
          
  • TabularUnified modules/org.sophie2.main.func.text/src/main/java/org/sophie2/main/func/text/search/TextSearchProcessor.java

     
    44 
    55import org.sophie2.base.commons.util.ImmColor; 
    66import org.sophie2.base.model.text.HotAttr; 
     7import org.sophie2.base.model.text.TextChange; 
    78import org.sophie2.base.model.text.TextReplaceChange; 
    89import org.sophie2.base.model.text.elements.CommonAttr; 
    910import org.sophie2.base.model.text.model.ImmTextInterval; 
     
    3132        } 
    3233 
    3334        private static TextSearchProcessor instance = null; 
    34  
     35         
    3536        /** 
    3637         * Gets the only instance of this processor. 
    3738         *  
     
    6364 
    6465                ImmText newResult = process(sourceText, procOptions); 
    6566 
    66                 return new DefaultTextEffect( 
    67                                 ImmTextUtils.getChange(oldResult, newResult), newResult); 
     67                ImmTextInterval damagedInterval = prevEffect.getChange().getSourceDamage(oldSource); 
     68                ImmText damagedText = newResult.subText(damagedInterval); 
     69                TextChange change = new TextReplaceChange(damagedInterval, damagedText); 
     70                 
     71                return new DefaultTextEffect(change, newResult); 
    6872        } 
    6973 
    7074        public Class<TextSearchOptions> getOptionsClass() { 
     
    7377 
    7478        public ImmText process(ImmText sourceText, TextSearchOptions procOptions) { 
    7579 
     80                ImmTextInterval searchedInterval = procOptions.getInterval(); 
     81                if (searchedInterval.isEmpty()) { 
     82                        return sourceText; 
     83                } 
    7684                HashMap<HotAttr<?>, Object> styleValues = new HashMap<HotAttr<?>, Object>(); 
    7785                styleValues.put(CommonAttr.BACKGROUND_COLOR, procOptions.getColor()); 
    7886 
    7987                HotStyleDef style = HotStyleDef.getEmpty().derive(styleValues); 
    80                 if (procOptions.getInterval().getBegin() >= sourceText.getBegin() && 
    81                                 procOptions.getInterval().getEnd() <= sourceText.getEnd()) { 
    82                         return sourceText.applyStyle(style, procOptions.getInterval()); 
     88                if (searchedInterval.getBegin() >= sourceText.getBegin() && 
     89                                searchedInterval.getEnd() <= sourceText.getEnd()) { 
     90                        return sourceText.applyStyle(style, searchedInterval); 
    8391                } 
    8492                return sourceText; 
    8593        } 
     
    119127                private final ImmTextInterval interval; 
    120128                private final ImmColor highlightColor; 
    121129 
     130                @Override 
     131                public boolean equals(Object o) { 
     132                        if (o == null) { 
     133                                return false; 
     134                        } 
     135                        if (! (o instanceof TextSearchOptions)) { 
     136                                return false; 
     137                        } 
     138                        TextSearchOptions opts = (TextSearchOptions) o; 
     139                        return this.highlightColor.equals(opts.getColor())  
     140                                                && this.interval.equals(opts.getInterval()); 
     141                } 
    122142                /** 
    123143                 * Default constructor. 
    124144                 *  
    
          
  • TabularUnified modules/org.sophie2.base.commons/src/main/java/org/sophie2/base/commons/util/position/ImmArea.java

     
    9090                }); 
    9191        } 
    9292 
     93        @Override 
     94        public String toString() { 
     95                return "ImmArea: " + this.area.getBounds().height + " " + this.area.getBounds().width; 
     96        } 
    9397        /** 
    9498         * Computes the union of this area and another one. 
    9599         *  
     
    279283                        return h.toHash(); 
    280284                } 
    281285        } 
     286         
     287        @Override 
     288        public int hashCode() { 
     289                final int prime = 31; 
     290                int result = 1; 
     291                result = prime * result + ((this.area == null) ? 0 : this.area.hashCode()); 
     292                return result; 
     293        } 
     294 
     295        @Override 
     296        public boolean equals(Object obj) { 
     297                if (this == obj) { 
     298                        return true; 
     299                } 
     300                if (obj == null) { 
     301                        return false; 
     302                } 
     303                if (getClass() != obj.getClass()) { 
     304                        return false; 
     305                } 
     306                ImmArea other = (ImmArea) obj; 
     307                if (this.area == null) { 
     308                        if (other.area != null) { 
     309                                return false; 
     310                        } 
     311                } else if (!this.area.equals(other.area)) { 
     312                        return false; 
     313                } 
     314                 
     315                return true; 
     316        } 
    282317} 
    
          
  • TabularUnified modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/huds/properties/PropertiesHud.java

     
    561561                                        res = model.getLocation(BoundMode.CONTENT, 
    562562                                                        rotationPosition().get(), time); 
    563563                                         
    564                                         ImmPoint contentLoc = model.getLocation( 
    565                                                         BoundMode.CONTENT, Position.TOP_LEFT, time); 
     564                                        ImmPoint contentLoc = fv.contentLocation().get(); 
    566565                                        ImmMatrix m = ImmMatrix.IDENTITY.rotate 
    567566                                                        (model.getRotationAngle(), contentLoc.getX(), contentLoc.getY()); 
    568567                                        res = m.transform(res); 
    
          
  • TabularUnified modules/org.sophie2.extra.func.spellcheck/src/main/java/org/sophie2/extra/func/spellcheck/UnderliningProcessor.java

     
    44import java.util.List; 
    55 
    66import org.sophie2.base.model.text.HotAttr; 
     7import org.sophie2.base.model.text.TextChange; 
    78import org.sophie2.base.model.text.TextReplaceChange; 
    89import org.sophie2.base.model.text.elements.LayoutAttr; 
    910import org.sophie2.base.model.text.model.ImmText; 
    1011import org.sophie2.base.model.text.model.ImmTextInterval; 
    11 import org.sophie2.base.model.text.model.ImmTextUtils; 
    1212import org.sophie2.base.model.text.mvc.DefaultTextEffect; 
    1313import org.sophie2.base.model.text.mvc.TextProcessor; 
    1414import org.sophie2.base.model.text.mvc.TextProcessorEffect; 
     
    4949                ImmText sourceText = prevEffect.getText(); 
    5050                ImmText newResult = process(sourceText, procOptions); 
    5151 
    52                 return new DefaultTextEffect( 
    53                                 ImmTextUtils.getChange(oldResult, newResult), newResult); 
     52                ImmTextInterval damagedInterval = prevEffect.getChange().getSourceDamage(oldSource); 
     53                ImmText damagedText = newResult.subText(damagedInterval); 
     54                TextChange change = new TextReplaceChange(damagedInterval, damagedText); 
     55                return new DefaultTextEffect(change, newResult); 
    5456        } 
    5557 
    5658        public Class<UnderlineOptions> getOptionsClass() { 
     
    7072                         
    7173                        if (procOptions.getIntervals() != null) { 
    7274                                for (ImmTextInterval interval : procOptions.getIntervals()) { 
    73                                         if (interval.getBegin() >= result.getBegin() &&  
     75                                        if (!interval.isEmpty() && interval.getBegin() >= result.getBegin() &&  
    7476                                                interval.getEnd() <= result.getEnd ()){ 
    7577                                                result = result.applyStyle(style, interval); 
    7678                                        } 
     
    8688                        UnderlineOptions newOptions) { 
    8789         
    8890                ImmText result = process (source, newOptions); 
    89                  
     91 
    9092                //TODO: this is possibly slow and unneeded 
    9193                ImmTextInterval oldDamagedInterval = new ImmTextInterval (oldProcessed.getBegin(), oldProcessed.getEnd()); 
    9294                ImmTextInterval newDamagedInterval = new ImmTextInterval (result.getBegin(), result.getEnd()); 
    
          
  • TabularUnified modules/org.sophie2.base.model.text/src/main/java/org/sophie2/base/model/text/mvc/SelectionProcessor.java

     
    4444 
    4545        public DefaultTextEffect applyChange(TextProcessorEffect prevEffect, 
    4646                        ImmText oldSource, ImmText oldResult, SelectionOptions procOptions) { 
    47          
     47 
    4848                ImmText sourceText = prevEffect.getText(); 
    4949                ImmText newText = processText(sourceText, procOptions);  
    5050 
    5151                assert newText.getEnd() ==  
    5252                        sourceText.getEnd() : newText.getEnd() + " : " + sourceText.getEnd(); 
     53                ImmTextInterval damagedInterval = prevEffect.getChange().getSourceDamage(oldSource); 
     54                ImmText damagedText = newText.subText(damagedInterval); 
    5355 
    54                         return new DefaultTextEffect(ImmTextUtils.getChange(oldResult, newText), newText); 
     56                TextChange change = new TextReplaceChange(damagedInterval, damagedText); 
     57                return new DefaultTextEffect(change, newText); 
    5558        } 
    5659 
    5760        public Class<SelectionOptions> getOptionsClass() { 
     
    7578                Object value = procOptions.getValue(); 
    7679                ImmTextInterval selectionInterval = procOptions.getSelection(); 
    7780 
     81                if (selectionInterval.isEmpty()) { 
     82                        return sourceText; 
     83                } 
    7884                if (ImmTextUtils.isIndexInText(selectionInterval.getBegin(), sourceText) && 
    7985                                ImmTextUtils.isIndexInText(selectionInterval.getEnd(), sourceText)) {  
    8086 
     
    9399        public DefaultTextEffect setOptions(ImmText source,  
    94100                        ImmText oldProcessed, SelectionOptions oldOptions, SelectionOptions newOptions) { 
    95101 
     102                ImmText newText; 
     103                if (newOptions.equals(oldOptions)) { 
     104                        newText = oldProcessed; 
     105                } else { 
     106                        newText = processText(source, newOptions); 
     107                } 
    96108                ImmTextInterval damagedInterval =  
    97109                        oldOptions.getSelection().unite(newOptions.getSelection()); 
    98110 
    99                 ImmText newText = processText(source, newOptions); 
    100  
    101111                TextChange change =  
    102112                        new TextReplaceChange(damagedInterval, newText.subText(damagedInterval)); 
    103113 
    
          
  • TabularUnified modules/org.sophie2.base.model.book/src/main/java/org/sophie2/base/model/book/ElementH.java

     
    55 
    66import org.sophie2.base.commons.structures.ImmTreeList; 
    77import org.sophie2.base.commons.util.ImmList; 
    8 import org.sophie2.base.commons.util.position.ImmArea; 
    98import org.sophie2.base.commons.util.position.ImmInsets; 
    10 import org.sophie2.base.commons.util.position.ImmMatrix; 
    119import org.sophie2.base.commons.util.position.ImmPoint; 
    1210import org.sophie2.base.commons.util.position.ImmRect; 
    13 import org.sophie2.base.commons.util.position.ImmSize; 
    1411import org.sophie2.base.commons.util.position.Position; 
    1512import org.sophie2.base.media.TimePos; 
    1613import org.sophie2.base.model.book.actions.RemoveSubElementAction; 
    1714import org.sophie2.base.model.book.frame.BoundMode; 
    1815import org.sophie2.base.model.book.frame.FrameR4; 
    19 import org.sophie2.base.model.book.frame.WrappingModes; 
    2016import org.sophie2.base.model.book.interfaces.CompositeElement; 
    2117import org.sophie2.base.model.book.interfaces.MemberElement; 
    2218import org.sophie2.base.model.book.interfaces.StyledElement; 
     
    6864        public static final int Y_OFFSET = 50; 
    6965 
    7066        /** 
    71          * Calculates the bound area of this element in the selected 
    72          * {@link BoundMode} for the selected {@link TimePos}. For a simple element, 
    73          * like {@link FrameR4}, will return the area of the element itself. For a 
    74          * composite element, returns the union of all the sub-elements, considering 
    75          * rotation angles. 
    76          *  
    77          * @param boundMode 
    78          *          The mode for calculating the area. 
    79          * @param elementTime 
    80          *          The current moment for which to calculate the area. Needed, 
    81          *          since the location is time-dependent. 
    82          * @param wrapMode  
    83          *            Whether or not the area is important. Used for calculating the  
    84          *            area for the different wrapping modes of frames. When the text should  
    85          *            not go around the frame, the area of the frame is not  
    86          *            important.When wrapMode is <b>false</b>, it will be checked  
    87          *            whether or not the wrap mode of the frame is  
    88          *            {@link WrappingModes#NO_WRAP}, and if so, the area will be  
    89          *            empty. The default value is <b>true</b>. 
    90          * @return  
    91          *                      The calculated {@link ImmArea}. 
    92          */ 
    93         public ImmArea getBoundArea(BoundMode boundMode, 
    94                         TimePos elementTime, Boolean wrapMode) { 
    95  
    96                 if (!elementTime.isOn()) { 
    97                         return ImmArea.EMPTY; 
    98                 } 
    99  
    100                 ImmPoint contentLocation = getLocation(BoundMode.CONTENT, 
    101                                 Position.TOP_LEFT, elementTime); 
    102  
    103                 if (ElementUtils.isContainer(this)) { 
    104                         ImmArea area = ImmArea.EMPTY; 
    105                         for (ElementH element : getChildElements(elementTime)) { 
    106  
    107                                 // TODO (r4) consider relative locations.. --kyli 
    108                                 area = area.union(element.getBoundArea(boundMode, getSubTime(  
    109                                                 getChildRef(element), elementTime), wrapMode)); 
    110                         } 
    111                         return area.transform(ImmMatrix.IDENTITY.rotate(getRotationAngle(), 
    112                                         contentLocation.getX(), contentLocation.getY())); 
    113                 } 
    114  
    115                 ImmPoint position = getLocation(boundMode, Position.TOP_LEFT, 
    116                                 elementTime); 
    117                 ImmSize size = boundMode.getSize(getWrapSize(), getPaddingInsets(), 
    118                                 getStyleHelper().getBorderInsets(), getMarginInsets()); 
    119                 ImmArea res = new ImmArea(new ImmRect(position, size)).transform( 
    120                                 ImmMatrix.IDENTITY.rotate(getRotationAngle(), 
    121                                                 contentLocation.getX(), contentLocation.getY())); 
    122                 return res; 
    123         } 
    124  
    125         /** 
    12667         * Retrieves the currently active children of this element. This means that 
    12768         * they should have {@link ActivationChannel}s with appropriate values. 
    12869         * Useful for views. 
     
    304245        } 
    305246 
    306247        /** 
     248         * Gets the location of a specific frame position, given a content location and a mode. 
     249         * Used for optimization since it re-uses the calculated content location which is 
     250         * time-dependent. 
     251         * (The content location is the location of the point TOP_LEFT in bound mode CONTENT in a specified time)   
     252         *  
     253         * @param contentLocation 
     254         *                        - The provided content location for the element. 
     255         * @param mode 
     256         *            - {@link BoundMode} in which the point will be calculated 
     257         * @param pos 
     258         *            - {@link Position} of the point in the rectangle 
     259         * @return The location of the interesting point (pos) of the mode`s 
     260         *         rectangle. 
     261         */ 
     262        public ImmPoint getLocation(ImmPoint contentLocation, BoundMode mode, 
     263                        Position pos) { 
     264                ImmRect bounds = new ImmRect(contentLocation, getWrapSize()); 
     265 
     266                ImmPoint point = pos.getPoint(mode.getRect( 
     267                                bounds, getPaddingInsets(), 
     268                                getStyleHelper().getBorderInsets(), getMarginInsets())); 
     269                return point; 
     270        } 
     271 
     272        /** 
    307273         * Gets the location of a specific frame position in specific mode. 
    308274         *  
    309275         * @param mode 
     
    320286                LocationChannel channel = get(MemberElement.KEY_LOCATION); 
    321287                ImmPoint contentLocation = channel.getValue(localTime); 
    322288 
    323                 ImmRect bounds = new ImmRect(contentLocation, getWrapSize()); 
    324  
    325                 ImmPoint point = pos.getPoint(mode.getRect(bounds, getPaddingInsets(), 
    326                                 getStyleHelper().getBorderInsets(), getMarginInsets())); 
    327                 return point; 
     289                return getLocation(contentLocation, mode, pos); 
    328290        } 
    329291 
    330292        /** 
    
          
  • TabularUnified modules/org.sophie2.extra.func.spellcheck/src/test/java/org/sophie2/extra/func/spellcheck/SpellCheckDemoTest.java

     
    327327                                String textStr = modelText.toString(); 
    328328 
    329329                                List<String> misspelled = new LinkedList<String> (); 
    330                                 SpellCheckUtility.getMisspelledWords (misspelled, null, textStr); 
     330                                //SpellCheckUtility.getMisspelledWords (misspelled, null, textStr); 
    331331 
    332332                                DefaultListModel model = (DefaultListModel) listMisspelled.getModel(); 
    333333 
    
          
  • TabularUnified modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/element/ElementView.java

     
    1010import org.sophie2.base.commons.util.ImmList; 
    1111import org.sophie2.base.commons.util.NaiveImmList; 
    1212import org.sophie2.base.commons.util.position.ImmArea; 
     13import org.sophie2.base.commons.util.position.ImmMatrix; 
     14import org.sophie2.base.commons.util.position.ImmPoint; 
     15import org.sophie2.base.commons.util.position.ImmRect; 
     16import org.sophie2.base.commons.util.position.ImmSize; 
     17import org.sophie2.base.commons.util.position.Position; 
    1318import org.sophie2.base.media.AudioChunk; 
    1419import org.sophie2.base.media.MediaComposite; 
    1520import org.sophie2.base.media.TimePos; 
    1621import org.sophie2.base.model.book.ElementH; 
     22import org.sophie2.base.model.book.ElementH.ElementUtils; 
     23import org.sophie2.base.model.book.frame.BoundMode; 
     24import org.sophie2.base.model.book.frame.FrameR4; 
     25import org.sophie2.base.model.book.frame.WrappingModes; 
    1726import org.sophie2.base.model.book.interfaces.CompositeElement; 
     27import org.sophie2.base.model.book.interfaces.MemberElement; 
    1828import org.sophie2.base.model.book.links.Link; 
    1929import org.sophie2.base.model.book.links.LinkTrigger; 
    2030import org.sophie2.base.model.book.resource.r4.ElementR4; 
    2131import org.sophie2.base.model.book.timelines.ActivationChannel; 
     32import org.sophie2.base.model.book.timelines.LocationChannel; 
    2233import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    2334import org.sophie2.base.model.resources.r4.access.ResourceAccess; 
    2435import org.sophie2.base.model.resources.r4.model.ResourceModel; 
     
    123134                        @Override 
    124135                        protected SceneElement compute() { 
    125136                                SceneElement res = new DefaultCompositeSceneElement() { 
    126                                         @SuppressWarnings("synthetic-access") 
    127137                                        @Override 
    128138                                        protected void setupElements() { 
    129139                                                List<SceneElement> subs = subElements().get(); 
     
    352362        public BaseBookView getBookView() { 
    353363                return findParentElement(BaseBookView.class); 
    354364        } 
     365         
     366        /** 
     367         * Prop used to reduce the time dependency. Used only for optimization purposes. 
     368         *  
     369         * @return 
     370         *                      The location for the current moment in time. 
     371         */ 
     372        public Prop<ImmPoint> contentLocation() { 
     373                class contentLocation extends AutoProperty<ImmPoint> { 
    355374 
     375                        @Override 
     376                        protected ImmPoint compute() { 
     377                                return  model().get().getLocation(BoundMode.CONTENT,  
     378                                                Position.TOP_LEFT, getTime()); 
     379                        } 
     380                } 
     381                return getBean().makeProp(contentLocation.class); 
     382        } 
     383         
    356384        /** 
     385         * Prop used to reduce the time dependency. Used only for optimization purposes. 
     386         *  
     387         * @return 
     388         *                      The location for the margins area in this time. 
     389         */ 
     390        public Prop<ImmPoint> marginLocation() { 
     391                class marginLocation extends AutoProperty<ImmPoint> { 
     392 
     393                        @Override 
     394                        protected ImmPoint compute() { 
     395                                return  model().get().getLocation(contentLocation().get(), BoundMode.MARGIN, 
     396                                                Position.TOP_LEFT); 
     397                        } 
     398                } 
     399                return getBean().makeProp(marginLocation.class); 
     400        } 
     401         
     402        /** 
     403         * Prop used to reduce the time setting time. Used for optimization. 
     404         *  
     405         * @return 
     406         *              The current location channel. 
     407         */ 
     408        public Prop<LocationChannel> locationChannel() { 
     409                class locationChannel extends AutoProperty<LocationChannel> { 
     410 
     411                        @Override 
     412                        protected LocationChannel compute() { 
     413                                return model().get().get(MemberElement.KEY_LOCATION); 
     414                        } 
     415                } 
     416                return getBean().makeProp(locationChannel.class); 
     417        } 
     418         
     419        /** 
    357420         * Adds all scene elements that should be displayed as children of this view's model scene 
    358421         * element. 
    359422         *  
     
    405468         */ 
    406469        public static final ImmColor INVISIBLE_COLOR = new ImmColor(0.8f, 0.8f, 1.0f, 0.8f); 
    407470 
    408         private Prop<Boolean> isOn() { 
     471        /** 
     472         * Property used to determine whether the time phase is on. 
     473         *  
     474         * @return 
     475         *              true if the time phase is on, false otherwise. 
     476         */ 
     477        public Prop<Boolean> isOn() { 
    409478                class isOn extends AutoProperty<Boolean> { 
    410479                        @Override 
    411480                        protected Boolean compute() { 
     
    766835                 */ 
    767836                public static final int RESOURCE_REF_PARAM_INDEX = 0; 
    768837        } 
     838         
     839        /** 
     840         * Calculates the bound area of this element in the selected 
     841         * {@link BoundMode} for the selected {@link TimePos}. For a simple element, 
     842         * like {@link FrameR4}, will return the area of the element itself. For a 
     843         * composite element, returns the union of all the sub-elements, considering 
     844         * rotation angles. 
     845         *  
     846         * @param boundMode 
     847         *          The mode for calculating the area. 
     848         * @param wrapMode  
     849         *            Whether or not the area is important. Used for calculating the  
     850         *            area for the different wrapping modes of frames. When the text should  
     851         *            not go around the frame, the area of the frame is not  
     852         *            important.When wrapMode is <b>false</b>, it will be checked  
     853         *            whether or not the wrap mode of the frame is  
     854         *            {@link WrappingModes#NO_WRAP}, and if so, the area will be  
     855         *            empty. The default value is <b>true</b>. 
     856         * @return  
     857         *                      The calculated {@link ImmArea}. 
     858         */ 
     859        public ImmArea getBoundArea(BoundMode boundMode, Boolean wrapMode) { 
     860                 
     861                ElementH model = model().get(); 
     862                if (!isOn().get()) { 
     863                        return ImmArea.EMPTY; 
     864                } 
    769865 
     866                ImmPoint contentLocation = contentLocation().get(); 
     867 
     868                if (ElementUtils.isContainer(this.model().get())) { 
     869                        ImmArea area = ImmArea.EMPTY; 
     870                        for (ElementView element : elementViews().get()) { 
     871                                if (element.isOn().get()) { 
     872                                        ImmArea innerArea = element.getBoundArea(boundMode, wrapMode); 
     873                                 
     874                                        area = area.union(innerArea); 
     875                                } 
     876                        } 
     877                        return area.transform(ImmMatrix.IDENTITY.rotate(model.getRotationAngle(), 
     878                                        contentLocation.getX(), contentLocation.getY())); 
     879                } 
     880                ImmPoint position; 
     881                if (BoundMode.CONTENT.equals(boundMode)) { 
     882                        position = contentLocation; 
     883                } else if (BoundMode.MARGIN.equals(boundMode)){ 
     884                        position = marginLocation().get(); 
     885                } else { 
     886                        TimePos elementTime = getTime(); 
     887                        position = model.getLocation(boundMode, Position.TOP_LEFT, 
     888                                        elementTime); 
     889                } 
     890 
     891                ImmSize size = boundMode.getSize(model.getWrapSize(), model.getPaddingInsets(), 
     892                                model.getStyleHelper().getBorderInsets(), model.getMarginInsets()); 
     893                ImmArea res = new ImmArea(new ImmRect(position, size)).transform( 
     894                                ImmMatrix.IDENTITY.rotate(model.getRotationAngle(), 
     895                                                contentLocation.getX(), contentLocation.getY())); 
     896                return res; 
     897        } 
     898 
    770899} 
     900 No newline at end of file 
    
          
  • TabularUnified modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/frame/FrameView.java

     
    2626import org.sophie2.base.model.book.actions.base.SetKeyAction; 
    2727import org.sophie2.base.model.book.frame.BoundMode; 
    2828import org.sophie2.base.model.book.frame.FrameR4; 
    29 import org.sophie2.base.model.book.interfaces.MemberElement; 
     29import org.sophie2.base.model.book.frame.WrappingModes; 
    3030import org.sophie2.base.model.book.interfaces.ResourceFrame; 
    3131import org.sophie2.base.model.book.interfaces.StyledElement; 
    3232import org.sophie2.base.model.book.links.LinkTrigger; 
    33 import org.sophie2.base.model.book.timelines.LocationChannel; 
    3433import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    3534import org.sophie2.base.model.resources.r4.access.ResourceAccess; 
    3635import org.sophie2.base.model.resources.r4.changes.AutoAction; 
     
    483482                 
    484483                return getBean().makeProp(localRectCache.class); 
    485484        } 
    486          
    487          
    488         /** 
    489          * Prop used to reduce the time dependency. Used only for optimization purposes. 
    490          *  
    491          * @return 
    492          *                      The content location for the current moment in time. 
    493          */ 
    494         private Prop<ImmPoint> contentLocation() { 
    495                 class contentLocation extends AutoProperty<ImmPoint> { 
    496485 
    497                         @Override 
    498                         protected ImmPoint compute() { 
    499                                 LocationChannel channel = model().get().get(MemberElement.KEY_LOCATION); 
    500                                  
    501                                 return channel.getValue(getTime()); 
    502                         } 
    503                 } 
    504                 return getBean().makeProp(contentLocation.class); 
    505         } 
    506          
    507486        /** 
    508487         * Gets the top-left location for the current moment in time.  
    509488         * @param mode 
     
    693672                 
    694673                return getBean().makeProp(templateKind.class); 
    695674        } 
     675         
     676         
     677        @Override 
     678        public ImmArea getBoundArea(BoundMode boundMode, Boolean wrapMode) { 
     679                if (!wrapMode) {  
     680                        if (WrappingModes.NO_WRAP.equals(model().get().get(FrameR4.KEY_WRAP))) {  
     681                                return ImmArea.EMPTY;  
     682                        }  
     683                }  
     684                return super.getBoundArea(boundMode, wrapMode); 
     685        } 
     686         
    696687} 
    
          
  • TabularUnified modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/page/ScenePageLogic.java

     
    151151                                        List<ElementView> toSelect = new ArrayList<ElementView>(); 
    152152 
    153153                                        for (ElementView view : elementViews) { 
    154                                                 ImmRect bounds = view.model().get().getBoundArea(BoundMode.OUT_BORDER,  
    155                                                                 view.getTime(), true).getBounds();  
     154                                                ImmRect bounds = view.getBoundArea(BoundMode.OUT_BORDER,  
     155                                                                true).getBounds();  
    156156                                                if (selRect.contains(bounds)) 
    157157                                                        if (pwa.getSel().canBeSelected(view)) { 
    158158                                                                toSelect.add(view); 
    
          
  • TabularUnified modules/org.sophie2.extra.func.annotations/src/main/java/org/sophie2/extra/func/annotations/view/AudioAnnotationView.java

     
    6565 
    6666                        @Override 
    6767                        protected ImmRect compute() { 
    68                                 return model().get().getBoundArea(  
    69                                                 BoundMode.CONTENT, getTime(), true).getBounds();  
     68                                return getBoundArea(BoundMode.CONTENT, true).getBounds();  
    7069                        } 
    7170                } 
    7271                return getBean().makeProp(bounds.class); 
    
          
  • TabularUnified modules/org.sophie2.base.connectivity/.settings/org.eclipse.jdt.core.prefs

     
    1 #Wed Oct 21 16:55:23 EEST 2009 
     1#Thu Aug 12 11:26:08 EEST 2010 
    22eclipse.preferences.version=1 
    33org.eclipse.jdt.core.builder.cleanOutputFolder=clean 
    44org.eclipse.jdt.core.builder.duplicateResourceTask=warning 
     
    1616org.eclipse.jdt.core.codeComplete.localSuffixes= 
    1717org.eclipse.jdt.core.codeComplete.staticFieldPrefixes= 
    1818org.eclipse.jdt.core.codeComplete.staticFieldSuffixes= 
     19org.eclipse.jdt.core.codeComplete.staticFinalFieldPrefixes= 
     20org.eclipse.jdt.core.codeComplete.staticFinalFieldSuffixes= 
    1921org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 
    2022org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.5 
    2123org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 
    
          
  • TabularUnified modules/org.sophie2.base.model.text/src/main/java/org/sophie2/base/model/text/model/ImmTextUtils.java

     
    11package org.sophie2.base.model.text.model; 
    22 
     3import java.lang.reflect.InvocationTargetException; 
     4import java.lang.reflect.Method; 
    35import java.util.HashMap; 
    46import java.util.Map; 
    57 
     
    7072        public static int advance(ImmText text, int index, int offset) { 
    7173                if (!isIndexInText(index, text)) { 
    7274                        throw new IllegalArgumentException("The input index does not " + 
    73                         "belong to the current text: " + index + " text: " + text + ":"); 
     75                                        "belong to the current text: " + index + " text: " + text + ":"); 
    7476                } 
    7577 
    7678                int newIndex = index + offset; 
     
    9698         *             New concatenate text.  
    9799         */ 
    98100        public static ImmText concat(ImmText text1, ImmText text2) { 
    99                  
     101 
    100102                return text1.concat(text2); 
    101 //              ImmText replacedText = text1.replace(new ImmTextInterval(text1.getEnd(), 
    102 //                              text1.getEnd()), text2); 
    103 //              int endText1 = text1.getEnd(); 
    104 //              for (int i = text2.getBegin(); i < text2.getEnd(); ++i) { 
    105 //                      int pos = i + endText1; 
    106 //                      replacedText = replacedText.applyStyle( 
    107 //                                      HotStyleDef.getDefault().derive(text2.unitAt(i).getStyle()), 
    108 //                                      new ImmTextInterval(pos, pos + 1)); 
    109 //              } 
    110 //              return replacedText; 
     103                //              ImmText replacedText = text1.replace(new ImmTextInterval(text1.getEnd(), 
     104                //                              text1.getEnd()), text2); 
     105                //              int endText1 = text1.getEnd(); 
     106                //              for (int i = text2.getBegin(); i < text2.getEnd(); ++i) { 
     107                //                      int pos = i + endText1; 
     108                //                      replacedText = replacedText.applyStyle( 
     109                //                                      HotStyleDef.getDefault().derive(text2.unitAt(i).getStyle()), 
     110                //                                      new ImmTextInterval(pos, pos + 1)); 
     111                //              } 
     112                //              return replacedText; 
    111113        } 
    112114 
    113115        /** 
     
    145147                                text.getStyleValue(attribute, new ImmTextInterval(beginPosition, beginPosition)))) { 
    146148                        beginPosition = advance(text, beginPosition, - 1); 
    147149                } 
    148                  
     150 
    149151                if (!(beginPosition == text.getBegin() && value.equals( 
    150152                                text.getStyleValue(attribute, new ImmTextInterval(beginPosition, beginPosition))))) { 
    151153                        beginPosition = advance(text, beginPosition, 1); 
     
    195197                return text.unitAt(position).getStyle().getValue(attribute); 
    196198        } 
    197199 
    198          
     200 
    199201        /** 
    200202         * Creates a change that modifies the source text to the result. 
    201203         *  
     
    208210         *                              change.applyTo(source).getStyledHash().equals(result.getStyledHash). 
    209211         */ 
    210212        public static TextChange getChange(ImmText source, ImmText result) { 
    211                  
     213 
    212214                // FIXME this implementation is dummy.. --kyli@2010-05-20 
    213215                return new TextReplaceChange( 
    214216                                new ImmTextInterval(source.getBegin(), source.getEnd()), result); 
    215217        } 
     218        /** 
     219         * Method for fast(faster than using the replace function of the text) replacing interval of a text with another text.  
     220         * The replacing text should be the same length as the interval. The styles of the new text are not derived -  
     221         * they are the same as using concat function. 
     222         *  
     223         * @param interval 
     224         *                              The interval to be replaced. 
     225         * @param oldText 
     226         *                              The text to be replaced. 
     227         * @param replacedText 
     228         *                              The replacing text. 
     229         * @return 
     230         *                      The new replaced text. 
     231         */ 
     232        public static ImmText fastReplaceInterval(ImmTextInterval interval, ImmText oldText, ImmText replacedText) { 
     233                if(! (oldText instanceof ImmHotText) || ! (replacedText instanceof ImmHotText)) { 
     234                        return null; 
     235                } 
     236                ImmHotText oldHotText = (ImmHotText) oldText; 
     237                ImmHotText replacedHotText = (ImmHotText) replacedText; 
     238                try { 
     239                        Method m = oldHotText.getClass().getDeclaredMethod("replaceUnits", ImmTextInterval.class, ImmHotText.class); 
     240                        m.setAccessible(true); 
     241                        try { 
     242                                return (ImmText) m.invoke(oldHotText, interval, replacedHotText); 
     243                        } catch (IllegalArgumentException e) { 
     244                                return null; 
     245                        } catch (IllegalAccessException e) { 
     246                                return null; 
     247                        } catch (InvocationTargetException e) { 
     248                                return null; 
     249                        } 
     250                } catch (SecurityException e) { 
     251                        return null; 
     252                } catch (NoSuchMethodException e) { 
     253                        return null; 
     254                } 
     255        } 
    216256} 
    
          
  • TabularUnified modules/org.sophie2.main.func.text/src/main/java/org/sophie2/main/func/text/view/HotTextLogic.java

     
    124124 
    125125                        Boolean forceSignificance = event.getEventParam( 
    126126                                        TextView.EventIds.FORCE_SIGNIFICANCE_PARAM_INDEX, Boolean.class); 
    127  
     127                         
    128128                        final Message description = event.getEventParam( 
    129129                                        TextView.EventIds.DESCRIPTION_PARAM_INDEX, Message.class); 
    130130 
    
          
  • TabularUnified modules/org.sophie2.base.model.text/src/main/java/org/sophie2/base/model/text/style/HotStyleDef.java

     
    44import java.util.Iterator; 
    55import java.util.Map; 
    66 
     7import org.sophie2.base.commons.structures.ImmTreeList; 
    78import org.sophie2.base.commons.structures.ImmTreeMap; 
    89import org.sophie2.base.commons.util.Hash; 
    910import org.sophie2.base.commons.util.Hashable; 
    1011import org.sophie2.base.commons.util.Hasher; 
    11 import org.sophie2.base.commons.util.AccessCreateCollectionUtil; 
    1212import org.sophie2.base.commons.util.ImmList; 
    1313import org.sophie2.base.commons.util.ImmMap; 
    14 import org.sophie2.base.commons.util.ImmMap.ImmEntry; 
    1514import org.sophie2.base.model.text.HotAttr; 
    1615import org.sophie2.base.model.text.elements.CommonAttr; 
    1716import org.sophie2.base.model.text.model.TextUnit; 
     
    3736        private static final Map<ImmMap<HotAttr<?>, Object>, HotStyleDef> usedStyles =  
    3837                new HashMap<ImmMap<HotAttr<?>,Object>, HotStyleDef>(); 
    3938 
    40  
     39        private Hash hashCode = null; 
     40         
    4141        private HotStyleDef(ImmMap<HotAttr<?>, Object> values) { 
    4242                // Disable direct instantiation. 
    4343                ImmMap<HotAttr<?>, Object> allValues = values; 
     
    8080         *                      The style's attributes. 
    8181         */ 
    8282        public ImmList<HotAttr<?>> getAttributeKeys() { 
    83                 ImmList<HotAttr<?>> keys = AccessCreateCollectionUtil.<HotAttr<?>>createDosImmList(); 
    84                 for (ImmEntry<HotAttr<?>, Object> entry : this.attrValues.asList()) { 
    85                         keys = keys.add(entry.getKey()); 
    86                 } 
    87                 return keys; 
     83                return ImmTreeList.create(this.attrValues.toMap().keySet()); 
    8884        } 
    8985 
    9086 
     
    242238        } 
    243239 
    244240        public Hash getHash() { 
    245  
    246                 Hasher hasher = new Hasher(); 
    247                 // XXX values may not be hash-able..  
    248                 // think of a smarter realization of HotStyleDef!! --kyli 
    249                 Iterator<ImmMap.ImmEntry<HotAttr<?>, Object>> it = this.attrValues.iterator(); 
    250                 while (it.hasNext()) { 
    251                         ImmMap.ImmEntry<HotAttr<?>, Object> entry = it.next(); 
    252                         hasher.addHashed(entry.getKey().getHash()); 
    253                         hasher.addObject(entry.getValue()); 
     241                if (this.hashCode == null) { 
     242                        Hasher hasher = new Hasher(); 
     243                        // XXX values may not be hash-able..  
     244                        // think of a smarter realization of HotStyleDef!! --kyli 
     245                        Iterator<ImmMap.ImmEntry<HotAttr<?>, Object>> it = this.attrValues.iterator(); 
     246                        while (it.hasNext()) { 
     247                                ImmMap.ImmEntry<HotAttr<?>, Object> entry = it.next(); 
     248                                hasher.addHashed(entry.getKey().getHash()); 
     249                                hasher.addObject(entry.getValue()); 
     250                        } 
     251                        this.hashCode = hasher.toHash(); 
    254252                } 
    255                 return hasher.toHash(); 
     253                return this.hashCode; 
    256254        } 
    257255} 
     256 No newline at end of file