Ignore:
Timestamp:
01/28/14 16:46:08 (10 years ago)
Author:
csl14
Message:

Added Exploratory Search settings package; can now specify height and width or fullscreen mode for JfxBrowser and specify whitespace margins

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/actions/Misc.java

    r748 r766  
    11771177                FrameUtils.CreateDefaultProfile(UserSettings.UserName.get(), homeFrame);
    11781178        }
    1179 
    1180         /**
    1181          * Adds a text item to the cursor which is linked to a new frame with the mindmap active overlay.
    1182          */
    1183         public static void startMindmapSession() {
    1184                 // Replace any text item on cursor with link to a new mindmap
    1185                 FreeItems.getInstance().clear();
    1186                 Text text = DisplayIO.getCurrentFrame().addText(FrameMouseActions.getX(), FrameMouseActions.getY(), "Mindmap Session", null);
    1187                 text.setParent(DisplayIO.getCurrentFrame());
    1188                 FrameMouseActions.pickup(text);
    1189                 Frame frame = FrameIO.CreateNewFrame(text);
    1190                 text.setLink("" + frame.getNumber());
    1191                
    1192                 // Clear new frame and add active overlay and @old
    1193                 frame.removeAllItems(frame.getItems());
    1194                 frame.addText(1100, 50, "@ao: 2", null, "overlayset3");
    1195                 frame.addText(1100, 20, "@old", null);
    1196                
    1197                 FrameIO.SaveFrame(frame);
    1198         }
    11991179       
    12001180        /**
Note: See TracChangeset for help on using the changeset viewer.