Ignore:
Timestamp:
12/18/13 15:57:22 (10 years ago)
Author:
csl14
Message:

exploratory search pages now use buttons for back forward and home navigation; added images for such buttons; mindmap actions summon platonian shapes

File:
1 edited

Legend:

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

    r639 r645  
    14321432       
    14331433        /**
     1434         * Adds a text item to the cursor which is linked to a new frame with the mindmap active overlay.
     1435         */
     1436        public static void startMindmapSession() {
     1437                // Replace any text item on cursor with link to a new mindmap
     1438                FreeItems.getInstance().clear();
     1439                Text text = DisplayIO.getCurrentFrame().addText(FrameMouseActions.getX(), FrameMouseActions.getY(), "Mindmap Session", null);
     1440                text.setParent(DisplayIO.getCurrentFrame());
     1441                FrameMouseActions.pickup(text);
     1442                Frame frame = FrameIO.CreateNewFrame(text);
     1443                text.setLink("" + frame.getNumber());
     1444               
     1445                // Clear new frame and add active overlay
     1446                frame.removeAllItems(frame.getItems());
     1447                frame.addText(930, 50, "@ao: 2", null, "overlayset3");
     1448               
     1449                FrameIO.SaveFrame(frame);
     1450        }
     1451       
     1452        /**
    14341453         * Loads and runs an executable jar file in a new Thread
    14351454         * @param jar path to the jar file to run
Note: See TracChangeset for help on using the changeset viewer.