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
9 9 import org.sophie2.base.skins.SkinElementId; 10 10 import org.sophie2.base.visual.skins.ElementPartCreator; 11 11 import org.sophie2.base.visual.skins.SkinPartDef; 12 import org.sophie2.main.app.commons.book.BookView; 12 import org.sophie2.main.app.commons.book.BaseBookView; 13 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 13 14 import org.sophie2.main.app.commons.util.AppViewUtil; 14 15 import org.sophie2.main.app.menus.AppMenuItem; 15 16 … … 32 33 33 34 @Override 34 35 protected boolean computeEnabled() { 35 B ookView bv = AppViewUtil.getCurrentBookView(this);36 BaseBookView bv = AppViewUtil.getCurrentBaseBookView(this); 36 37 37 38 return bv != null && !bv.getViewOptions().isPreviewMode() 38 && bv.getViewOptions(). isShowControls()39 && bv.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0 39 40 && !(bv.getAccess() instanceof DelegatingServerAccess); 40 41 } 41 42 } -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/frame/rotate/FrameRotateHaloMenu.java
125 125 protected ImmPoint computeLocation() { 126 126 127 127 FrameView frameView = AppHaloUtil.getSingleSelected(this, FrameView.class); 128 if (frameView == null ) {128 if (frameView == null || frameView.getPwa() == null) { 129 129 return ImmPoint.ZERO; 130 130 } 131 131 … … 137 137 } 138 138 139 139 @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 141 146 FrameView fv = AppHaloUtil.getSingleFrameView(this); 142 147 if ( fv == null ) { 143 148 return false; -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/page/resize/PageResizeHaloMenu.java
9 9 import org.sophie2.base.visual.skins.RelatedChildren; 10 10 import org.sophie2.base.visual.skins.VisualElementDef; 11 11 import org.sophie2.main.app.commons.app.AppMainWindow; 12 import org.sophie2.main.app.commons.book.B ookView;12 import org.sophie2.main.app.commons.book.BaseBookView; 13 13 import org.sophie2.main.app.commons.book.BookViewOptions; 14 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 14 15 import org.sophie2.main.app.commons.page.PageWorkArea; 15 16 import org.sophie2.main.app.commons.util.AppViewUtil; 16 17 import org.sophie2.main.app.halos.common.AppHaloUtil; … … 45 46 @Override 46 47 protected boolean computeVisible() { 47 48 48 B ookView bookView = AppViewUtil.getCurrentBookView(this);49 BaseBookView bookView = AppViewUtil.getCurrentBaseBookView(this); 49 50 if (bookView == null) { 50 51 return false; 51 52 } 52 53 53 54 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; 58 57 } 59 58 } -
modules/org.sophie2.base.model.resources.r4/src/main/java/org/sophie2/base/model/resources/r4/resources/ResourceR4.java
136 136 */ 137 137 public static final Key<URI> KEY_IMPORT_ORIGIN = new SimpleKey<URI>( 138 138 "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); 139 145 146 140 147 // TODO Consider adding meta keys for local and remote targets if necessary. 141 148 /** 142 149 * 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
4 4 import org.sophie2.base.layout.model.ListPaletteItem; 5 5 import org.sophie2.base.model.book.BookH; 6 6 import org.sophie2.base.model.book.ElementH; 7 import org.sophie2.base.model.book.actions.RemoveResourceAction; 7 8 import org.sophie2.base.model.book.resource.r4.BookR4; 8 9 import org.sophie2.base.model.resources.r4.ResourceRefList; 9 10 import org.sophie2.base.model.resources.r4.ResourceRefR4; … … 16 17 import org.sophie2.core.mvc.LogicR3; 17 18 import org.sophie2.core.mvc.OperationDef; 18 19 import org.sophie2.core.mvc.events.EventR3; 20 import org.sophie2.main.app.commons.book.BaseBookDocView; 19 21 import org.sophie2.main.app.commons.book.BaseBookView; 20 import org.sophie2.main.app.commons.book.BaseBookDocView;21 22 import org.sophie2.main.app.commons.book.BookView; 22 23 import org.sophie2.main.app.commons.element.ElementView; 23 24 import org.sophie2.main.app.commons.page.RootPageView; 24 25 import org.sophie2.main.app.commons.util.AppViewUtil; 25 26 import org.sophie2.main.dialogs.input.ConfirmDialogInput; 26 27 import org.sophie2.main.dialogs.input.DialogUtils; 27 import org.sophie2.main.func.resources.actions.RemoveResourceAction;28 28 import org.sophie2.main.func.resources.actions.RemoveTemplateAction; 29 29 import org.sophie2.main.func.resources.view.ResourceDetailsPalette; 30 30 import 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
5 5 import org.sophie2.base.skins.SkinElementId; 6 6 import org.sophie2.base.visual.skins.ElementPartCreator; 7 7 import org.sophie2.base.visual.skins.SkinPartDef; 8 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 8 9 import org.sophie2.main.app.menus.AppMenuItem; 9 10 10 11 /** … … 25 26 26 27 27 28 @Override 28 protected boolean computeEnabled() { 29 protected boolean computeEnabled() { 29 30 return getCurrentBookDocView() != null 30 31 && !getCurrentBookDocView().bookView().get().getViewOptions().isPreviewMode() 31 && getCurrentBookDocView().bookView().get().getViewOptions(). isShowControls();32 && getCurrentBookDocView().bookView().get().getViewOptions().getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0; 32 33 } 33 34 } -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/page/PageWorkArea.java
150 150 sub.add(getPageNotAvailableElement()); 151 151 } 152 152 153 // if (getRootPageView()!= null) {154 // sub.add(getRootPageView().sceneElement().get());155 // } else {156 // System.out.println("No root page");157 // }158 153 sub.add(selectionBoundsElement().get()); 159 154 sub.add(selectionDragElement().get()); 160 155 if (!bookView().get().getViewOptions().isPreviewMode()) { -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/shared/MainHaloMenu.java
88 88 // we are not in preview mode. 89 89 if (pwa.getSel().getSelected().size() == 0) { 90 90 // nothing is selected 91 if (!viewOptions.isShow Controls()) {91 if (!viewOptions.isShowViewControls()) { 92 92 // show controls view option is off. 93 93 return false; 94 94 } -
modules/org.sophie2.main.func.templates/src/main/java/org/sophie2/main/func/templates/page/PageTemplatesPalette.java
27 27 import org.sophie2.core.prolib.interfaces.Prop; 28 28 import org.sophie2.main.app.commons.app.AppMainWindow; 29 29 import org.sophie2.main.app.commons.book.BaseBookDocView; 30 import org.sophie2.main.app.commons.book.BookViewOptions; 30 31 import org.sophie2.main.app.commons.book.SinglePageBookDocView; 32 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 31 33 import org.sophie2.main.app.commons.util.AppViewUtil; 32 34 33 35 /** … … 223 225 224 226 SinglePageBookDocView window = 225 227 AppViewUtil.getView(mainWindow, newAccess, SinglePageBookDocView.class); 228 window.bookView().get().setViewOptions( 229 new BookViewOptions(1.0f, false, true, false, true, BookEditLevel.PAGE)); 226 230 window.initPageRef(bookToTemplateRef); 231 window.initDeletePageOnClose(false); 227 232 mainWindow.documents().add(window); 228 233 mainWindow.currentDocument().set(window); 229 234 -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/app/DocumentsLogic.java
2 2 3 3 import org.sophie2.base.dialogs.DialogManager; 4 4 import org.sophie2.base.layout.impl.DefaultDocView; 5 import org.sophie2.base.model.book.actions.RemoveResourceAction; 5 6 import org.sophie2.base.model.resources.r4.ResourceRefR4; 6 7 import org.sophie2.base.model.resources.r4.access.ResourceAccess; 8 import org.sophie2.base.model.resources.r4.changes.AutoAction; 9 import org.sophie2.base.skins.Message; 7 10 import org.sophie2.core.logging.SophieLog; 8 11 import org.sophie2.core.modularity.SortKey; 9 12 import org.sophie2.core.mvc.EventFilterBuilder; … … 12 15 import org.sophie2.core.mvc.OperationDef; 13 16 import org.sophie2.core.mvc.events.EventR3; 14 17 import org.sophie2.main.app.commons.book.BookDocView; 18 import org.sophie2.main.app.commons.book.SinglePageBookDocView; 15 19 import org.sophie2.main.app.commons.util.AppViewUtil; 16 20 import org.sophie2.main.app.commons.util.SaveDocUtil; 17 21 import org.sophie2.main.dialogs.input.ConfirmDialogInput; … … 62 66 return true; 63 67 } 64 68 }, 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 { 65 76 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 66 95 /** 67 96 * Handles a user request to close the document window. Asks for 68 97 * 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 diana11 */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 description20 * Description of the action.21 * @param significant22 * Significance of the action.23 * @param resourceRef24 * {@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 @Override34 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
1 package org.sophie2.extra.comment.actions; 2 3 import org.sophie2.base.commons.structures.ImmTreeList; 4 import org.sophie2.base.model.resources.r4.changes.AutoAction; 5 import org.sophie2.base.skins.Message; 6 import org.sophie2.extra.comment.model.Comment; 7 import 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 */ 14 public 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
9 9 import org.sophie2.base.visual.skins.ElementPartCreator; 10 10 import org.sophie2.base.visual.skins.SkinPartDef; 11 11 import org.sophie2.base.visual.skins.VisualElementDef; 12 import org.sophie2.main.app.commons.book.BaseBookView; 13 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 14 import org.sophie2.main.app.commons.util.AppViewUtil; 12 15 import org.sophie2.main.app.halos.common.AppHaloUtil; 13 16 import org.sophie2.main.app.halos.shared.MainHaloMenu; 14 17 … … 36 39 37 40 @Override 38 41 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; 40 49 } 41 50 42 51 @Override -
modules/org.sophie2.main.func.templates/src/main/java/org/sophie2/main/func/templates/actions/AddTransientPageAction.java
1 package org.sophie2.main.func.templates.actions; 2 3 import org.sophie2.base.commons.util.ImmList; 4 import org.sophie2.base.model.book.interfaces.CompositeElement; 5 import org.sophie2.base.model.book.resource.r4.PageR4; 6 import org.sophie2.base.model.book.timelines.ActivationChannel; 7 import org.sophie2.base.model.resources.r4.ResourceRefR4; 8 import org.sophie2.base.model.resources.r4.changes.AutoAction; 9 import org.sophie2.base.model.resources.r4.changes.ResourceChanger; 10 import org.sophie2.base.model.resources.r4.resources.ResourceR4; 11 import 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 */ 19 public 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
454 454 //This is needed to avoid accesses opened through redirects 455 455 if (resourcAccess.getRef().equals(resource.getRef().sub(ref))) { 456 456 ResourceH helper = ResourceH.getHelper(resourcAccess, ResourceH.class); 457 res.addAll(getDeepChildren(helper)); 457 if (!helper.isTransient()) { 458 res.addAll(getDeepChildren(helper)); 459 } 458 460 } 459 461 } 460 462 } … … 472 474 //This is needed to avoid accesses opened through redirects 473 475 if (resourceAccess.getRef().equals(resource.getRef().sub(ref))) { 474 476 ResourceH helper = ResourceH.getHelper(resourceAccess, ResourceH.class); 475 if (!(helper instanceof ElementH) ) {477 if (!(helper instanceof ElementH) && !helper.isTransient()) { 476 478 res.add(helper); 477 479 } 478 480 } -
modules/org.sophie2.main.func.templates/src/main/java/org/sophie2/main/func/templates/MainFuncTemplatesModule.java
67 67 SimpleOperation.fillExtensions(res, CompositeTemplateLogic.class); 68 68 69 69 SimpleOperation.fillExtensions(res, PageTemplatesPalette.PaletteLogic.class); 70 SimpleOperation.fillExtensions(res, FrameTemplatesPalette.PaletteLogic.class); 70 71 71 72 res.add(new SimpleSophieExtension<Dialog>(Dialog.class, 72 73 new ApplyPageTemplateDialog())); -
modules/org.sophie2.main.app.menus/src/main/java/org/sophie2/main/app/menus/file/SaveBookAsItem.java
9 9 import org.sophie2.base.skins.SkinElementId; 10 10 import org.sophie2.base.visual.skins.ElementPartCreator; 11 11 import org.sophie2.base.visual.skins.SkinPartDef; 12 import org.sophie2.main.app.commons.book.BookView; 12 import org.sophie2.main.app.commons.book.BaseBookView; 13 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 13 14 import org.sophie2.main.app.commons.util.AppViewUtil; 14 15 import org.sophie2.main.app.menus.AppMenuItem; 15 16 … … 33 34 34 35 @Override 35 36 protected boolean computeEnabled() { 36 B ookView bookView = AppViewUtil.getCurrentBookView(this);37 BaseBookView bookView = AppViewUtil.getCurrentBaseBookView(this); 37 38 return bookView != null && !bookView.getViewOptions().isPreviewMode() 38 && bookView.getViewOptions(). isShowControls();39 && bookView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0; 39 40 } 40 41 } -
modules/org.sophie2.main.func.links/src/main/java/org/sophie2/main/func/links/ElementLinksHaloButton.java
1 1 package org.sophie2.main.func.links; 2 2 3 import java.util.List;4 5 3 import org.sophie2.base.commons.skin.IconId; 6 4 import org.sophie2.base.commons.skin.IconsSet; 7 5 import org.sophie2.base.commons.util.ImageUtil; … … 11 9 import org.sophie2.base.visual.skins.RelatedChildren; 12 10 import org.sophie2.base.visual.skins.SkinPartDef; 13 11 import org.sophie2.base.visual.skins.VisualElementDef; 14 import org.sophie2.main.app.commons.element.ElementView; 12 import org.sophie2.main.app.commons.book.BookViewOptions; 13 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 15 14 import org.sophie2.main.app.commons.page.PageWorkArea; 16 15 import org.sophie2.main.app.halos.common.AppHaloUtil; 17 16 import org.sophie2.main.app.halos.shared.MainHaloMenu; … … 42 41 43 42 @Override 44 43 protected boolean computeVisible() { 45 PageWorkArea pwa = AppHaloUtil.getWorkArea(this); 44 if (AppHaloUtil.getSingleFrameView(this) != null) { 45 return true; 46 } 46 47 47 if (pwa == null) { 48 PageWorkArea pwa = AppHaloUtil.getWorkArea(this); 49 if (pwa == null || pwa.getRootPageView() == null || pwa.getSel().getSelected().size() != 0) { 48 50 return false; 49 51 } 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; 54 55 } 55 56 56 57 @Override -
modules/org.sophie2.main.app.menus/src/main/java/org/sophie2/main/app/menus/file/BookPropertiesItem.java
5 5 import org.sophie2.base.skins.SkinElementId; 6 6 import org.sophie2.base.visual.skins.ElementPartCreator; 7 7 import org.sophie2.base.visual.skins.SkinPartDef; 8 import org.sophie2.main.app.commons.book.BookView; 8 import org.sophie2.main.app.commons.book.BaseBookView; 9 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 9 10 import org.sophie2.main.app.commons.util.AppViewUtil; 10 11 import org.sophie2.main.app.menus.AppMenuItem; 11 12 … … 28 29 29 30 @Override 30 31 protected boolean computeEnabled() { 31 B ookView bookView = AppViewUtil.getCurrentBookView(this);32 BaseBookView bookView = AppViewUtil.getCurrentBaseBookView(this); 32 33 return bookView != null && !bookView.getViewOptions().isPreviewMode() 33 && bookView.getViewOptions(). isShowControls();34 && bookView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0; 34 35 } 35 36 } -
modules/org.sophie2.main.app.layout/src/main/java/org/sophie2/main/app/layout/left/pages/PagePreviewPalette.java
46 46 import org.sophie2.main.app.commons.book.BaseBookDocView; 47 47 import org.sophie2.main.app.commons.book.BookDocView; 48 48 import org.sophie2.main.app.commons.book.BookView; 49 import org.sophie2.main.app.commons.book.BookViewOptions; 50 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 49 51 import org.sophie2.main.app.commons.element.ElementView; 50 52 import org.sophie2.main.app.commons.page.RootPageView; 51 53 import org.sophie2.main.app.commons.util.AppViewUtil; … … 590 592 static boolean shouldShowButtons(VisualElement button) { 591 593 592 594 BaseBookDocView docView = AppViewUtil.getCurrentBookDocView(button); 595 if (docView == null || docView.bookView().get() == null) { 596 return false; 597 } 598 BookViewOptions viewOptions = docView.bookView().get().getViewOptions(); 593 599 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; 597 602 } 598 603 599 604 /** -
modules/org.sophie2.extra.comment/src/test/java/org/sophie2/extra/comment/logic/CommentLogicTest.java
47 47 import org.sophie2.main.app.commons.book.BookDocView; 48 48 import org.sophie2.main.app.commons.book.BookView; 49 49 import org.sophie2.main.app.commons.book.BookViewOptions; 50 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 50 51 import org.sophie2.main.app.commons.book.panels.PreviewModePanel; 51 52 import org.sophie2.main.app.commons.testing.AppTestBase; 52 53 import org.sophie2.main.app.menus.MainAppMenusModule; … … 67 68 68 69 ResourceAccess bookAccess = makeBookAccess(); 69 70 BookDocView window = new BookDocView(bookAccess, new BookViewOptions(1, true, false, false, 70 true ));71 true, BookEditLevel.BOOK)); 71 72 getAppMainWindow().documents().add(window); 72 73 getAppMainWindow().currentDocument().set(window); 73 74 } -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/frame/RightSideHaloMenu.java
4 4 import org.sophie2.base.visual.skins.RelatedChildren; 5 5 import org.sophie2.base.visual.skins.VisualElementDef; 6 6 import org.sophie2.main.app.commons.app.AppMainWindow; 7 import org.sophie2.main.app.commons.book.BookViewOptions; 8 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 7 9 import org.sophie2.main.app.commons.page.PageWorkArea; 8 10 import org.sophie2.main.app.halos.common.AppHaloUtil; 9 11 import org.sophie2.main.app.halos.shared.SelectionHaloMenu; … … 25 27 26 28 @Override 27 29 protected boolean computeVisible() { 30 if (AppHaloUtil.getSingleFrameView(this) == null) { 31 return false; 32 } 33 28 34 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) { 35 36 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; 39 41 } 40 42 41 43 } -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/book/BookViewOptions.java
12 12 * </ul> 13 13 */ 14 14 @Immutable 15 public class BookViewOptions { 15 public class BookViewOptions { 16 16 17 18 17 private final float zoom; 19 18 private final boolean previewMode; 20 19 private final boolean outlineFrames; 21 20 private final boolean outlineConnections; 22 private final boolean showControls; 21 private final boolean showViewControls; 22 private final BookEditLevel bookEditLevel; 23 23 24 24 /** 25 25 * The default book view options that should be used in reader mode. 26 26 */ 27 27 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); 29 29 30 30 /** 31 31 * The default book view options that should be used in author mode. 32 32 */ 33 33 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); 35 35 36 36 /** 37 37 * The default book view options that should be used for the desktop book. 38 38 */ 39 39 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 42 42 /** 43 43 * Creates a new <code>BookViewOptions</code> object by the given 44 44 * parameters. … … 53 53 * Whether the connections between frames should be outlined. 54 54 * @param showControls 55 55 * Whether book controls should be shown. 56 * @param bookEditLevel 57 * The book edit level. 56 58 */ 57 59 public BookViewOptions(float zoom, boolean previewMode, boolean outlineFrames, 58 boolean outlineConnections, boolean showControls ) {60 boolean outlineConnections, boolean showControls, BookEditLevel bookEditLevel) { 59 61 super(); 60 62 this.zoom = zoom; 61 63 this.previewMode = previewMode; 62 64 this.outlineFrames = outlineFrames; 63 65 this.outlineConnections = outlineConnections; 64 this.showControls = showControls; 66 this.showViewControls = showControls; 67 this.bookEditLevel = bookEditLevel; 65 68 } 66 69 67 70 /** 68 71 * Gets the zoom level. 69 72 * … … 107 110 108 111 109 112 /** 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}. 112 115 * 113 116 * @return 114 117 * Whether the controls of the view are shown. 115 118 */ 116 public boolean isShow Controls() {117 return this.show Controls;119 public boolean isShowViewControls() { 120 return this.showViewControls; 118 121 } 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 } 119 132 120 133 /** 121 134 * Returns a <code>BookViewOptions</code> object which has the same … … 134 147 return this; 135 148 } 136 149 return new BookViewOptions(newZoom, this.previewMode, this.outlineFrames, 137 this.outlineConnections, this.show Controls);150 this.outlineConnections, this.showViewControls, this.bookEditLevel); 138 151 } 139 152 140 153 /** … … 154 167 return this; 155 168 } 156 169 return new BookViewOptions(this.zoom, this.previewMode, outlineFrames, 157 this.outlineConnections, this.show Controls);170 this.outlineConnections, this.showViewControls, this.bookEditLevel); 158 171 } 159 172 160 173 /** … … 175 188 return this; 176 189 } 177 190 return new BookViewOptions(this.zoom, this.previewMode, this.outlineFrames, 178 outlineConnections, this.show Controls);191 outlineConnections, this.showViewControls, this.bookEditLevel); 179 192 } 180 193 181 194 /** … … 188 201 * The modified options. 189 202 */ 190 203 public BookViewOptions modifyShowControls(boolean controlsShown) { 191 if (this.show Controls == controlsShown) {204 if (this.showViewControls == controlsShown) { 192 205 return this; 193 206 } 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); 196 209 197 210 } 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 } 198 230 199 231 @Override 200 232 public int hashCode() { … … 203 235 result = prime * result + (this.outlineConnections ? 1231 : 1237); 204 236 result = prime * result + (this.outlineFrames ? 1231 : 1237); 205 237 result = prime * result + (this.previewMode ? 1231 : 1237); 206 result = prime * result + (this.show Controls ? 1231 : 1237);238 result = prime * result + (this.showViewControls ? 1231 : 1237); 207 239 result = prime * result + Float.floatToIntBits(this.zoom); 240 result = prime * result + this.bookEditLevel.hashCode(); 208 241 return result; 209 242 } 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 { 223 251 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. 229 253 254 /** 255 * Only a single frame can be edited. 256 */ 257 FRAME, 230 258 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 } 232 269 } 270 No newline at end of file -
modules/org.sophie2.extra.comment/src/main/java/org/sophie2/extra/comment/logic/CommentHudLogic.java
1 1 package org.sophie2.extra.comment.logic; 2 2 3 3 import org.sophie2.base.bound.BoundControl.EventIds; 4 import org.sophie2.base.model.book. interfaces.ResourceFrame;4 import org.sophie2.base.model.book.actions.ChangeMainResourceAction; 5 5 import org.sophie2.base.model.resources.r4.ResourceRefR4; 6 6 import org.sophie2.base.model.resources.r4.changes.AutoAction; 7 7 import org.sophie2.base.skins.Message; … … 52 52 ResourceRefR4 streamRef = ResourceRefR4.make(input); 53 53 54 54 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()); 65 58 } 66 59 67 60 return true; -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/frame/MainTitleBarHalo.java
29 29 import org.sophie2.base.model.resources.r4.ResourceRefR4; 30 30 import org.sophie2.base.model.resources.r4.access.ResourceAccess; 31 31 import org.sophie2.base.model.resources.r4.changes.AutoAction; 32 import org.sophie2.base.model.resources.r4.changes.ResourceChanger; 32 33 import org.sophie2.base.model.resources.r4.keys.TemplatedKey.Mode; 33 34 import org.sophie2.base.scene.SceneVisual; 34 35 import org.sophie2.base.scene.helpers.SceneHelper; … … 50 51 import org.sophie2.main.app.commons.element.GroupView; 51 52 import org.sophie2.main.app.commons.frame.FrameView; 52 53 import org.sophie2.main.app.commons.page.PageWorkArea; 53 import org.sophie2.main.app.halos.actions.SetLocationAction;54 54 import org.sophie2.main.app.halos.common.AppHaloUtil; 55 55 import org.sophie2.main.app.halos.shared.MainHaloMenu; 56 56 … … 191 191 protected PageH compute() { 192 192 PageH res = null; 193 193 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) { 195 196 res = pwa.getRootPageView().model().get(); 196 197 } 197 198 return res; … … 325 326 final ResourceRefR4 frameRef = refs.get(i); 326 327 327 328 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); 329 331 final TimePos time = times.get(i); 330 332 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); 335 341 } 336 342 } 337 343 -
modules/org.sophie2.main.func.timelines/src/main/java/org/sophie2/main/func/timelines/hud/TimelinesHudButton.java
9 9 import org.sophie2.base.visual.skins.RelatedChildren; 10 10 import org.sophie2.base.visual.skins.SkinPartDef; 11 11 import org.sophie2.base.visual.skins.VisualElementDef; 12 import org.sophie2.main.app.commons.frame.FrameView; 12 import org.sophie2.main.app.commons.book.BookViewOptions; 13 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 13 14 import org.sophie2.main.app.commons.page.PageWorkArea; 14 15 import org.sophie2.main.app.halos.common.AppHaloUtil; 15 16 import org.sophie2.main.app.halos.shared.MainHaloMenu; … … 45 46 46 47 @Override 47 48 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) { 56 50 return true; 57 51 } 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; 65 56 } 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; 68 60 } 69 61 70 62 } -
modules/org.sophie2.base.model.book/src/main/java/org/sophie2/base/model/book/actions/ChangeMainResourceAction.java
1 package org.sophie2.base.model.book.actions; 2 3 import org.sophie2.base.model.book.interfaces.ResourceFrame; 4 import org.sophie2.base.model.resources.r4.ResourceRefR4; 5 import org.sophie2.base.model.resources.r4.changes.AutoAction; 6 import org.sophie2.base.skins.Message; 7 8 /** 9 * An {@link AutoAction} that changes the main resource of a frame. 10 * 11 * @author deni 12 */ 13 public 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
22 22 import org.sophie2.core.mvc.OperationDef; 23 23 import org.sophie2.core.mvc.events.EventR3; 24 24 import org.sophie2.main.app.commons.book.BaseBookDocView; 25 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 25 26 import org.sophie2.main.app.commons.element.ElementView; 26 27 import org.sophie2.main.app.commons.frame.FrameView; 27 28 import org.sophie2.main.app.commons.page.MainPageView; … … 102 103 103 104 PageWorkArea workArea = event.getSource(PageWorkArea.class); 104 105 MainPageView pageView = workArea.getRootPageView().mainPartView().get(); 105 if (pageView.getViewOptions().isPreviewMode()) { 106 if (pageView.getViewOptions().isPreviewMode() 107 || pageView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.PAGE) < 0) { 106 108 return false; 107 109 } 108 110 -
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;1 package org.sophie2.base.model.book.actions; 2 2 3 3 import org.sophie2.base.model.resources.r4.ResourceRefR4; 4 4 import org.sophie2.base.model.resources.r4.changes.AutoAction; 5 import org.sophie2.base.model.resources.r4.changes.ResourceChanger; 5 6 import org.sophie2.base.skins.Message; 6 7 7 8 /** 8 9 * {@link AutoAction} for deleting a resource. 10 * If the resource to delete doesn't exist, the action will do nothing. 9 11 * 10 12 * @author diana 11 13 */ … … 32 34 33 35 @Override 34 36 public void performAuto() { 35 getChanger().removeResource(this.resourceRef); 37 ResourceChanger ch = getChanger(); 38 if (ch.hasChild(this.resourceRef)) { 39 ch.removeResource(this.resourceRef); 40 } 36 41 } 37 42 } 43 -
modules/org.sophie2.extra.comment/src/main/java/org/sophie2/extra/comment/logic/CommentLogic.java
2 2 3 3 import org.sophie2.base.commons.structures.ImmTreeList; 4 4 import org.sophie2.base.dialogs.DialogManager; 5 import org.sophie2.base.model.book. interfaces.ResourceFrame;5 import org.sophie2.base.model.book.actions.ChangeMainResourceAction; 6 6 import org.sophie2.base.model.resources.r4.LocationPrefix; 7 7 import org.sophie2.base.model.resources.r4.ResourceRefR4; 8 import org.sophie2.base.model.resources.r4.access.ResourceAccess; 8 9 import org.sophie2.base.model.resources.r4.changes.AutoAction; 9 10 import org.sophie2.base.skins.Message; 10 11 import org.sophie2.base.visual.interaction.InputEventR3; … … 12 13 import org.sophie2.core.mvc.EventFilterBuilder; 13 14 import org.sophie2.core.mvc.OperationDef; 14 15 import org.sophie2.core.mvc.events.EventR3; 16 import org.sophie2.extra.comment.actions.SetStreamCommentsAction; 15 17 import org.sophie2.extra.comment.dialogs.AddCommentDialog; 16 18 import org.sophie2.extra.comment.model.Comment; 17 import org.sophie2.extra.comment.model.CommentStream;18 19 import org.sophie2.extra.comment.model.CommentStreamH; 19 20 import org.sophie2.extra.comment.view.AddCommentView; 20 21 import org.sophie2.extra.comment.view.CommentEntryView; … … 150 151 return false; 151 152 } 152 153 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()); 154 157 155 @Override156 public void performAuto() {157 getChanger().setRaw(158 CommentStream.KEY_COMMENTS, newComments);159 }160 }.register(stream.getAccess());161 162 158 return true; 163 159 } 164 160 }, … … 209 205 return true; 210 206 } 211 207 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()); 213 211 214 @Override215 public void performAuto() {216 getChanger().setRaw(217 CommentStream.KEY_COMMENTS, newComments);218 }219 }.register(stream.getAccess());220 221 212 return true; 222 213 } 223 214 … … 259 250 final ResourceRefR4 valueToSet = 260 251 frameView.model().get().getCommentStreamH().getRef(); 261 252 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); 268 258 269 259 isCopyModified = true; 270 260 } -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/shared/AddTemplateHaloButton.java
35 35 import org.sophie2.core.mvc.OperationDef; 36 36 import org.sophie2.core.mvc.events.EventR3; 37 37 import org.sophie2.main.app.commons.book.BaseBookView; 38 import org.sophie2.main.app.commons.book.BookViewOptions; 39 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 38 40 import org.sophie2.main.app.commons.dialogs.CreateTemplateDialog; 39 41 import org.sophie2.main.app.commons.dialogs.TemplateInfo; 40 42 import org.sophie2.main.app.commons.element.ElementView; … … 79 81 } 80 82 81 83 @Override 82 protected boolean computeVisible() { 83 84 if (AppHaloUtil.getSingleFrameView(this) != null) { 85 return true; 86 } 87 84 protected boolean computeVisible() { 88 85 PageWorkArea pwa = AppHaloUtil.getWorkArea(this); 89 86 if (pwa == null || pwa.getRootPageView() == null) { 90 87 return false; 91 88 } 92 89 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 93 97 if (pwa.getSel().getSelected().size() != 0) { 94 98 return false; 99 } 100 if (TemplateUtil.isPageTemplate(book, pwa.getRootPageView().model().get().getRef())) { 101 return false; 95 102 } 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; 99 106 } 100 107 101 108 @Override -
modules/org.sophie2.base.model.resources.r4/src/main/java/org/sophie2/base/model/resources/r4/model/ResourceModelPersister.java
40 40 @Override 41 41 public void persist(final ValueRef<ResourceModel> source, Storage storage, 42 42 PersistenceOptions options) throws IOException, IncorrectFormatException { 43 43 44 // used for loading 44 45 Map<Key<?>, Object> changes = new HashMap<Key<?>, Object>(); 45 46 … … 141 142 ResourceModel resourceModel = source.get(); 142 143 childModelRef.set(resourceModel.getSubModel(childKey)); 143 144 } 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 145 155 //Persists children of the resource 146 156 SophieLog.tracef("Persisting child %s", childName); 147 157 this.persist(childModelRef, storage.attribute(childName), options); -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/book/BaseBookDocView.java
232 232 233 233 modelSwing.setLayout(new BorderLayout()); 234 234 235 if (bookView().get().getViewOptions().isShow Controls()) {235 if (bookView().get().getViewOptions().isShowViewControls()) { 236 236 modelSwing.add(viewOptionsScrollPane().get().swingComponent(), BorderLayout.NORTH); 237 237 modelSwing.add(workAreaPane().get(), BorderLayout.CENTER); 238 238 } else { … … 270 270 271 271 @Override 272 272 protected void setup(JScrollPane res) { 273 if (bookView().get().getViewOptions().isShow Controls()) {273 if (bookView().get().getViewOptions().isShowViewControls()) { 274 274 res.setViewportView(workArea().get().swingComponent().get()); 275 275 } 276 276 res.validate(); -
modules/org.sophie2.base.model.resources.r4/src/test/java/org/sophie2/base/model/resources/r4/model/TransientResourcesPersistenceTest.java
1 package org.sophie2.base.model.resources.r4.model; 2 3 import java.io.IOException; 4 5 import javax.swing.SwingUtilities; 6 7 import org.junit.Test; 8 import org.sophie2.base.commons.util.position.ImmSize; 9 import org.sophie2.base.config.BaseConfigModule; 10 import org.sophie2.base.model.resources.r4.BaseModelResourcesR4Module; 11 import org.sophie2.base.model.resources.r4.ResourceRefR4; 12 import org.sophie2.base.model.resources.r4.ResourceTestModule; 13 import org.sophie2.base.model.resources.r4.access.AppLocator; 14 import org.sophie2.base.model.resources.r4.access.ResourceAccess; 15 import org.sophie2.base.model.resources.r4.changes.AutoAction; 16 import org.sophie2.base.model.resources.r4.changes.ResourceChanger; 17 import org.sophie2.base.model.resources.r4.dummies.helpers.DummyBookHelper; 18 import org.sophie2.base.model.resources.r4.dummies.helpers.DummyPageHelper; 19 import org.sophie2.base.model.resources.r4.dummies.resources.DummyBook; 20 import org.sophie2.base.model.resources.r4.keys.RootKey; 21 import org.sophie2.base.model.resources.r4.resources.ResourceR4; 22 import org.sophie2.base.persistence.BasePersistenceModule; 23 import org.sophie2.base.persistence.commons.PersistenceOptions; 24 import org.sophie2.base.persistence.commons.PersistenceUtil; 25 import org.sophie2.base.persistence.persister.IncorrectFormatException; 26 import org.sophie2.base.persistence.persister.MasterPersister; 27 import org.sophie2.base.persistence.ref.ValueRef; 28 import org.sophie2.base.persistence.storage.Storage; 29 import org.sophie2.base.skins.BaseSkinsModule; 30 import org.sophie2.base.skins.Message; 31 import org.sophie2.core.modularity.FakeModuleRegistry; 32 import org.sophie2.core.testing.TestBase; 33 34 /** 35 * Test for the persistence of transient resources. 36 * 37 * @author deni 38 */ 39 public 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
5 5 import org.sophie2.base.skins.SkinElementId; 6 6 import org.sophie2.base.visual.skins.ElementPartCreator; 7 7 import org.sophie2.base.visual.skins.SkinPartDef; 8 import org.sophie2.main.app.commons.book.BookView; 8 import org.sophie2.main.app.commons.book.BaseBookView; 9 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 9 10 import org.sophie2.main.app.commons.util.AppViewUtil; 10 11 import org.sophie2.main.app.menus.AppMenuItem; 11 12 … … 28 29 29 30 @Override 30 31 protected boolean computeEnabled() { 31 B ookView bookView = AppViewUtil.getCurrentBookView(this);32 BaseBookView bookView = AppViewUtil.getCurrentBaseBookView(this); 32 33 return bookView != null && !bookView.getViewOptions().isPreviewMode() 33 && bookView.getViewOptions(). isShowControls();34 && bookView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0; 34 35 } 35 36 } -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/element/ElementLogic.java
44 44 import org.sophie2.main.app.commons.app.AppMainWindow; 45 45 import org.sophie2.main.app.commons.book.BaseBookDocView; 46 46 import org.sophie2.main.app.commons.book.BaseBookView; 47 import org.sophie2.main.app.commons.book.BookViewOptions; 48 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 47 49 import org.sophie2.main.app.commons.frame.FrameView; 48 50 import org.sophie2.main.app.commons.page.PageWorkArea; 49 51 import org.sophie2.main.app.commons.page.PwaSelector; … … 148 150 if (docView == null) { 149 151 return false; 150 152 } 153 154 BookViewOptions viewOptions = docView.bookView().get().getViewOptions(); 155 if (viewOptions.isPreviewMode() 156 || viewOptions.getBookEditLevel().compareTo(BookEditLevel.PAGE) < 0) { 157 return false; 158 } 159 151 160 PageWorkArea workArea = docView.workArea().get(); 152 161 153 162 ElementView parentView = workArea.getSel().getEditScope(); … … 222 231 parentCh.setRaw(CompositeElement.KEY_SUB_ELEMENTS, newChannels); 223 232 } 224 233 }.register(book.getAccess()); 234 235 return true; 225 236 } 226 237 227 238 return false; … … 305 316 306 317 private static void handleCutOrCopy(VisualElement source, Operation operation) { 307 318 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) { 309 322 return; 310 323 } 311 324 PageWorkArea workArea = docView.workArea().get(); -
modules/org.sophie2.main.app.halos/src/main/java/org/sophie2/main/app/halos/actions/SetLocationAction.java
4 4 import org.sophie2.base.media.TimePos; 5 5 import org.sophie2.base.model.book.interfaces.MemberElement; 6 6 import org.sophie2.base.model.book.timelines.LocationChannel; 7 import org.sophie2.base.model.resources.r4.ResourceRefR4;8 7 import org.sophie2.base.model.resources.r4.changes.AutoAction; 9 8 import org.sophie2.base.model.resources.r4.changes.ResourceChanger; 10 9 import org.sophie2.base.skins.Message; … … 20 19 public final class SetLocationAction extends AutoAction { 21 20 22 21 private final ImmPoint newValue; 23 private final ResourceRefR4 frameRef;24 22 private final LocationChannel oldChanel; 25 23 private final TimePos time; 26 24 … … 33 31 * The significance of the action. 34 32 * @param newValue 35 33 * The new location. 36 * @param frameRef37 * The frame of the halo.38 34 * @param oldChanel 39 35 * The old channel of the halo. 40 36 * @param time 41 37 * The time when moved. 42 38 */ 43 39 public SetLocationAction(Message description, boolean significant, 44 ImmPoint newValue, ResourceRefR4 frameRef, LocationChannel oldChanel, 45 TimePos time) { 40 ImmPoint newValue, LocationChannel oldChanel, TimePos time) { 46 41 super(description, significant); 47 42 this.newValue = newValue; 48 this.frameRef = frameRef;49 43 this.oldChanel = oldChanel; 50 44 this.time = time; 51 45 } 52 46 53 47 @Override 54 48 public void performAuto() { 55 ResourceChanger subChanger = getChanger().getSub(this.frameRef);49 ResourceChanger changer = getChanger(); 56 50 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)); 60 53 } 61 54 62 55 } -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/book/SinglePageBookDocView.java
2 2 3 3 import org.sophie2.base.model.book.BookH; 4 4 import org.sophie2.base.model.book.PageH; 5 import org.sophie2.base.model.book.actions.ChangeTitleAction; 5 6 import org.sophie2.base.model.resources.r4.ResourceRefR4; 6 7 import org.sophie2.base.model.resources.r4.access.AccessOptions; 7 8 import 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;10 9 import org.sophie2.base.skins.Message; 10 import org.sophie2.core.prolib.interfaces.Prop; 11 11 import org.sophie2.main.app.commons.app.AppMainWindow; 12 12 import org.sophie2.main.app.commons.util.AppViewUtil; 13 13 … … 48 48 SinglePageBookView view = new SinglePageBookView(getAccess(), viewOptions); 49 49 getBean().init(bookView(), view); 50 50 } 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 } 51 73 52 74 /** 53 75 * Initializes the page that should be displayed. … … 59 81 ((SinglePageBookView)bookView().get()).initPageRef(pageRef); 60 82 } 61 83 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 62 94 @Override 63 95 protected String computeTitle() { 64 96 if (model() != null) { … … 83 115 SinglePageBookDocView newView = new SinglePageBookDocView(clone.getAccess(), 84 116 BookViewOptions.DEFAULT_READER); 85 117 ResourceRefR4 pageRef = ((SinglePageBookView) bookView().get()).pageRef().get(); 118 newView.initDeletePageOnClose(false); 86 119 newView.initPageRef(pageRef); 87 120 88 121 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()); 97 125 98 126 return newView; 99 127 } -
modules/org.sophie2.main.app.menus/src/main/java/org/sophie2/main/app/menus/insert/InsertMenu.java
7 7 import org.sophie2.base.visual.skins.SkinPartDef; 8 8 import org.sophie2.main.app.commons.book.BaseBookView; 9 9 import org.sophie2.main.app.commons.book.BookView; 10 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 10 11 import org.sophie2.main.app.menus.AppMenu; 11 12 12 13 /** … … 39 40 */ 40 41 // TODO: Why is this method here ??? 41 42 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; 43 45 } 44 46 } -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/element/ElementView.java
33 33 import org.sophie2.core.mvc.EventParams; 34 34 import org.sophie2.core.mvc.LogicR3; 35 35 import org.sophie2.core.prolib.annot.Own; 36 import org.sophie2.core.prolib.errors.NotAvailableException; 36 37 import org.sophie2.core.prolib.impl.AutoListProperty; 37 38 import org.sophie2.core.prolib.impl.AutoProperty; 38 39 import org.sophie2.core.prolib.interfaces.ListProp; … … 243 244 244 245 @Override 245 246 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 247 254 List<ElementView> elements = 248 255 new ArrayList<ElementView>(childElements.size()); 249 256 250 257 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); 254 261 } 255 262 return elements; 256 263 } -
modules/org.sophie2.main.func.templates/src/main/java/org/sophie2/main/func/templates/frame/FrameTemplatesPalette.java
9 9 import org.sophie2.base.dnd.SophieDragDropHandler; 10 10 import org.sophie2.base.layout.model.ListPalette; 11 11 import org.sophie2.base.layout.model.ListPaletteItem; 12 import org.sophie2.base.model.book.BookH; 12 13 import org.sophie2.base.model.book.FrameH; 14 import org.sophie2.base.model.book.PageH; 15 import org.sophie2.base.model.book.timelines.ActivationChannel; 13 16 import org.sophie2.base.model.resources.r4.ResourceRefR4; 14 17 import org.sophie2.base.model.resources.r4.access.ResourceAccess; 18 import org.sophie2.base.model.resources.r4.changes.AutoAction; 15 19 import org.sophie2.base.model.resources.r4.resources.ResourceH; 20 import org.sophie2.base.skins.Message; 16 21 import org.sophie2.base.skins.SkinElementId; 17 22 import org.sophie2.base.visual.BaseVisualElement; 18 23 import org.sophie2.base.visual.skins.ElementPartCreator; 19 24 import org.sophie2.base.visual.skins.SkinPartDef; 25 import org.sophie2.core.mvc.EventFilterBuilder; 20 26 import org.sophie2.core.mvc.EventParams; 21 27 import org.sophie2.core.mvc.LogicR3; 28 import org.sophie2.core.mvc.OperationDef; 29 import org.sophie2.core.mvc.events.EventR3; 22 30 import org.sophie2.core.prolib.impl.AutoProperty; 23 31 import org.sophie2.core.prolib.interfaces.Prop; 32 import org.sophie2.main.app.commons.app.AppMainWindow; 24 33 import org.sophie2.main.app.commons.book.BaseBookDocView; 34 import org.sophie2.main.app.commons.book.BookViewOptions; 35 import org.sophie2.main.app.commons.book.SinglePageBookDocView; 36 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 25 37 import org.sophie2.main.app.commons.util.AppViewUtil; 38 import org.sophie2.main.func.templates.actions.AddTransientPageAction; 26 39 40 27 41 /** 28 42 * Frames templates palette. Used to contain frame templates which could be 29 43 * applied to a frame by double clicking on an item in the list. … … 103 117 104 118 @Override 105 119 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); } 108 122 109 123 @Override 110 124 public void keyPressed(KeyEvent e) { … … 171 185 * Deletes a frame template. 172 186 */ 173 187 @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; 175 195 } 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 } 176 262 } -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/book/BookDocView.java
3 3 import org.sophie2.base.commons.util.position.ImmSize; 4 4 import org.sophie2.base.layout.impl.DefaultDocView; 5 5 import org.sophie2.base.model.book.BookH; 6 import org.sophie2.base.model.book.actions.ChangeTitleAction; 6 7 import org.sophie2.base.model.resources.r4.ResourceRefR4; 7 8 import org.sophie2.base.model.resources.r4.access.AccessOptions; 8 9 import org.sophie2.base.model.resources.r4.access.ResourceAccess; 9 import org.sophie2.base.model.resources.r4.changes.AutoAction;10 10 import org.sophie2.base.model.resources.r4.model.ResourceModel; 11 import org.sophie2.base.model.resources.r4.resources.ResourceR4;12 11 import org.sophie2.base.skins.Message; 13 12 import org.sophie2.main.app.commons.app.AppMainWindow; 14 13 import org.sophie2.main.app.commons.dialogs.BookInfo; … … 127 126 AccessOptions newOptions = getAccess().getAccessOptions().modifyViewId(); 128 127 BookH clone = model().get().clone(mainWindow.locator().get(), newOptions); 129 128 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()); 138 132 139 133 return new BookDocView(clone.getAccess(), BookViewOptions.DEFAULT_READER); 140 134 } -
modules/org.sophie2.base.model.resources.r4/src/main/java/org/sophie2/base/model/resources/r4/resources/ResourceH.java
244 244 return ResourceR4.KEY_SECURITY.get(getAccess()); 245 245 } 246 246 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 247 257 //TODO GET THIS OUT OF THIS MODULE SINCE IT IS NOT LOADED BY THE CORRECT CLASS LOADER 248 258 /** 249 259 * 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
42 42 import org.sophie2.main.app.commons.book.BaseBookDocView; 43 43 import org.sophie2.main.app.commons.book.BookView; 44 44 import org.sophie2.main.app.commons.book.BookViewOptions; 45 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 45 46 import org.sophie2.main.app.commons.element.ElementView; 46 47 import org.sophie2.main.app.commons.frame.FrameView; 47 48 import org.sophie2.main.app.commons.page.MainPageView; … … 204 205 205 206 if (bookDocView != null) { 206 207 BookViewOptions viewOptions = bookDocView.bookView().get().getViewOptions(); 207 if (!viewOptions.isPreviewMode()) { 208 if (!viewOptions.isPreviewMode() 209 && viewOptions.getBookEditLevel().compareTo(BookEditLevel.PAGE) >= 0) { 208 210 209 211 DndTransferable transferable = event.getEventParam( 210 212 ImportEventIds.DND_TRANSFERABLE_PARAM_INDEX, … … 341 343 public boolean handle(EventR3 event) { 342 344 PageWorkArea pwa = event.getSource(PageWorkArea.class); 343 345 MainPageView view = pwa.getRootPageView().mainPartView().get(); 344 if (view.getViewOptions().isPreviewMode()) { 346 if (view.getViewOptions().isPreviewMode() 347 || view.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.PAGE) < 0) { 345 348 return false; 346 349 } 347 350 -
modules/org.sophie2.main.func.templates/src/main/java/org/sophie2/main/func/templates/page/PageTemplateLogic.java
24 24 import org.sophie2.core.mvc.events.EventR3; 25 25 import org.sophie2.main.app.commons.book.BaseBookDocView; 26 26 import org.sophie2.main.app.commons.book.BaseBookView; 27 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 27 28 import org.sophie2.main.app.commons.element.ElementView; 28 29 import org.sophie2.main.app.commons.frame.FrameView; 29 30 import org.sophie2.main.app.commons.page.MainPageView; … … 64 65 DndPreImport.class); 65 66 66 67 RootPageView pageView = event.getSource(RootPageView.class); 67 if (pageView.getViewOptions().isPreviewMode()) { 68 if (pageView.getViewOptions().isPreviewMode() 69 || pageView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.PAGE) < 0) { 68 70 return false; 69 71 } 70 72 -
modules/org.sophie2.extra.func.embedded/src/main/java/org/sophie2/extra/func/embedded/actions/SetKeyAction.java
1 package org.sophie2.extra.func.embedded.actions; 2 3 import org.sophie2.base.model.resources.r4.changes.AutoAction; 4 import org.sophie2.base.model.resources.r4.keys.Key; 5 import 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 */ 14 public 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
9 9 import org.sophie2.base.skins.SkinElementId; 10 10 import org.sophie2.base.visual.skins.ElementPartCreator; 11 11 import org.sophie2.base.visual.skins.SkinPartDef; 12 import org.sophie2.main.app.commons.book.BookView; 12 import org.sophie2.main.app.commons.book.BaseBookView; 13 import org.sophie2.main.app.commons.book.BookViewOptions.BookEditLevel; 13 14 import org.sophie2.main.app.commons.util.AppViewUtil; 14 15 import org.sophie2.main.app.menus.AppMenuItem; 15 16 … … 33 34 34 35 @Override 35 36 protected boolean computeEnabled() { 36 B ookView bookView = AppViewUtil.getCurrentBookView(this);37 BaseBookView bookView = AppViewUtil.getCurrentBaseBookView(this); 37 38 return bookView != null && !bookView.getViewOptions().isPreviewMode() 38 && bookView.getViewOptions(). isShowControls();39 && bookView.getViewOptions().getBookEditLevel().compareTo(BookEditLevel.BOOK) >= 0; 39 40 } 40 41 } -
modules/org.sophie2.extra.func.embedded/src/main/java/org/sophie2/extra/func/embedded/view/EmbeddedBooksHud.java
27 27 import org.sophie2.core.mvc.events.EventR3; 28 28 import org.sophie2.core.prolib.impl.AutoProperty; 29 29 import org.sophie2.core.prolib.interfaces.Prop; 30 import org.sophie2.extra.func.embedded.actions.SetKeyAction; 30 31 import org.sophie2.extra.func.embedded.model.EmbeddedBookFrameH; 31 32 import org.sophie2.extra.func.embedded.model.EmbeddedBookFrameR4; 32 33 import org.sophie2.main.app.halos.common.AppHaloUtil; … … 304 305 final boolean shown = event.getEventParam( 305 306 EmbeddedBooksHud.EventIds.VISIBLE_PARAM_INDEX, Boolean.class); 306 307 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()); 314 310 315 311 return true; 316 312 } 317 } ;313 } 318 314 } 319 315 320 316 }