Ticket #2436: 2436-frame-template-editing-im.patch

File 2436-frame-template-editing-im.patch, 86.3 KB (added by deni, 15 years ago)
  • modules/org.sophie2.main.app.menus/src/main/java/org/sophie2/main/app/menus/file/SaveBookItem.java

    ### Eclipse Workspace Patch 1.0
    #P sophie
     
    99import org.sophie2.base.skins.SkinElementId; 
    1010import org.sophie2.base.visual.skins.ElementPartCreator; 
    1111import org.sophie2.base.visual.skins.SkinPartDef; 
    12 import org.sophie2.main.app.commons.book.BookView; 
     12import org.sophie2.main.app.commons.book.BaseBookView; 
     13import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    1314import org.sophie2.main.app.commons.util.AppViewUtil; 
    1415import org.sophie2.main.app.menus.AppMenuItem; 
    1516 
     
    3233 
    3334        @Override 
    3435        protected boolean computeEnabled() { 
    35                 BookView bv = AppViewUtil.getCurrentBookView(this);  
     36                BaseBookView bv = AppViewUtil.getCurrentBaseBookView(this);  
    3637 
    3738                return  bv != null && !bv.getViewOptions().isPreviewMode()   
    38                                 && bv.getViewOptions().isShowControls()  
     39                                && bv.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0  
    3940                                && !(bv.getAccess() instanceof DelegatingServerAccess);  
    4041        } 
    4142} 
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/frame/rotate/FrameRotateHaloMenu.java

     
    125125        protected ImmPoint computeLocation() { 
    126126                         
    127127                FrameView frameView = AppHaloUtil.getSingleSelected(this, FrameView.class); 
    128                 if (frameView == null) { 
     128                if (frameView == null || frameView.getPwa() == null) { 
    129129                        return ImmPoint.ZERO; 
    130130                } 
    131131 
     
    137137        } 
    138138 
    139139        @Override 
    140         protected boolean computeVisible() {             
     140        protected boolean computeVisible() { 
     141                PageWorkArea pwa = AppHaloUtil.getWorkArea(this); 
     142                if (pwa == null || pwa.getRootPageView() == null) { 
     143                        return false; 
     144                } 
     145                 
    141146                FrameView fv = AppHaloUtil.getSingleFrameView(this); 
    142147                if ( fv == null ) { 
    143148                        return false; 
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/page/resize/PageResizeHaloMenu.java

     
    99import org.sophie2.base.visual.skins.RelatedChildren; 
    1010import org.sophie2.base.visual.skins.VisualElementDef; 
    1111import org.sophie2.main.app.commons.app.AppMainWindow; 
    12 import org.sophie2.main.app.commons.book.BookView; 
     12import org.sophie2.main.app.commons.book.BaseBookView; 
    1313import org.sophie2.main.app.commons.book.BookViewOptions; 
     14import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    1415import org.sophie2.main.app.commons.page.PageWorkArea; 
    1516import org.sophie2.main.app.commons.util.AppViewUtil; 
    1617import org.sophie2.main.app.halos.common.AppHaloUtil; 
     
    4546        @Override 
    4647        protected boolean computeVisible() { 
    4748 
    48                 BookView bookView = AppViewUtil.getCurrentBookView(this); 
     49                BaseBookView bookView = AppViewUtil.getCurrentBaseBookView(this); 
    4950                if (bookView == null) { 
    5051                        return false; 
    5152                } 
    5253                 
    5354                BookViewOptions options = bookView.getViewOptions(); 
    54                 if (options.isPreviewMode() || !options.isShowControls()) { 
    55                         return false; 
    56                 } 
    57                 return true; 
     55                return !options.isPreviewMode()  
     56                        && options.getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0; 
    5857        } 
    5958} 
  • modules/org.sophie2.base.model.resources.r4/src/main/java/org/sophie2/base/model/resources/r4/resources/ResourceR4.java

     
    136136         */ 
    137137        public static final Key<URI> KEY_IMPORT_ORIGIN = new SimpleKey<URI>( 
    138138                        "import-origin", URI.class, ResourceRefR4.NONE_REF.toUri()); 
     139         
     140        /** 
     141         * A key holding whether the resource is transient, i.e. should not be persisted. 
     142         */ 
     143        public static final Key<Boolean> KEY_TRANSIENT = new SimpleKey<Boolean>( 
     144                        "transient", Boolean.class, Boolean.FALSE); 
    139145 
     146         
    140147        // TODO Consider adding meta keys for local and remote targets if necessary. 
    141148        /** 
    142149         * Holds a reference to the target of this resource. 
  • modules/org.sophie2.main.func.resources/src/main/java/org/sophie2/main/func/resources/logic/ResourceDeleteLogic.java

     
    44import org.sophie2.base.layout.model.ListPaletteItem; 
    55import org.sophie2.base.model.book.BookH; 
    66import org.sophie2.base.model.book.ElementH; 
     7import org.sophie2.base.model.book.actions.RemoveResourceAction; 
    78import org.sophie2.base.model.book.resource.r4.BookR4; 
    89import org.sophie2.base.model.resources.r4.ResourceRefList; 
    910import org.sophie2.base.model.resources.r4.ResourceRefR4; 
     
    1617import org.sophie2.core.mvc.LogicR3; 
    1718import org.sophie2.core.mvc.OperationDef; 
    1819import org.sophie2.core.mvc.events.EventR3; 
     20import org.sophie2.main.app.commons.book.BaseBookDocView; 
    1921import org.sophie2.main.app.commons.book.BaseBookView; 
    20 import org.sophie2.main.app.commons.book.BaseBookDocView; 
    2122import org.sophie2.main.app.commons.book.BookView; 
    2223import org.sophie2.main.app.commons.element.ElementView; 
    2324import org.sophie2.main.app.commons.page.RootPageView; 
    2425import org.sophie2.main.app.commons.util.AppViewUtil; 
    2526import org.sophie2.main.dialogs.input.ConfirmDialogInput; 
    2627import org.sophie2.main.dialogs.input.DialogUtils; 
    27 import org.sophie2.main.func.resources.actions.RemoveResourceAction; 
    2828import org.sophie2.main.func.resources.actions.RemoveTemplateAction; 
    2929import org.sophie2.main.func.resources.view.ResourceDetailsPalette; 
    3030import org.sophie2.main.func.resources.view.ResourceDetailsPalette.DeleteResourceButton; 
  • modules/org.sophie2.main.func.templates/src/main/java/org/sophie2/main/func/templates/book/SaveBookAsTemplateItem.java

     
    55import org.sophie2.base.skins.SkinElementId; 
    66import org.sophie2.base.visual.skins.ElementPartCreator; 
    77import org.sophie2.base.visual.skins.SkinPartDef; 
     8import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    89import org.sophie2.main.app.menus.AppMenuItem; 
    910 
    1011/** 
     
    2526 
    2627 
    2728        @Override 
    28         protected boolean computeEnabled() { 
     29        protected boolean computeEnabled() {             
    2930                return getCurrentBookDocView() != null  
    3031                        && !getCurrentBookDocView().bookView().get().getViewOptions().isPreviewMode() 
    31                         && getCurrentBookDocView().bookView().get().getViewOptions().isShowControls();  
     32                        && getCurrentBookDocView().bookView().get().getViewOptions().getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0;  
    3233        } 
    3334} 
  • modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/page/PageWorkArea.java

     
    150150                                                        sub.add(getPageNotAvailableElement()); 
    151151                                                } 
    152152                                                 
    153 //                                              if (getRootPageView()!= null) { 
    154 //                                                      sub.add(getRootPageView().sceneElement().get()); 
    155 //                                              } else { 
    156 //                                                      System.out.println("No root page"); 
    157 //                                              } 
    158153                                                sub.add(selectionBoundsElement().get()); 
    159154                                                sub.add(selectionDragElement().get()); 
    160155                                                if (!bookView().get().getViewOptions().isPreviewMode()) { 
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/shared/MainHaloMenu.java

     
    8888                // we are not in preview mode. 
    8989                if (pwa.getSel().getSelected().size() == 0) { 
    9090                        // nothing is selected 
    91                         if (!viewOptions.isShowControls()) { 
     91                        if (!viewOptions.isShowViewControls()) { 
    9292                                // show controls view option is off. 
    9393                                return false; 
    9494                        } 
  • modules/org.sophie2.main.func.templates/src/main/java/org/sophie2/main/func/templates/page/PageTemplatesPalette.java

     
    2727import org.sophie2.core.prolib.interfaces.Prop; 
    2828import org.sophie2.main.app.commons.app.AppMainWindow; 
    2929import org.sophie2.main.app.commons.book.BaseBookDocView; 
     30import org.sophie2.main.app.commons.book.BookViewOptions; 
    3031import org.sophie2.main.app.commons.book.SinglePageBookDocView; 
     32import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    3133import org.sophie2.main.app.commons.util.AppViewUtil; 
    3234 
    3335/** 
     
    223225 
    224226                                SinglePageBookDocView window =  
    225227                                        AppViewUtil.getView(mainWindow, newAccess, SinglePageBookDocView.class); 
     228                                window.bookView().get().setViewOptions( 
     229                                                new BookViewOptions(1.0f, false, true, false, true, BookEditLevel.PAGE)); 
    226230                                window.initPageRef(bookToTemplateRef); 
     231                                window.initDeletePageOnClose(false); 
    227232                                mainWindow.documents().add(window); 
    228233                                mainWindow.currentDocument().set(window); 
    229234 
  • modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/app/DocumentsLogic.java

     
    22 
    33import org.sophie2.base.dialogs.DialogManager; 
    44import org.sophie2.base.layout.impl.DefaultDocView; 
     5import org.sophie2.base.model.book.actions.RemoveResourceAction; 
    56import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    67import org.sophie2.base.model.resources.r4.access.ResourceAccess; 
     8import org.sophie2.base.model.resources.r4.changes.AutoAction; 
     9import org.sophie2.base.skins.Message; 
    710import org.sophie2.core.logging.SophieLog; 
    811import org.sophie2.core.modularity.SortKey; 
    912import org.sophie2.core.mvc.EventFilterBuilder; 
     
    1215import org.sophie2.core.mvc.OperationDef; 
    1316import org.sophie2.core.mvc.events.EventR3; 
    1417import org.sophie2.main.app.commons.book.BookDocView; 
     18import org.sophie2.main.app.commons.book.SinglePageBookDocView; 
    1519import org.sophie2.main.app.commons.util.AppViewUtil; 
    1620import org.sophie2.main.app.commons.util.SaveDocUtil; 
    1721import org.sophie2.main.dialogs.input.ConfirmDialogInput; 
     
    6266                        return true; 
    6367                } 
    6468        }, 
     69         
     70        /** 
     71         * If necessary, deletes the temporary page shown by a {@link SinglePageBookDocView} 
     72         * before closing it. 
     73         */ 
     74        @SortKey("ooo-delete-page-on-document-close") 
     75        ON_CLOSE_SINGLE_PAGE_BOOK_DOC_VIEW { 
    6576 
     77                public void defineFilter(EventFilterBuilder filter) { 
     78                        filter.setSourceClass(SinglePageBookDocView.class); 
     79                        filter.setEventId(DefaultDocView.EventIds.CLOSE); 
     80                } 
     81 
     82                public boolean handle(EventR3 event) { 
     83                         
     84                        SinglePageBookDocView window = event.getSource(SinglePageBookDocView.class); 
     85                        if (window.deletePageOnClose().get()) {                          
     86                                AutoAction action = new RemoveResourceAction(Message.create("Delete temp page"), 
     87                                                true, window.getPageRef());                              
     88                                action.register(window.model().get().getAccess()); 
     89                        } 
     90 
     91                        return false; 
     92                }                
     93        }, 
     94 
    6695        /** 
    6796         * Handles a user request to close the document window. Asks for 
    6897         * confirmation before closing. 
  • modules/org.sophie2.main.func.resources/src/main/java/org/sophie2/main/func/resources/actions/RemoveResourceAction.java

     
    1 package org.sophie2.main.func.resources.actions; 
    2  
    3 import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    4 import org.sophie2.base.model.resources.r4.changes.AutoAction; 
    5 import org.sophie2.base.skins.Message; 
    6  
    7 /** 
    8  * {@link AutoAction} for deleting a resource. 
    9  *  
    10  * @author diana 
    11  */ 
    12 public class RemoveResourceAction extends AutoAction { 
    13          
    14         private final ResourceRefR4 resourceRef; 
    15  
    16         /** 
    17          * Creates the action with the reference to the resource to delete. 
    18          *  
    19          * @param description  
    20          *                      Description of the action.  
    21          * @param significant  
    22          *                      Significance of the action.  
    23          * @param resourceRef 
    24          *                      {@link ResourceRefR4} pointing to the resource to delete. 
    25          */ 
    26         public RemoveResourceAction(Message description, boolean significant, 
    27                         ResourceRefR4 resourceRef) { 
    28                 super(description, significant); 
    29                  
    30                 this.resourceRef = resourceRef; 
    31         } 
    32  
    33         @Override 
    34         public void performAuto() { 
    35                 getChanger().removeResource(this.resourceRef); 
    36         } 
    37 } 
  • modules/org.sophie2.extra.comment/src/main/java/org/sophie2/extra/comment/actions/SetStreamCommentsAction.java

     
     1package org.sophie2.extra.comment.actions; 
     2 
     3import org.sophie2.base.commons.structures.ImmTreeList; 
     4import org.sophie2.base.model.resources.r4.changes.AutoAction; 
     5import org.sophie2.base.skins.Message; 
     6import org.sophie2.extra.comment.model.Comment; 
     7import org.sophie2.extra.comment.model.CommentStream; 
     8 
     9/** 
     10 * An {@link AutoAction} that sets the comments in a {@link CommentStream}. 
     11 *  
     12 * @author kyli 
     13 */ 
     14public final class SetStreamCommentsAction extends AutoAction { 
     15 
     16        private final ImmTreeList<Comment> newComments; 
     17 
     18        /** 
     19         * Creates a new <code>SetStreamCommentsAction</code>. 
     20         *  
     21         * @param description 
     22         *              Description of the action. 
     23         * @param significant 
     24         *              Significance of the action. 
     25         * @param newComments 
     26         *              The new comments that should be located in the stream. 
     27         */ 
     28        public SetStreamCommentsAction(Message description, boolean significant, 
     29                        ImmTreeList<Comment> newComments) { 
     30                super(description, significant); 
     31                this.newComments = newComments; 
     32        } 
     33 
     34        @Override 
     35        public void performAuto() { 
     36                getChanger().setRaw(CommentStream.KEY_COMMENTS, this.newComments); 
     37        } 
     38} 
     39 No newline at end of file 
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/frame/FrameRemoveHaloButton.java

     
    99import org.sophie2.base.visual.skins.ElementPartCreator; 
    1010import org.sophie2.base.visual.skins.SkinPartDef; 
    1111import org.sophie2.base.visual.skins.VisualElementDef; 
     12import org.sophie2.main.app.commons.book.BaseBookView; 
     13import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
     14import org.sophie2.main.app.commons.util.AppViewUtil; 
    1215import org.sophie2.main.app.halos.common.AppHaloUtil; 
    1316import org.sophie2.main.app.halos.shared.MainHaloMenu; 
    1417 
     
    3639 
    3740        @Override 
    3841        protected boolean computeVisible() { 
    39                 return AppHaloUtil.getSingleFrameView(this) != null; 
     42                if (AppHaloUtil.getSingleFrameView(this) == null) { 
     43                        return false; 
     44                } 
     45                 
     46                BaseBookView bookView = AppViewUtil.getCurrentBaseBookView(this); 
     47                return bookView != null 
     48                        && bookView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.PAGE) >= 0; 
    4049        } 
    4150 
    4251        @Override 
  • modules/org.sophie2.main.func.templates/src/main/java/org/sophie2/main/func/templates/actions/AddTransientPageAction.java

     
     1package org.sophie2.main.func.templates.actions; 
     2 
     3import org.sophie2.base.commons.util.ImmList; 
     4import org.sophie2.base.model.book.interfaces.CompositeElement; 
     5import org.sophie2.base.model.book.resource.r4.PageR4; 
     6import org.sophie2.base.model.book.timelines.ActivationChannel; 
     7import org.sophie2.base.model.resources.r4.ResourceRefR4; 
     8import org.sophie2.base.model.resources.r4.changes.AutoAction; 
     9import org.sophie2.base.model.resources.r4.changes.ResourceChanger; 
     10import org.sophie2.base.model.resources.r4.resources.ResourceR4; 
     11import org.sophie2.base.skins.Message; 
     12 
     13/** 
     14 * An {@link AutoAction} that adds a new transient page to the book. 
     15 * It can be used to show a frame template. 
     16 *  
     17 * @author deni 
     18 */ 
     19public final class AddTransientPageAction extends AutoAction { 
     20         
     21        private final String pageTitle; 
     22        private final ResourceRefR4 pageRef; 
     23        private final ImmList<ActivationChannel> subelements; 
     24 
     25        /** 
     26         * Creates a new <code>AddTransientPageAction</code>. 
     27         *  
     28         * @param description 
     29         *              The description of the new <code>AutoAction</code>. 
     30         * @param significant 
     31         *              The significance of the new <code>AutoAction</code>. 
     32         * @param pageTitle 
     33         *              Title of the page that will be created. 
     34         * @param pageRef 
     35         *              A child reference to the page that will be created. 
     36         * @param subelements 
     37         *              The sub-elements of the page that will be created. 
     38         */ 
     39        public AddTransientPageAction(Message description, boolean significant, 
     40                        String pageTitle, ResourceRefR4 pageRef, 
     41                        ImmList<ActivationChannel> subelements) { 
     42                super(description, significant); 
     43                this.pageTitle = pageTitle; 
     44                this.pageRef = pageRef; 
     45                this.subelements = subelements; 
     46        } 
     47 
     48        @Override 
     49        public void performAuto() { 
     50                ResourceChanger bookChanger = getChanger();                                              
     51                bookChanger.makeResource(this.pageRef); 
     52                 
     53                ResourceChanger pageChanger = bookChanger.getSub(this.pageRef); 
     54                pageChanger.setRaw(ResourceR4.KEY_TRANSIENT, true); 
     55                pageChanger.setRaw(ResourceR4.KEY_KIND, PageR4.KIND); 
     56                pageChanger.setRaw(ResourceR4.KEY_TITLE, this.pageTitle); 
     57                pageChanger.setRaw(CompositeElement.KEY_SUB_ELEMENTS, this.subelements); 
     58        } 
     59} 
     60 No newline at end of file 
  • modules/org.sophie2.main.func.resources/src/main/java/org/sophie2/main/func/resources/view/ResourcesPalette.java

     
    454454                                //This is needed to avoid accesses opened through redirects 
    455455                                if (resourcAccess.getRef().equals(resource.getRef().sub(ref))) { 
    456456                                        ResourceH helper = ResourceH.getHelper(resourcAccess, ResourceH.class); 
    457                                         res.addAll(getDeepChildren(helper)); 
     457                                        if (!helper.isTransient()) { 
     458                                                res.addAll(getDeepChildren(helper)); 
     459                                        } 
    458460                                } 
    459461                        } 
    460462                } 
     
    472474                                //This is needed to avoid accesses opened through redirects 
    473475                                if (resourceAccess.getRef().equals(resource.getRef().sub(ref))) { 
    474476                                        ResourceH helper = ResourceH.getHelper(resourceAccess, ResourceH.class); 
    475                                         if (!(helper instanceof ElementH)) { 
     477                                        if (!(helper instanceof ElementH) && !helper.isTransient()) { 
    476478                                                res.add(helper); 
    477479                                        } 
    478480                                } 
  • modules/org.sophie2.main.func.templates/src/main/java/org/sophie2/main/func/templates/MainFuncTemplatesModule.java

     
    6767                SimpleOperation.fillExtensions(res, CompositeTemplateLogic.class); 
    6868                 
    6969                SimpleOperation.fillExtensions(res, PageTemplatesPalette.PaletteLogic.class); 
     70                SimpleOperation.fillExtensions(res, FrameTemplatesPalette.PaletteLogic.class); 
    7071                 
    7172                res.add(new SimpleSophieExtension<Dialog>(Dialog.class, 
    7273                                new ApplyPageTemplateDialog())); 
  • modules/org.sophie2.main.app.menus/src/main/java/org/sophie2/main/app/menus/file/SaveBookAsItem.java

     
    99import org.sophie2.base.skins.SkinElementId; 
    1010import org.sophie2.base.visual.skins.ElementPartCreator; 
    1111import org.sophie2.base.visual.skins.SkinPartDef; 
    12 import org.sophie2.main.app.commons.book.BookView; 
     12import org.sophie2.main.app.commons.book.BaseBookView; 
     13import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    1314import org.sophie2.main.app.commons.util.AppViewUtil; 
    1415import org.sophie2.main.app.menus.AppMenuItem; 
    1516 
     
    3334 
    3435        @Override 
    3536        protected boolean computeEnabled() { 
    36                 BookView bookView = AppViewUtil.getCurrentBookView(this); 
     37                BaseBookView bookView = AppViewUtil.getCurrentBaseBookView(this); 
    3738                return bookView != null && !bookView.getViewOptions().isPreviewMode() 
    38                         && bookView.getViewOptions().isShowControls(); 
     39                        && bookView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0; 
    3940        } 
    4041} 
  • modules/org.sophie2.main.func.links/src/main/java/org/sophie2/main/func/links/ElementLinksHaloButton.java

     
    11package org.sophie2.main.func.links; 
    22 
    3 import java.util.List; 
    4  
    53import org.sophie2.base.commons.skin.IconId; 
    64import org.sophie2.base.commons.skin.IconsSet; 
    75import org.sophie2.base.commons.util.ImageUtil; 
     
    119import org.sophie2.base.visual.skins.RelatedChildren; 
    1210import org.sophie2.base.visual.skins.SkinPartDef; 
    1311import org.sophie2.base.visual.skins.VisualElementDef; 
    14 import org.sophie2.main.app.commons.element.ElementView; 
     12import org.sophie2.main.app.commons.book.BookViewOptions; 
     13import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    1514import org.sophie2.main.app.commons.page.PageWorkArea; 
    1615import org.sophie2.main.app.halos.common.AppHaloUtil; 
    1716import org.sophie2.main.app.halos.shared.MainHaloMenu; 
     
    4241 
    4342        @Override 
    4443        protected boolean computeVisible() { 
    45                 PageWorkArea pwa = AppHaloUtil.getWorkArea(this); 
     44                if (AppHaloUtil.getSingleFrameView(this) != null) { 
     45                        return true; 
     46                } 
    4647                 
    47                 if (pwa == null) { 
     48                PageWorkArea pwa = AppHaloUtil.getWorkArea(this);                
     49                if (pwa == null || pwa.getRootPageView() == null || pwa.getSel().getSelected().size() != 0) { 
    4850                        return false; 
    4951                } 
    50                                  
    51                 List<ElementView> selected = pwa.getSel().getSelected(); 
    52                 return ((AppHaloUtil.getSingleFrameView(this) != null) 
    53                                         || selected.size() == 0); 
     52                 
     53                BookViewOptions viewOptions = pwa.bookView().get().getViewOptions(); 
     54                return viewOptions.getBookEditLevel().compareTo(BookEditLevel.PAGE) >= 0;        
    5455        } 
    5556 
    5657        @Override 
  • modules/org.sophie2.main.app.menus/src/main/java/org/sophie2/main/app/menus/file/BookPropertiesItem.java

     
    55import org.sophie2.base.skins.SkinElementId; 
    66import org.sophie2.base.visual.skins.ElementPartCreator; 
    77import org.sophie2.base.visual.skins.SkinPartDef; 
    8 import org.sophie2.main.app.commons.book.BookView; 
     8import org.sophie2.main.app.commons.book.BaseBookView; 
     9import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    910import org.sophie2.main.app.commons.util.AppViewUtil; 
    1011import org.sophie2.main.app.menus.AppMenuItem; 
    1112 
     
    2829         
    2930        @Override 
    3031        protected boolean computeEnabled() { 
    31                 BookView bookView = AppViewUtil.getCurrentBookView(this); 
     32                BaseBookView bookView = AppViewUtil.getCurrentBaseBookView(this); 
    3233                return bookView != null && !bookView.getViewOptions().isPreviewMode() 
    33                         && bookView.getViewOptions().isShowControls(); 
     34                        && bookView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0; 
    3435        } 
    3536} 
  • modules/org.sophie2.main.app.layout/src/main/java/org/sophie2/main/app/layout/left/pages/PagePreviewPalette.java

     
    4646import org.sophie2.main.app.commons.book.BaseBookDocView; 
    4747import org.sophie2.main.app.commons.book.BookDocView; 
    4848import org.sophie2.main.app.commons.book.BookView; 
     49import org.sophie2.main.app.commons.book.BookViewOptions; 
     50import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    4951import org.sophie2.main.app.commons.element.ElementView; 
    5052import org.sophie2.main.app.commons.page.RootPageView; 
    5153import org.sophie2.main.app.commons.util.AppViewUtil; 
     
    590592        static boolean shouldShowButtons(VisualElement button) { 
    591593                 
    592594                BaseBookDocView docView = AppViewUtil.getCurrentBookDocView(button); 
     595                if (docView == null || docView.bookView().get() == null) { 
     596                        return false; 
     597                } 
     598                BookViewOptions viewOptions = docView.bookView().get().getViewOptions(); 
    593599                 
    594                 return (docView != null   
    595                                 && !docView.bookView().get().getViewOptions().isPreviewMode()  
    596                                 && docView.bookView().get().getViewOptions().isShowControls());  
     600                return !viewOptions.isPreviewMode()  
     601                                && viewOptions.getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0;  
    597602        } 
    598603         
    599604        /** 
  • modules/org.sophie2.extra.comment/src/test/java/org/sophie2/extra/comment/logic/CommentLogicTest.java

     
    4747import org.sophie2.main.app.commons.book.BookDocView; 
    4848import org.sophie2.main.app.commons.book.BookView; 
    4949import org.sophie2.main.app.commons.book.BookViewOptions; 
     50import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    5051import org.sophie2.main.app.commons.book.panels.PreviewModePanel; 
    5152import org.sophie2.main.app.commons.testing.AppTestBase; 
    5253import org.sophie2.main.app.menus.MainAppMenusModule; 
     
    6768 
    6869                ResourceAccess bookAccess = makeBookAccess(); 
    6970                BookDocView window = new BookDocView(bookAccess, new BookViewOptions(1, true, false, false, 
    70                                 true)); 
     71                                true, BookEditLevel.BOOK)); 
    7172                getAppMainWindow().documents().add(window); 
    7273                getAppMainWindow().currentDocument().set(window); 
    7374        } 
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/frame/RightSideHaloMenu.java

     
    44import org.sophie2.base.visual.skins.RelatedChildren; 
    55import org.sophie2.base.visual.skins.VisualElementDef; 
    66import org.sophie2.main.app.commons.app.AppMainWindow; 
     7import org.sophie2.main.app.commons.book.BookViewOptions; 
     8import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    79import org.sophie2.main.app.commons.page.PageWorkArea; 
    810import org.sophie2.main.app.halos.common.AppHaloUtil; 
    911import org.sophie2.main.app.halos.shared.SelectionHaloMenu; 
     
    2527 
    2628        @Override 
    2729        protected boolean computeVisible() { 
     30                if (AppHaloUtil.getSingleFrameView(this) == null) { 
     31                        return false; 
     32                } 
     33                 
    2834                PageWorkArea pwa = AppHaloUtil.getWorkArea(this); 
    29  
    30                 if (pwa == null 
    31                                 || pwa.bookView().get() == null 
    32                                 || pwa.bookView().get().getViewOptions().isPreviewMode() 
    33                                 || (pwa.getSel().getSelected().size() == 0 && !pwa.bookView().get() 
    34                                                 .getViewOptions().isShowControls())) { 
     35                if (pwa == null || pwa.bookView().get() == null) { 
    3536                        return false; 
    36                 } 
    37  
    38                 return true; 
     37                }                
     38                BookViewOptions viewOptions = pwa.bookView().get().getViewOptions(); 
     39                return !viewOptions.isPreviewMode() 
     40                        && viewOptions.getBookEditLevel().compareTo(BookEditLevel.PAGE) >= 0; 
    3941        } 
    4042 
    4143} 
  • modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/book/BookViewOptions.java

     
    1212 * </ul> 
    1313 */ 
    1414@Immutable 
    15 public class BookViewOptions { 
     15public class BookViewOptions {   
    1616         
    17          
    1817        private final float zoom; 
    1918        private final boolean previewMode; 
    2019        private final boolean outlineFrames; 
    2120        private final boolean outlineConnections; 
    22         private final boolean showControls; 
     21        private final boolean showViewControls;  
     22        private final BookEditLevel bookEditLevel; 
    2323         
    2424        /** 
    2525         * The default book view options that should be used in reader mode. 
    2626         */ 
    2727        public static final BookViewOptions DEFAULT_READER =  
    28                 new BookViewOptions(1.0f, true, false, false, true); 
     28                new BookViewOptions(1.0f, true, false, false, true, BookEditLevel.BOOK); 
    2929         
    3030        /** 
    3131         * The default book view options that should be used in author mode. 
    3232         */ 
    3333        public static final BookViewOptions DEFAULT_AUTHOR =  
    34                 new BookViewOptions(1.0f, false, true, false, true); 
     34                new BookViewOptions(1.0f, false, true, false, true, BookEditLevel.BOOK); 
    3535         
    3636        /** 
    3737         * The default book view options that should be used for the desktop book. 
    3838         */ 
    3939        public static final BookViewOptions DEFAULT_DESKTOP =  
    40                 new BookViewOptions(1.0f, false, true, false, false); 
    41  
     40                new BookViewOptions(1.0f, false, true, false, false, BookEditLevel.PAGE); 
     41         
    4242        /** 
    4343         * Creates a new <code>BookViewOptions</code> object by the given 
    4444         * parameters. 
     
    5353         *              Whether the connections between frames should be outlined.  
    5454         * @param showControls 
    5555         *              Whether book controls should be shown.  
     56         * @param bookEditLevel 
     57         *              The book edit level.  
    5658         */              
    5759        public BookViewOptions(float zoom, boolean previewMode, boolean outlineFrames, 
    58                         boolean outlineConnections, boolean showControls) { 
     60                        boolean outlineConnections, boolean showControls, BookEditLevel bookEditLevel) { 
    5961                super(); 
    6062                this.zoom = zoom; 
    6163                this.previewMode = previewMode; 
    6264                this.outlineFrames = outlineFrames; 
    6365                this.outlineConnections = outlineConnections; 
    64                 this.showControls = showControls; 
     66                this.showViewControls = showControls; 
     67                this.bookEditLevel = bookEditLevel; 
    6568        } 
    66  
     69         
    6770        /** 
    6871         * Gets the zoom level. 
    6972         *  
     
    107110         
    108111         
    109112        /** 
    110          * Retrieves whether the controls of the corresponding {@link BookView} 
    111          * are visible. 
     113         * Retrieves whether the view controls of the corresponding {@link BookView} 
     114         * are visible. Currently they are in the {@link BookPanel}. 
    112115         *  
    113116         * @return 
    114117         *                      Whether the controls of the view are shown. 
    115118         */ 
    116         public boolean isShowControls() { 
    117                 return this.showControls; 
     119        public boolean isShowViewControls() { 
     120                return this.showViewControls; 
    118121        } 
     122         
     123        /** 
     124         * Retrieves the book edit level. 
     125         *  
     126         * @return 
     127         *                      The book edit level. 
     128         */ 
     129        public BookEditLevel getBookEditLevel() { 
     130                return this.bookEditLevel; 
     131        } 
    119132 
    120133        /** 
    121134         * Returns a <code>BookViewOptions</code> object which has the same 
     
    134147                        return this; 
    135148                } 
    136149                return new BookViewOptions(newZoom, this.previewMode, this.outlineFrames, 
    137                                 this.outlineConnections, this.showControls); 
     150                                this.outlineConnections, this.showViewControls, this.bookEditLevel); 
    138151        } 
    139152 
    140153        /** 
     
    154167                        return this; 
    155168                } 
    156169                return new BookViewOptions(this.zoom, this.previewMode, outlineFrames, 
    157                                 this.outlineConnections, this.showControls); 
     170                                this.outlineConnections, this.showViewControls, this.bookEditLevel); 
    158171        } 
    159172 
    160173        /** 
     
    175188                        return this; 
    176189                } 
    177190                return new BookViewOptions(this.zoom, this.previewMode, this.outlineFrames, 
    178                                 outlineConnections, this.showControls); 
     191                                outlineConnections, this.showViewControls, this.bookEditLevel); 
    179192        } 
    180193         
    181194        /** 
     
    188201         *                      The modified options. 
    189202         */ 
    190203        public BookViewOptions modifyShowControls(boolean controlsShown) { 
    191                 if (this.showControls == controlsShown) { 
     204                if (this.showViewControls == controlsShown) { 
    192205                        return this; 
    193206                }  
    194                 return new BookViewOptions(this.zoom, this.previewMode, 
    195                                         this.outlineFrames, this.outlineConnections, controlsShown); 
     207                return new BookViewOptions(this.zoom, this.previewMode, this.outlineFrames, 
     208                                this.outlineConnections, controlsShown, this.bookEditLevel); 
    196209                 
    197210        } 
     211         
     212        /** 
     213         * Creates new <code>BookViewOptions</code> copy of this, but 
     214         * with <var>bookEditLevel</var> as the passed ones. 
     215         *  
     216         * @param bookEditLevel 
     217         *                      The value of <var>bookEditLevel</var> of the new options.  
     218         * @return 
     219         *                      The modified options. 
     220         */ 
     221        @SuppressWarnings("hiding") 
     222        public BookViewOptions modifyBookEditLevel(BookEditLevel bookEditLevel) { 
     223                if (this.bookEditLevel == bookEditLevel) { 
     224                        return this; 
     225                }  
     226                return new BookViewOptions(this.zoom, this.previewMode, this.outlineFrames, 
     227                                this.outlineConnections, this.showViewControls, bookEditLevel); 
     228                 
     229        } 
    198230 
    199231        @Override 
    200232        public int hashCode() { 
     
    203235                result = prime * result + (this.outlineConnections ? 1231 : 1237); 
    204236                result = prime * result + (this.outlineFrames ? 1231 : 1237); 
    205237                result = prime * result + (this.previewMode ? 1231 : 1237); 
    206                 result = prime * result + (this.showControls ? 1231 : 1237); 
     238                result = prime * result + (this.showViewControls ? 1231 : 1237); 
    207239                result = prime * result + Float.floatToIntBits(this.zoom); 
     240                result = prime * result + this.bookEditLevel.hashCode(); 
    208241                return result; 
    209242        } 
    210  
    211         @Override 
    212         public boolean equals(Object obj) { 
    213                 if (this == obj) { 
    214                         return true; 
    215                 } 
    216                 if (obj == null) { 
    217                         return false; 
    218                 } 
    219                 if (getClass() != obj.getClass()) { 
    220                         return false; 
    221                 } 
    222                 BookViewOptions other = (BookViewOptions) obj; 
     243         
     244        /** 
     245         * Defines the edit level of a {@link BookView}. Can be used to determine 
     246         * whether some controls are visible or enabled. 
     247         *  
     248         * @author deni 
     249         */ 
     250        public static enum BookEditLevel { 
    223251                 
    224                 return this.outlineConnections == other.outlineConnections  
    225                                 && this.outlineFrames == other.outlineFrames 
    226                                 && this.previewMode == other.previewMode 
    227                                 && this.showControls == other.showControls 
    228                                 && Float.floatToIntBits(this.zoom) == Float.floatToIntBits(other.zoom); 
     252                // The definition order is important. 
    229253                 
     254                /** 
     255                 * Only a single frame can be edited. 
     256                 */ 
     257                FRAME, 
    230258                 
    231         }        
     259                /** 
     260                 * A single page (including all its sub-elements) can be edited. 
     261                 */ 
     262                PAGE, 
     263                 
     264                /** 
     265                 * The whole book can be edited. 
     266                 */ 
     267                BOOK; 
     268        } 
    232269} 
     270 No newline at end of file 
  • modules/org.sophie2.extra.comment/src/main/java/org/sophie2/extra/comment/logic/CommentHudLogic.java

     
    11package org.sophie2.extra.comment.logic; 
    22 
    33import org.sophie2.base.bound.BoundControl.EventIds; 
    4 import org.sophie2.base.model.book.interfaces.ResourceFrame; 
     4import org.sophie2.base.model.book.actions.ChangeMainResourceAction; 
    55import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    66import org.sophie2.base.model.resources.r4.changes.AutoAction; 
    77import org.sophie2.base.skins.Message; 
     
    5252                        ResourceRefR4 streamRef = ResourceRefR4.make(input); 
    5353                         
    5454                        if (streamRef != null) { 
    55                                 final ResourceRefR4 ref = streamRef; 
    56                                  
    57                                 new AutoAction(Message.create(SET_COMMENT_STREAM_REF), true) { 
    58                                          
    59                                         @Override 
    60                                         public void performAuto() { 
    61                                                 getChanger().setRaw(ResourceFrame.KEY_MAIN_RESOURCE, ref); 
    62                                         } 
    63                                 }.register(helper.getAccess()); 
    64                                  
     55                                AutoAction action = new ChangeMainResourceAction( 
     56                                                Message.create(SET_COMMENT_STREAM_REF), true, streamRef); 
     57                                action.register(helper.getAccess()); 
    6558                        } 
    6659 
    6760                        return true; 
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/frame/MainTitleBarHalo.java

     
    2929import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    3030import org.sophie2.base.model.resources.r4.access.ResourceAccess; 
    3131import org.sophie2.base.model.resources.r4.changes.AutoAction; 
     32import org.sophie2.base.model.resources.r4.changes.ResourceChanger; 
    3233import org.sophie2.base.model.resources.r4.keys.TemplatedKey.Mode; 
    3334import org.sophie2.base.scene.SceneVisual; 
    3435import org.sophie2.base.scene.helpers.SceneHelper; 
     
    5051import org.sophie2.main.app.commons.element.GroupView; 
    5152import org.sophie2.main.app.commons.frame.FrameView; 
    5253import org.sophie2.main.app.commons.page.PageWorkArea; 
    53 import org.sophie2.main.app.halos.actions.SetLocationAction; 
    5454import org.sophie2.main.app.halos.common.AppHaloUtil; 
    5555import org.sophie2.main.app.halos.shared.MainHaloMenu; 
    5656 
     
    191191                        protected PageH compute() { 
    192192                                PageH res = null; 
    193193                                PageWorkArea pwa = workArea().get(); 
    194                                 if (pwa != null && pwa.getSel().getSelected().size() > 0) { 
     194                                if (pwa != null && pwa.getRootPageView() != null  
     195                                                && pwa.getSel().getSelected().size() > 0) { 
    195196                                        res = pwa.getRootPageView().model().get(); 
    196197                                } 
    197198                                return res; 
     
    325326                                        final ResourceRefR4 frameRef = refs.get(i);                                      
    326327 
    327328                                        ResourceAccess frameAccess = pageAccess.open(frameRef, null); 
    328                                         final LocationChannel oldChanel = MemberElement.KEY_LOCATION.get(frameAccess); 
     329                                        final LocationChannel oldChanel =  
     330                                                MemberElement.KEY_LOCATION.get(frameAccess); 
    329331                                        final TimePos time = times.get(i); 
    330332 
    331                                         Message description = Message.create(SET_LOCATION); 
    332                                         AutoAction action = new SetLocationAction(description, false, 
    333                                                         newValue, frameRef, oldChanel, time); 
    334                                         action.register(pageAccess); 
     333                                        new AutoAction(Message.create(SET_LOCATION), false) { 
     334                                                @Override 
     335                                                public void performAuto() { 
     336                                                        ResourceChanger changer = getChanger(); 
     337                                                        changer.setRaw(MemberElement.KEY_LOCATION,  
     338                                                                        oldChanel.setValue(time, newValue)); 
     339                                                } 
     340                                        }.register(frameAccess); 
    335341                                } 
    336342                        } 
    337343 
  • modules/org.sophie2.main.func.timelines/src/main/java/org/sophie2/main/func/timelines/hud/TimelinesHudButton.java

     
    99import org.sophie2.base.visual.skins.RelatedChildren; 
    1010import org.sophie2.base.visual.skins.SkinPartDef; 
    1111import org.sophie2.base.visual.skins.VisualElementDef; 
    12 import org.sophie2.main.app.commons.frame.FrameView; 
     12import org.sophie2.main.app.commons.book.BookViewOptions; 
     13import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    1314import org.sophie2.main.app.commons.page.PageWorkArea; 
    1415import org.sophie2.main.app.halos.common.AppHaloUtil; 
    1516import org.sophie2.main.app.halos.shared.MainHaloMenu; 
     
    4546         
    4647        @Override 
    4748        protected boolean computeVisible() { 
    48                 PageWorkArea pwa =  AppHaloUtil.getWorkArea(this); 
    49                 if (pwa == null) { 
    50                         return false; 
    51                 } 
    52  
    53                 FrameView frameView = AppHaloUtil.getSingleFrameView(this); 
    54                 if (frameView != null) { 
    55                         // A frame is selected 
     49                if (AppHaloUtil.getSingleFrameView(this) != null) { 
    5650                        return true; 
    5751                } 
    58  
    59                 if (0 == pwa.getSel().getSelected().size()) { 
    60                         // Nothing is selected 
    61                         if (pwa.getRootPageView() != null) { 
    62                                 // There is root page view. 
    63                                 return true; 
    64                         } 
     52                 
     53                PageWorkArea pwa = AppHaloUtil.getWorkArea(this);                
     54                if (pwa == null || pwa.getRootPageView() == null || pwa.getSel().getSelected().size() != 0) { 
     55                        return false; 
    6556                } 
    66                 // selected element view is not frame view. 
    67                 return false; 
     57                 
     58                BookViewOptions viewOptions = pwa.bookView().get().getViewOptions(); 
     59                return viewOptions.getBookEditLevel().compareTo(BookEditLevel.PAGE) >= 0;        
    6860        } 
    6961 
    7062} 
  • modules/org.sophie2.base.model.book/src/main/java/org/sophie2/base/model/book/actions/ChangeMainResourceAction.java

     
     1package org.sophie2.base.model.book.actions; 
     2 
     3import org.sophie2.base.model.book.interfaces.ResourceFrame; 
     4import org.sophie2.base.model.resources.r4.ResourceRefR4; 
     5import org.sophie2.base.model.resources.r4.changes.AutoAction; 
     6import org.sophie2.base.skins.Message; 
     7 
     8/** 
     9 * An {@link AutoAction} that changes the main resource of a frame. 
     10 *  
     11 * @author deni 
     12 */ 
     13public final class ChangeMainResourceAction extends AutoAction { 
     14 
     15        private final ResourceRefR4 ref; 
     16 
     17        /** 
     18         * Creates an <code>ChangeMainResourceAction</code>. 
     19         *  
     20         * @param description 
     21         *              The message describing the action. 
     22         * @param significant 
     23         *              The significance of the action. 
     24         * @param ref 
     25         *              A reference to the new main resource of the frame. 
     26         *              Should be relative from the frame. 
     27         */ 
     28        public ChangeMainResourceAction(Message description, boolean significant, ResourceRefR4 ref) { 
     29                super(description, significant); 
     30                this.ref = ref; 
     31        } 
     32 
     33        @Override 
     34        public void performAuto() { 
     35                getChanger().setRaw(ResourceFrame.KEY_MAIN_RESOURCE, this.ref); 
     36        } 
     37} 
     38 No newline at end of file 
  • modules/org.sophie2.main.func.templates/src/main/java/org/sophie2/main/func/templates/frame/FrameTemplateLogic.java

     
    2222import org.sophie2.core.mvc.OperationDef; 
    2323import org.sophie2.core.mvc.events.EventR3; 
    2424import org.sophie2.main.app.commons.book.BaseBookDocView; 
     25import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    2526import org.sophie2.main.app.commons.element.ElementView; 
    2627import org.sophie2.main.app.commons.frame.FrameView; 
    2728import org.sophie2.main.app.commons.page.MainPageView; 
     
    102103                         
    103104                        PageWorkArea workArea = event.getSource(PageWorkArea.class); 
    104105                        MainPageView pageView = workArea.getRootPageView().mainPartView().get(); 
    105                         if (pageView.getViewOptions().isPreviewMode()) { 
     106                        if (pageView.getViewOptions().isPreviewMode() 
     107                                        || pageView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.PAGE) < 0) { 
    106108                                return false; 
    107109                        } 
    108110                         
  • modules/org.sophie2.base.model.book/src/main/java/org/sophie2/base/model/book/actions/RemoveResourceAction.java

     
    1 package org.sophie2.main.func.resources.actions; 
     1package org.sophie2.base.model.book.actions; 
    22 
    33import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    44import org.sophie2.base.model.resources.r4.changes.AutoAction; 
     5import org.sophie2.base.model.resources.r4.changes.ResourceChanger; 
    56import org.sophie2.base.skins.Message; 
    67 
    78/** 
    89 * {@link AutoAction} for deleting a resource. 
     10 * If the resource to delete doesn't exist, the action will do nothing. 
    911 *  
    1012 * @author diana 
    1113 */ 
     
    3234 
    3335        @Override 
    3436        public void performAuto() { 
    35                 getChanger().removeResource(this.resourceRef); 
     37                ResourceChanger ch = getChanger(); 
     38                if (ch.hasChild(this.resourceRef)) { 
     39                        ch.removeResource(this.resourceRef); 
     40                } 
    3641        } 
    3742} 
     43 
  • modules/org.sophie2.extra.comment/src/main/java/org/sophie2/extra/comment/logic/CommentLogic.java

     
    22 
    33import org.sophie2.base.commons.structures.ImmTreeList; 
    44import org.sophie2.base.dialogs.DialogManager; 
    5 import org.sophie2.base.model.book.interfaces.ResourceFrame; 
     5import org.sophie2.base.model.book.actions.ChangeMainResourceAction; 
    66import org.sophie2.base.model.resources.r4.LocationPrefix; 
    77import org.sophie2.base.model.resources.r4.ResourceRefR4; 
     8import org.sophie2.base.model.resources.r4.access.ResourceAccess; 
    89import org.sophie2.base.model.resources.r4.changes.AutoAction; 
    910import org.sophie2.base.skins.Message; 
    1011import org.sophie2.base.visual.interaction.InputEventR3; 
     
    1213import org.sophie2.core.mvc.EventFilterBuilder; 
    1314import org.sophie2.core.mvc.OperationDef; 
    1415import org.sophie2.core.mvc.events.EventR3; 
     16import org.sophie2.extra.comment.actions.SetStreamCommentsAction; 
    1517import org.sophie2.extra.comment.dialogs.AddCommentDialog; 
    1618import org.sophie2.extra.comment.model.Comment; 
    17 import org.sophie2.extra.comment.model.CommentStream; 
    1819import org.sophie2.extra.comment.model.CommentStreamH; 
    1920import org.sophie2.extra.comment.view.AddCommentView; 
    2021import org.sophie2.extra.comment.view.CommentEntryView; 
     
    150151                                return false; 
    151152                        } 
    152153 
    153                         new AutoAction(Message.create(ADD_COMMMENT_REPLY), true) { 
     154                        AutoAction action = new SetStreamCommentsAction( 
     155                                        Message.create(ADD_COMMMENT_REPLY), true, newComments); 
     156                        action.register(stream.getAccess()); 
    154157 
    155                                 @Override 
    156                                 public void performAuto() { 
    157                                         getChanger().setRaw( 
    158                                                         CommentStream.KEY_COMMENTS, newComments); 
    159                                 } 
    160                         }.register(stream.getAccess()); 
    161  
    162158                        return true; 
    163159                } 
    164160        },  
     
    209205                                return true; 
    210206                        } 
    211207 
    212                         new AutoAction(Message.create(ADD_NEW_COMMMENT), true) { 
     208                        AutoAction action = new SetStreamCommentsAction( 
     209                                        Message.create(ADD_NEW_COMMMENT), true, newComments); 
     210                        action.register(stream.getAccess()); 
    213211 
    214                                 @Override 
    215                                 public void performAuto() { 
    216                                         getChanger().setRaw( 
    217                                                         CommentStream.KEY_COMMENTS, newComments); 
    218                                 } 
    219                         }.register(stream.getAccess()); 
    220  
    221212                        return true; 
    222213                } 
    223214 
     
    259250                                        final ResourceRefR4 valueToSet =   
    260251                                                frameView.model().get().getCommentStreamH().getRef();  
    261252 
    262                                         new AutoAction(Message.create(UPDATE_COMMENT_FRAME_REFERENCE), false) {  
    263                                                 public void performAuto() {  
    264                                                         getChanger().getSub(relRef).setRaw(  
    265                                                                         ResourceFrame.KEY_MAIN_RESOURCE, valueToSet);  
    266                                                 };  
    267                                         }.register(clone.getAccess()); 
     253                                        AutoAction action = new ChangeMainResourceAction( 
     254                                                        Message.create(UPDATE_COMMENT_FRAME_REFERENCE), false, valueToSet); 
     255                                        ResourceAccess frameAccess = clone.getAccess().open( 
     256                                                        relRef, clone.getAccess().getAccessOptions()); 
     257                                        action.register(frameAccess); 
    268258                                         
    269259                                        isCopyModified = true; 
    270260                                }  
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/shared/AddTemplateHaloButton.java

     
    3535import org.sophie2.core.mvc.OperationDef; 
    3636import org.sophie2.core.mvc.events.EventR3; 
    3737import org.sophie2.main.app.commons.book.BaseBookView; 
     38import org.sophie2.main.app.commons.book.BookViewOptions; 
     39import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    3840import org.sophie2.main.app.commons.dialogs.CreateTemplateDialog; 
    3941import org.sophie2.main.app.commons.dialogs.TemplateInfo; 
    4042import org.sophie2.main.app.commons.element.ElementView; 
     
    7981        } 
    8082 
    8183        @Override 
    82         protected boolean computeVisible() { 
    83                  
    84                 if (AppHaloUtil.getSingleFrameView(this) != null) { 
    85                         return true; 
    86                 } 
    87                  
     84        protected boolean computeVisible() {             
    8885                PageWorkArea pwa = AppHaloUtil.getWorkArea(this); 
    8986                if (pwa == null || pwa.getRootPageView() == null) { 
    9087                        return false; 
    9188                } 
    9289                 
     90                FrameView frameView = AppHaloUtil.getSingleFrameView(this); 
     91                BookH book = pwa.bookView().get().model().get(); 
     92                if (frameView != null && !TemplateUtil.isFrameTemplate(book, frameView.model().get().getRef())) { 
     93                        return true; 
     94                } 
     95                 
     96                // the model might be the page 
    9397                if (pwa.getSel().getSelected().size() != 0) { 
    9498                        return false; 
     99                }                
     100                if (TemplateUtil.isPageTemplate(book, pwa.getRootPageView().model().get().getRef())) { 
     101                        return false; 
    95102                } 
    96                          
    97                 return !TemplateUtil.isPageTemplate(pwa.bookView().get().model().get(),  
    98                                 pwa.getRootPageView().model().get().getRef());           
     103                 
     104                BookViewOptions viewOptions = pwa.bookView().get().getViewOptions(); 
     105                return viewOptions.getBookEditLevel().compareTo(BookEditLevel.PAGE) >= 0; 
    99106        } 
    100107 
    101108        @Override 
  • modules/org.sophie2.base.model.resources.r4/src/main/java/org/sophie2/base/model/resources/r4/model/ResourceModelPersister.java

     
    4040        @Override 
    4141        public void persist(final ValueRef<ResourceModel> source, Storage storage,  
    4242                        PersistenceOptions options) throws IOException, IncorrectFormatException { 
     43                 
    4344                // used for loading 
    4445                Map<Key<?>, Object> changes = new HashMap<Key<?>, Object>(); 
    4546 
     
    141142                                ResourceModel resourceModel = source.get(); 
    142143                                childModelRef.set(resourceModel.getSubModel(childKey)); 
    143144                        } 
    144  
     145                         
     146                        // do not persist transient children 
     147                        if (options.isSaveMode()) {                              
     148                                Boolean transientRes = childModelRef.get().getRaw(ResourceR4.KEY_TRANSIENT); 
     149                                if (Boolean.TRUE.equals(transientRes)) { 
     150                                        SophieLog.tracef("Will not persist transient child %s", childName); 
     151                                        continue; 
     152                                } 
     153                        } 
     154                         
    145155                        //Persists children of the resource  
    146156                        SophieLog.tracef("Persisting child %s", childName); 
    147157                        this.persist(childModelRef, storage.attribute(childName), options); 
  • modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/book/BaseBookDocView.java

     
    232232 
    233233                                modelSwing.setLayout(new BorderLayout()); 
    234234 
    235                                 if (bookView().get().getViewOptions().isShowControls()) { 
     235                                if (bookView().get().getViewOptions().isShowViewControls()) { 
    236236                                        modelSwing.add(viewOptionsScrollPane().get().swingComponent(), BorderLayout.NORTH); 
    237237                                        modelSwing.add(workAreaPane().get(), BorderLayout.CENTER); 
    238238                                } else { 
     
    270270 
    271271                        @Override 
    272272                        protected void setup(JScrollPane res) { 
    273                                 if (bookView().get().getViewOptions().isShowControls()) { 
     273                                if (bookView().get().getViewOptions().isShowViewControls()) { 
    274274                                        res.setViewportView(workArea().get().swingComponent().get()); 
    275275                                } 
    276276                                res.validate(); 
  • modules/org.sophie2.base.model.resources.r4/src/test/java/org/sophie2/base/model/resources/r4/model/TransientResourcesPersistenceTest.java

     
     1package org.sophie2.base.model.resources.r4.model; 
     2 
     3import java.io.IOException; 
     4 
     5import javax.swing.SwingUtilities; 
     6 
     7import org.junit.Test; 
     8import org.sophie2.base.commons.util.position.ImmSize; 
     9import org.sophie2.base.config.BaseConfigModule; 
     10import org.sophie2.base.model.resources.r4.BaseModelResourcesR4Module; 
     11import org.sophie2.base.model.resources.r4.ResourceRefR4; 
     12import org.sophie2.base.model.resources.r4.ResourceTestModule; 
     13import org.sophie2.base.model.resources.r4.access.AppLocator; 
     14import org.sophie2.base.model.resources.r4.access.ResourceAccess; 
     15import org.sophie2.base.model.resources.r4.changes.AutoAction; 
     16import org.sophie2.base.model.resources.r4.changes.ResourceChanger; 
     17import org.sophie2.base.model.resources.r4.dummies.helpers.DummyBookHelper; 
     18import org.sophie2.base.model.resources.r4.dummies.helpers.DummyPageHelper; 
     19import org.sophie2.base.model.resources.r4.dummies.resources.DummyBook; 
     20import org.sophie2.base.model.resources.r4.keys.RootKey; 
     21import org.sophie2.base.model.resources.r4.resources.ResourceR4; 
     22import org.sophie2.base.persistence.BasePersistenceModule; 
     23import org.sophie2.base.persistence.commons.PersistenceOptions; 
     24import org.sophie2.base.persistence.commons.PersistenceUtil; 
     25import org.sophie2.base.persistence.persister.IncorrectFormatException; 
     26import org.sophie2.base.persistence.persister.MasterPersister; 
     27import org.sophie2.base.persistence.ref.ValueRef; 
     28import org.sophie2.base.persistence.storage.Storage; 
     29import org.sophie2.base.skins.BaseSkinsModule; 
     30import org.sophie2.base.skins.Message; 
     31import org.sophie2.core.modularity.FakeModuleRegistry; 
     32import org.sophie2.core.testing.TestBase; 
     33 
     34/** 
     35 * Test for the persistence of transient resources. 
     36 *  
     37 * @author deni 
     38 */ 
     39public class TransientResourcesPersistenceTest extends TestBase { 
     40         
     41        @SuppressWarnings("unchecked") 
     42        @Override 
     43        protected void setUp() throws Exception { 
     44                super.setUp(); 
     45                 
     46                SwingUtilities.invokeAndWait(new Runnable() { 
     47                        public void run() { 
     48                                FakeModuleRegistry.start( 
     49                                                BasePersistenceModule.class, 
     50                                                BaseModelResourcesR4Module.class, 
     51                                                ResourceTestModule.class, 
     52                                                BaseSkinsModule.class, 
     53                                                BaseConfigModule.class); 
     54                        } 
     55                }); 
     56 
     57        } 
     58         
     59        @Override 
     60        protected void tearDown() throws Exception { 
     61                FakeModuleRegistry.stop(); 
     62                super.tearDown(); 
     63        } 
     64         
     65        /** 
     66         * Tests that a transient child of a {@link DummyBook} will not be persisted. 
     67         * @throws IncorrectFormatException 
     68         * @throws IOException 
     69         */ 
     70        @Test 
     71        public void testTransientResourcesPersistence() throws IncorrectFormatException, IOException  { 
     72                AppLocator locator = new AppLocator(); 
     73                ResourceAccess bookAccess =  
     74                        DummyBookHelper.createEmptyBook(locator, "Book", new ImmSize(300, 200)); 
     75                 
     76                final ResourceRefR4 pageRef = ResourceRefR4.generateRandomSub(DummyPageHelper.NAME_PREFIX);              
     77                new AutoAction(Message.create("Add new transient page"), true) { 
     78 
     79                        @Override 
     80                        public void performAuto() { 
     81                                ResourceChanger bookChanger = getChanger();              
     82                                bookChanger.makeResource(pageRef); 
     83         
     84                                ResourceChanger pageChanger = bookChanger.getSub(pageRef); 
     85                                pageChanger.setRaw(ResourceR4.KEY_TRANSIENT, true); 
     86                        } 
     87 
     88                }.register(bookAccess); 
     89                 
     90                Storage storage = new Storage(); 
     91                ValueRef<ResourceModel> modelRef = new ValueRef<ResourceModel>(); 
     92                modelRef.set(bookAccess.getHead().getModel()); 
     93                 
     94                MasterPersister.persist(modelRef, storage, PersistenceOptions.getSaveOptions(), 
     95                                PersistenceUtil.getStorageR3Schema(ResourceModel.class)); 
     96                 
     97                storage.debugPrint(0); 
     98                 
     99                ValueRef<ResourceModel> loadedModelRef = new ValueRef<ResourceModel>(); 
     100                MasterPersister.persist(loadedModelRef, storage, PersistenceOptions.getLoadOptions(), 
     101                                PersistenceUtil.getStorageR3Schema(ResourceModel.class)); 
     102 
     103                RootKey pageKey = ResourceR4.KEY_CHILDREN.sub(pageRef); 
     104                ResourceModel subModel = loadedModelRef.get().getSubModel(pageKey); 
     105                assertNull(subModel); 
     106        } 
     107 
     108} 
  • modules/org.sophie2.main.app.menus/src/main/java/org/sophie2/main/app/menus/file/SaveBookAsTemplateItem.java

     
    55import org.sophie2.base.skins.SkinElementId; 
    66import org.sophie2.base.visual.skins.ElementPartCreator; 
    77import org.sophie2.base.visual.skins.SkinPartDef; 
    8 import org.sophie2.main.app.commons.book.BookView; 
     8import org.sophie2.main.app.commons.book.BaseBookView; 
     9import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    910import org.sophie2.main.app.commons.util.AppViewUtil; 
    1011import org.sophie2.main.app.menus.AppMenuItem; 
    1112 
     
    2829 
    2930        @Override 
    3031        protected boolean computeEnabled() { 
    31                 BookView bookView = AppViewUtil.getCurrentBookView(this); 
     32                BaseBookView bookView = AppViewUtil.getCurrentBaseBookView(this); 
    3233                return bookView != null && !bookView.getViewOptions().isPreviewMode() 
    33                         && bookView.getViewOptions().isShowControls();  
     34                        && bookView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0;  
    3435        } 
    3536} 
  • modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/element/ElementLogic.java

     
    4444import org.sophie2.main.app.commons.app.AppMainWindow; 
    4545import org.sophie2.main.app.commons.book.BaseBookDocView; 
    4646import org.sophie2.main.app.commons.book.BaseBookView; 
     47import org.sophie2.main.app.commons.book.BookViewOptions; 
     48import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    4749import org.sophie2.main.app.commons.frame.FrameView; 
    4850import org.sophie2.main.app.commons.page.PageWorkArea; 
    4951import org.sophie2.main.app.commons.page.PwaSelector; 
     
    148150                        if (docView == null) { 
    149151                                return false; 
    150152                        } 
     153                         
     154                        BookViewOptions viewOptions = docView.bookView().get().getViewOptions(); 
     155                        if (viewOptions.isPreviewMode() 
     156                                        || viewOptions.getBookEditLevel().compareTo(BookEditLevel.PAGE) < 0) { 
     157                                return false; 
     158                        } 
     159                         
    151160                        PageWorkArea workArea = docView.workArea().get(); 
    152161                         
    153162                        ElementView parentView = workArea.getSel().getEditScope(); 
     
    222231                                                parentCh.setRaw(CompositeElement.KEY_SUB_ELEMENTS, newChannels); 
    223232                                        } 
    224233                                }.register(book.getAccess()); 
     234                                 
     235                                return true; 
    225236                        } 
    226237                         
    227238                        return false; 
     
    305316 
    306317        private static void handleCutOrCopy(VisualElement source, Operation operation) { 
    307318                BaseBookDocView docView = AppViewUtil.getCurrentBookDocView(source); 
    308                 if (docView == null || docView.bookView().get().getViewOptions().isPreviewMode()) { 
     319                if (docView == null || docView.bookView().get().getViewOptions().isPreviewMode() 
     320                                || docView.bookView().get().getViewOptions().getBookEditLevel().compareTo( 
     321                                                BookEditLevel.PAGE) < 0) { 
    309322                        return; 
    310323                } 
    311324                PageWorkArea workArea = docView.workArea().get(); 
  • modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/actions/SetLocationAction.java

     
    44import org.sophie2.base.media.TimePos; 
    55import org.sophie2.base.model.book.interfaces.MemberElement; 
    66import org.sophie2.base.model.book.timelines.LocationChannel; 
    7 import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    87import org.sophie2.base.model.resources.r4.changes.AutoAction; 
    98import org.sophie2.base.model.resources.r4.changes.ResourceChanger; 
    109import org.sophie2.base.skins.Message; 
     
    2019public final class SetLocationAction extends AutoAction { 
    2120 
    2221        private final ImmPoint newValue; 
    23         private final ResourceRefR4 frameRef;                                    
    2422        private final LocationChannel oldChanel; 
    2523        private final TimePos time; 
    2624         
     
    3331         *                      The significance of the action. 
    3432         * @param newValue 
    3533         *           The new location. 
    36          * @param frameRef 
    37          *           The frame of the halo. 
    3834         * @param oldChanel 
    3935         *           The old channel of the halo. 
    4036         * @param time 
    4137         *           The time when moved. 
    4238         */ 
    4339        public SetLocationAction(Message description, boolean significant,  
    44                         ImmPoint newValue, ResourceRefR4 frameRef, LocationChannel oldChanel,  
    45                         TimePos time) { 
     40                        ImmPoint newValue, LocationChannel oldChanel, TimePos time) { 
    4641                super(description, significant); 
    4742                this.newValue = newValue; 
    48                 this.frameRef = frameRef; 
    4943                this.oldChanel = oldChanel; 
    5044                this.time = time; 
    5145        } 
    5246 
    5347        @Override 
    5448        public void performAuto() { 
    55                 ResourceChanger subChanger = getChanger().getSub(this.frameRef); 
     49                ResourceChanger changer = getChanger(); 
    5650 
    57                 subChanger.setRaw(MemberElement.KEY_LOCATION, this.oldChanel 
    58                                 .setValue(this.time, this.newValue)); 
    59                  
     51                changer.setRaw(MemberElement.KEY_LOCATION,  
     52                                this.oldChanel.setValue(this.time, this.newValue));      
    6053        } 
    6154 
    6255} 
  • modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/book/SinglePageBookDocView.java

     
    22 
    33import org.sophie2.base.model.book.BookH; 
    44import org.sophie2.base.model.book.PageH; 
     5import org.sophie2.base.model.book.actions.ChangeTitleAction; 
    56import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    67import org.sophie2.base.model.resources.r4.access.AccessOptions; 
    78import org.sophie2.base.model.resources.r4.access.ResourceAccess; 
    8 import org.sophie2.base.model.resources.r4.changes.AutoAction; 
    9 import org.sophie2.base.model.resources.r4.resources.ResourceR4; 
    109import org.sophie2.base.skins.Message; 
     10import org.sophie2.core.prolib.interfaces.Prop; 
    1111import org.sophie2.main.app.commons.app.AppMainWindow; 
    1212import org.sophie2.main.app.commons.util.AppViewUtil; 
    1313 
     
    4848                SinglePageBookView view = new SinglePageBookView(getAccess(), viewOptions); 
    4949                getBean().init(bookView(), view);                
    5050        } 
     51         
     52        /** 
     53         * Whether the page should be deleted on closing the window.  
     54         * This might be necessary if a temporary page was created in order to show some 
     55         * page elements (for example, frame templates). 
     56         *  
     57         * @return 
     58         *              The property. 
     59         */ 
     60        public Prop<Boolean> deletePageOnClose() { 
     61                return getBean().makeFinalProp("deletePageOnClose", Boolean.class); 
     62        } 
     63         
     64        /** 
     65         * Initializes the option whether to delete the page on closing the window. 
     66         *  
     67         * @param deletePageOnClose 
     68         *              Whether to delete the page on closing the window. 
     69         */ 
     70        public void initDeletePageOnClose(boolean deletePageOnClose) { 
     71                getBean().init(deletePageOnClose(), deletePageOnClose); 
     72        } 
    5173 
    5274        /** 
    5375         * Initializes the page that should be displayed. 
     
    5981                ((SinglePageBookView)bookView().get()).initPageRef(pageRef); 
    6082        } 
    6183         
     84        /** 
     85         * Gets a reference to the page that should be displayed. 
     86         *  
     87         * @return 
     88         *              A reference to the page that should be displayed. 
     89         */ 
     90        public ResourceRefR4 getPageRef() { 
     91                return ((SinglePageBookView)bookView().get()).pageRef().get(); 
     92        } 
     93         
    6294        @Override 
    6395        protected String computeTitle() { 
    6496                if (model() != null) { 
     
    83115                SinglePageBookDocView newView = new SinglePageBookDocView(clone.getAccess(),  
    84116                                BookViewOptions.DEFAULT_READER); 
    85117                ResourceRefR4 pageRef = ((SinglePageBookView) bookView().get()).pageRef().get(); 
     118                newView.initDeletePageOnClose(false); 
    86119                newView.initPageRef(pageRef); 
    87120                 
    88121                PageH page = ((SinglePageBookView) newView.bookView().get()).page().get(); 
    89                 final String newTitle = BookH.PREVIEW_TITLE_PREFIX + page.getTitle(); 
    90                 new AutoAction(Message.create(UPDATE_PREVIEW), false) {  
    91  
    92                         @Override  
    93                         public void performAuto() {  
    94                                 getChanger().setRaw(ResourceR4.KEY_TITLE, newTitle); 
    95                         }  
    96                 }.register(page.getAccess());            
     122                String newTitle = BookH.PREVIEW_TITLE_PREFIX + page.getTitle(); 
     123                ChangeTitleAction action = new ChangeTitleAction(Message.create(UPDATE_PREVIEW), true, newTitle); 
     124                action.register(clone.getAccess()); 
    97125                 
    98126                return newView; 
    99127        } 
  • modules/org.sophie2.main.app.menus/src/main/java/org/sophie2/main/app/menus/insert/InsertMenu.java

     
    77import org.sophie2.base.visual.skins.SkinPartDef; 
    88import org.sophie2.main.app.commons.book.BaseBookView; 
    99import org.sophie2.main.app.commons.book.BookView; 
     10import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    1011import org.sophie2.main.app.menus.AppMenu; 
    1112 
    1213/** 
     
    3940         */ 
    4041        // TODO: Why is this method here ??? 
    4142        public static boolean isEditable(BaseBookView bookWindow) { 
    42                 return bookWindow != null && !bookWindow.getViewOptions().isPreviewMode(); 
     43                return bookWindow != null && !bookWindow.getViewOptions().isPreviewMode() 
     44                        && bookWindow.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.PAGE) >= 0; 
    4345        }        
    4446} 
  • modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/element/ElementView.java

     
    3333import org.sophie2.core.mvc.EventParams; 
    3434import org.sophie2.core.mvc.LogicR3; 
    3535import org.sophie2.core.prolib.annot.Own; 
     36import org.sophie2.core.prolib.errors.NotAvailableException; 
    3637import org.sophie2.core.prolib.impl.AutoListProperty; 
    3738import org.sophie2.core.prolib.impl.AutoProperty; 
    3839import org.sophie2.core.prolib.interfaces.ListProp; 
     
    243244 
    244245                                        @Override 
    245246                                        protected List<ElementView> computeData() { 
    246                                                 List<ElementH> childElements = model().get().getSubElements(); 
     247                                                List<ElementH> childElements; 
     248                                                try { 
     249                                                        childElements = model().get().getSubElements(); 
     250                                                } catch(NotAvailableException e) { 
     251                                                        return Collections.emptyList(); 
     252                                                } 
     253                                                 
    247254                                                List<ElementView> elements =  
    248255                                                        new ArrayList<ElementView>(childElements.size()); 
    249256 
    250257                                                for (ElementH subElement : childElements) { 
    251                                                         ElementView subView = AppViewUtil.getView(ElementView.this,  
    252                                                                         subElement.getAccess(), ElementView.class); 
    253                                                         elements.add(subView); 
     258                                                                ElementView subView = AppViewUtil.getView(ElementView.this,  
     259                                                                                subElement.getAccess(), ElementView.class); 
     260                                                                elements.add(subView);                                                           
    254261                                                } 
    255262                                                return elements; 
    256263                                        } 
  • modules/org.sophie2.main.func.templates/src/main/java/org/sophie2/main/func/templates/frame/FrameTemplatesPalette.java

     
    99import org.sophie2.base.dnd.SophieDragDropHandler; 
    1010import org.sophie2.base.layout.model.ListPalette; 
    1111import org.sophie2.base.layout.model.ListPaletteItem; 
     12import org.sophie2.base.model.book.BookH; 
    1213import org.sophie2.base.model.book.FrameH; 
     14import org.sophie2.base.model.book.PageH; 
     15import org.sophie2.base.model.book.timelines.ActivationChannel; 
    1316import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    1417import org.sophie2.base.model.resources.r4.access.ResourceAccess; 
     18import org.sophie2.base.model.resources.r4.changes.AutoAction; 
    1519import org.sophie2.base.model.resources.r4.resources.ResourceH; 
     20import org.sophie2.base.skins.Message; 
    1621import org.sophie2.base.skins.SkinElementId; 
    1722import org.sophie2.base.visual.BaseVisualElement; 
    1823import org.sophie2.base.visual.skins.ElementPartCreator; 
    1924import org.sophie2.base.visual.skins.SkinPartDef; 
     25import org.sophie2.core.mvc.EventFilterBuilder; 
    2026import org.sophie2.core.mvc.EventParams; 
    2127import org.sophie2.core.mvc.LogicR3; 
     28import org.sophie2.core.mvc.OperationDef; 
     29import org.sophie2.core.mvc.events.EventR3; 
    2230import org.sophie2.core.prolib.impl.AutoProperty; 
    2331import org.sophie2.core.prolib.interfaces.Prop; 
     32import org.sophie2.main.app.commons.app.AppMainWindow; 
    2433import org.sophie2.main.app.commons.book.BaseBookDocView; 
     34import org.sophie2.main.app.commons.book.BookViewOptions; 
     35import org.sophie2.main.app.commons.book.SinglePageBookDocView; 
     36import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    2537import org.sophie2.main.app.commons.util.AppViewUtil; 
     38import org.sophie2.main.func.templates.actions.AddTransientPageAction; 
    2639 
     40 
    2741/** 
    2842 * Frames templates palette. Used to contain frame templates which could be 
    2943 * applied to a frame by double clicking on an item in the list. 
     
    103117 
    104118                @Override 
    105119                public void doubleClicked() { 
    106                         LogicR3.fire(FrameTemplatesPalette.this, null, null, null, FrameTemplatesPalette.EventIds.APPLY_FRAME_TEMPLATE); 
    107                 } 
     120                        LogicR3.fire(this, FrameTemplatesPalette.this, 
     121                                        null, null, FrameTemplatesPalette.EventIds.OPEN_FRAME_TEMPLATE);                } 
    108122 
    109123                @Override 
    110124                public void keyPressed(KeyEvent e) { 
     
    171185                 * Deletes a frame template. 
    172186                 */ 
    173187                @EventParams( {}) 
    174                 DELETE_FRAME_TEMPLATE; 
     188                DELETE_FRAME_TEMPLATE, 
     189                 
     190                /** 
     191                 * Opens the selected frame template for editing in its own window. 
     192                 */ 
     193                @EventParams({}) 
     194                OPEN_FRAME_TEMPLATE; 
    175195        } 
     196         
     197        /** 
     198         * Logic connected to {@link FrameTemplatesPalette}. 
     199         *  
     200         * @author deni 
     201         */ 
     202        public enum PaletteLogic implements OperationDef { 
     203                                 
     204                /** 
     205                 * Opens a frame template for editing in its own window. 
     206                 */ 
     207                ON_OPEN_FRAME_TEMPLATE { 
     208 
     209                        public void defineFilter(EventFilterBuilder filter) { 
     210                                filter.setSourceClass(FrameTemplateItem.class); 
     211                                filter.setEventId(EventIds.OPEN_FRAME_TEMPLATE);                                 
     212                        } 
     213 
     214                        public boolean handle(EventR3 event) { 
     215                                                                 
     216                                FrameTemplatesPalette palette = event.getContext(FrameTemplatesPalette.class);           
     217                                BaseBookDocView bdw = AppViewUtil.getCurrentBookDocView(palette); 
     218                                if (bdw.bookView().get().getViewOptions().isPreviewMode()) { 
     219                                        return false; 
     220                                } 
     221                                BookH book = bdw.model().get(); 
     222                                AppMainWindow mainWindow = AppViewUtil.findMainWindow(palette); 
     223                                 
     224                                FrameTemplateItem source = event.getSource(FrameTemplateItem.class); 
     225                                FrameH templateH = source.frame().get(); 
     226                                 
     227                                final ResourceRefR4 pageRef = ResourceRefR4.generateRandomSub(PageH.NAME_PREFIX); 
     228                                final String pageTitle = templateH.getTitle(); 
     229                                 
     230                                ResourceRefR4 pageToFrameRef = ResourceRefR4.getRelativeRef( 
     231                                                book.getRef().append(pageRef), templateH.getRef()); 
     232                                final ImmList<ActivationChannel> subelements =  
     233                                        ImmTreeList.create(new ActivationChannel(pageToFrameRef)); 
     234                                 
     235                                ResourceAccess newAccess = book.getAccess().open(ResourceRefR4.CURRENT_REF, 
     236                                                book.getAccess().getAccessOptions().modifyViewId()); 
     237                                 
     238                                AutoAction action = new AddTransientPageAction(Message.create(CREATE_TRANSIENT_PAGE),  
     239                                                true, pageTitle, pageRef, subelements); 
     240                                action.register(newAccess); 
     241 
     242                                SinglePageBookDocView window = new SinglePageBookDocView(newAccess); 
     243                                window.bookView().get().setViewOptions( 
     244                                                new BookViewOptions(1.0f, false, true, false, true, BookEditLevel.FRAME)); 
     245                                window.initPageRef(pageRef); 
     246                                window.initDeletePageOnClose(true); 
     247                                mainWindow.documents().add(window); 
     248                                mainWindow.currentDocument().set(window); 
     249 
     250                                return true; 
     251                        } 
     252                }; 
     253                 
     254                /** 
     255                 * Constant created for applying page template. 
     256                 * Constant created to be a parameter of a message of an {@link AutoAction}. 
     257                 * Constant created for applying page template. 
     258                 */ 
     259                public static String CREATE_TRANSIENT_PAGE = "New transient page"; 
     260 
     261        } 
    176262} 
  • modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/book/BookDocView.java

     
    33import org.sophie2.base.commons.util.position.ImmSize; 
    44import org.sophie2.base.layout.impl.DefaultDocView; 
    55import org.sophie2.base.model.book.BookH; 
     6import org.sophie2.base.model.book.actions.ChangeTitleAction; 
    67import org.sophie2.base.model.resources.r4.ResourceRefR4; 
    78import org.sophie2.base.model.resources.r4.access.AccessOptions; 
    89import org.sophie2.base.model.resources.r4.access.ResourceAccess; 
    9 import org.sophie2.base.model.resources.r4.changes.AutoAction; 
    1010import org.sophie2.base.model.resources.r4.model.ResourceModel; 
    11 import org.sophie2.base.model.resources.r4.resources.ResourceR4; 
    1211import org.sophie2.base.skins.Message; 
    1312import org.sophie2.main.app.commons.app.AppMainWindow; 
    1413import org.sophie2.main.app.commons.dialogs.BookInfo; 
     
    127126                AccessOptions newOptions = getAccess().getAccessOptions().modifyViewId(); 
    128127                BookH clone = model().get().clone(mainWindow.locator().get(), newOptions); 
    129128                 
    130                 final String newTitle = BookH.PREVIEW_TITLE_PREFIX + clone.getTitle(); 
    131                 new AutoAction(Message.create(UPDATE_PREVIEW), false) {  
    132  
    133                         @Override  
    134                         public void performAuto() {  
    135                                 getChanger().setRaw(ResourceR4.KEY_TITLE, newTitle); 
    136                         }  
    137                 }.register(clone.getAccess()); 
     129                String newTitle = BookH.PREVIEW_TITLE_PREFIX + clone.getTitle(); 
     130                ChangeTitleAction action = new ChangeTitleAction(Message.create(UPDATE_PREVIEW), true, newTitle); 
     131                action.register(clone.getAccess()); 
    138132                 
    139133                return new BookDocView(clone.getAccess(), BookViewOptions.DEFAULT_READER); 
    140134        } 
  • modules/org.sophie2.base.model.resources.r4/src/main/java/org/sophie2/base/model/resources/r4/resources/ResourceH.java

     
    244244                return ResourceR4.KEY_SECURITY.get(getAccess()); 
    245245        } 
    246246         
     247        /**  
     248         * Gets whether this resource is transient, i.e. should not be persisted.  
     249         *   
     250         * @return 
     251         *              Whether this resource is transient  
     252         */  
     253        public boolean isTransient() {  
     254                return ResourceR4.KEY_TRANSIENT.get(getAccess());  
     255        }       
     256         
    247257        //TODO GET THIS OUT OF THIS MODULE SINCE IT IS NOT LOADED BY THE CORRECT CLASS LOADER 
    248258        /** 
    249259         * Gives a user or a group the permission to write or read  
  • modules/org.sophie2.main.func.resources/src/main/java/org/sophie2/main/func/resources/logic/ResourceImportLogic.java

     
    4242import org.sophie2.main.app.commons.book.BaseBookDocView; 
    4343import org.sophie2.main.app.commons.book.BookView; 
    4444import org.sophie2.main.app.commons.book.BookViewOptions; 
     45import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    4546import org.sophie2.main.app.commons.element.ElementView; 
    4647import org.sophie2.main.app.commons.frame.FrameView; 
    4748import org.sophie2.main.app.commons.page.MainPageView; 
     
    204205 
    205206                        if (bookDocView != null) { 
    206207                                BookViewOptions viewOptions = bookDocView.bookView().get().getViewOptions(); 
    207                                 if (!viewOptions.isPreviewMode()) { 
     208                                if (!viewOptions.isPreviewMode()  
     209                                                && viewOptions.getBookEditLevel().compareTo(BookEditLevel.PAGE) >= 0) { 
    208210 
    209211                                        DndTransferable transferable = event.getEventParam( 
    210212                                                        ImportEventIds.DND_TRANSFERABLE_PARAM_INDEX, 
     
    341343                public boolean handle(EventR3 event) { 
    342344                        PageWorkArea pwa = event.getSource(PageWorkArea.class); 
    343345                        MainPageView view = pwa.getRootPageView().mainPartView().get(); 
    344                         if (view.getViewOptions().isPreviewMode()) { 
     346                        if (view.getViewOptions().isPreviewMode() 
     347                                        || view.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.PAGE) < 0) { 
    345348                                return false; 
    346349                        } 
    347350                         
  • modules/org.sophie2.main.func.templates/src/main/java/org/sophie2/main/func/templates/page/PageTemplateLogic.java

     
    2424import org.sophie2.core.mvc.events.EventR3; 
    2525import org.sophie2.main.app.commons.book.BaseBookDocView; 
    2626import org.sophie2.main.app.commons.book.BaseBookView; 
     27import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    2728import org.sophie2.main.app.commons.element.ElementView; 
    2829import org.sophie2.main.app.commons.frame.FrameView; 
    2930import org.sophie2.main.app.commons.page.MainPageView; 
     
    6465                                        DndPreImport.class); 
    6566                         
    6667                        RootPageView pageView = event.getSource(RootPageView.class); 
    67                         if (pageView.getViewOptions().isPreviewMode()) { 
     68                        if (pageView.getViewOptions().isPreviewMode()  
     69                                        || pageView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.PAGE) < 0) { 
    6870                                return false; 
    6971                        } 
    7072                         
  • modules/org.sophie2.extra.func.embedded/src/main/java/org/sophie2/extra/func/embedded/actions/SetKeyAction.java

     
     1package org.sophie2.extra.func.embedded.actions; 
     2 
     3import org.sophie2.base.model.resources.r4.changes.AutoAction; 
     4import org.sophie2.base.model.resources.r4.keys.Key; 
     5import org.sophie2.base.skins.Message; 
     6 
     7/** 
     8 * An {@link AutoAction} that sets the value of the given key. 
     9 * Will be used to toggle the visibility of a specific media control,  
     10 * for example the Play/Pause button, the Stop button or the seekbar. 
     11 *  
     12 * @author deni 
     13 */ 
     14public final class SetKeyAction extends AutoAction { 
     15 
     16        private final Key<Boolean> key; 
     17        private final boolean shown; 
     18 
     19        /** 
     20         * Creates a new <code>ApplyFrameTemplateAction</code>. 
     21         *  
     22         * @param description 
     23         *              The description of the new <code>AutoAction</code>. 
     24         * @param significant 
     25         *              The significance of the new <code>AutoAction</code>. 
     26         * @param key 
     27         *              The key responsible for the visibility of the control. 
     28         * @param shown 
     29         *              The visibility of the control. 
     30         */ 
     31        public SetKeyAction(Message description, boolean significant, Key<Boolean> key, 
     32                        boolean shown) { 
     33                super(description, significant); 
     34                this.key = key; 
     35                this.shown = shown; 
     36        } 
     37 
     38        @Override 
     39        public void performAuto() { 
     40                getChanger().setRaw(this.key, this.shown); 
     41        } 
     42} 
  • modules/org.sophie2.main.func.servers/src/main/java/org/sophie2/main/func/servers/view/SaveBookOnServerItem.java

     
    99import org.sophie2.base.skins.SkinElementId; 
    1010import org.sophie2.base.visual.skins.ElementPartCreator; 
    1111import org.sophie2.base.visual.skins.SkinPartDef; 
    12 import org.sophie2.main.app.commons.book.BookView; 
     12import org.sophie2.main.app.commons.book.BaseBookView; 
     13import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 
    1314import org.sophie2.main.app.commons.util.AppViewUtil; 
    1415import org.sophie2.main.app.menus.AppMenuItem; 
    1516 
     
    3334 
    3435        @Override 
    3536        protected boolean computeEnabled() { 
    36                 BookView bookView = AppViewUtil.getCurrentBookView(this); 
     37                BaseBookView bookView = AppViewUtil.getCurrentBaseBookView(this); 
    3738                return bookView != null && !bookView.getViewOptions().isPreviewMode() 
    38                         && bookView.getViewOptions().isShowControls();  
     39                        && bookView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0;  
    3940        } 
    4041} 
  • modules/org.sophie2.extra.func.embedded/src/main/java/org/sophie2/extra/func/embedded/view/EmbeddedBooksHud.java

     
    2727import org.sophie2.core.mvc.events.EventR3; 
    2828import org.sophie2.core.prolib.impl.AutoProperty; 
    2929import org.sophie2.core.prolib.interfaces.Prop; 
     30import org.sophie2.extra.func.embedded.actions.SetKeyAction; 
    3031import org.sophie2.extra.func.embedded.model.EmbeddedBookFrameH; 
    3132import org.sophie2.extra.func.embedded.model.EmbeddedBookFrameR4; 
    3233import org.sophie2.main.app.halos.common.AppHaloUtil; 
     
    304305                                final boolean shown = event.getEventParam( 
    305306                                                EmbeddedBooksHud.EventIds.VISIBLE_PARAM_INDEX, Boolean.class); 
    306307                                 
    307                                 new AutoAction(description, true) { 
    308  
    309                                         @Override 
    310                                         public void performAuto() { 
    311                                                 getChanger().setRaw(key, shown); 
    312                                         } 
    313                                 }.register(frame.getAccess()); 
     308                                AutoAction action = new SetKeyAction(description, true, key, shown); 
     309                                action.register(frame.getAccess()); 
    314310                                                         
    315311                                return true; 
    316312                        } 
    317                 }; 
     313                } 
    318314        } 
    319315 
    320316}