Changeset 885


Ignore:
Timestamp:
02/13/14 17:12:35 (10 years ago)
Author:
csl14
Message:

Made changes to Exploratory Search interface and minor fixes to various things

Location:
trunk/src/org/expeditee
Files:
10 edited

Legend:

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

    r877 r885  
    55import org.expeditee.gui.Frame;
    66import org.expeditee.gui.FrameIO;
     7import org.expeditee.gui.FrameKeyboardActions;
    78import org.expeditee.gui.FrameMouseActions;
    89import org.expeditee.gui.FreeItems;
    910import org.expeditee.items.Item;
     11import org.expeditee.items.Justification;
    1012import org.expeditee.items.Text;
    1113import org.expeditee.settings.exploratorysearch.ExploratorySearchSettings;
     
    3941                        }
    4042                       
    41                         Item linkToBrowserSession = DisplayIO.getCurrentFrame().addText(FrameMouseActions.getX(), FrameMouseActions.getY(), "Web Browser Session", null);
     43                        Text linkToBrowserSession = DisplayIO.getCurrentFrame().addText(FrameMouseActions.getX(), FrameMouseActions.getY(), " - Web Browser Session", null);
    4244                        linkToBrowserSession.setParent(DisplayIO.getCurrentFrame());
     45                        FrameKeyboardActions.AddDate(linkToBrowserSession);
    4346                        FrameMouseActions.pickup(linkToBrowserSession);
    4447                       
     
    5356                       
    5457                        // Add web browser active overlay and @old
    55                         Text t = (Text) frame.addText(1100, 50, "@ao: 2", null, "overlayset2");
    56                         t.setAnchorLeft(1087.0f);
    57                         t = (Text) frame.addText(1100, 20, "@old", null);
    58                         t.setAnchorLeft(1087.0f);
     58                        Text t = (Text) frame.addText(-150, 50, "@ao: 2", null, "overlayset2");
     59                        t.setAnchorRight(-100.0f);
     60                        t.setAnchorTop(50.0f);
     61                        t = (Text) frame.addText(-150, 50, "@old", null);
     62                        t.setFamily("Roboto Condensed");
     63                        t.setSize(15.0f);
     64                        t.setColor(null);
     65                        t.setWidth(116);
     66                        t.setJustification(Justification.right);
     67                        t.setLinkMark(false);
     68                        t.setAnchorLeft(9.0f);
     69                        t.setAnchorBottom(114.0f);
    5970                       
    6071                        Text wt;
     
    6879                        // Start Browser in fullscreen or default, depending on settings
    6980                        if(ExploratorySearchSettings.BrowserFullScreen.get()) {
    70                                 wt = frame.addText(144 + lm, 0 + tm, "@iw: org.expeditee.items.widgets.JfxBrowser "
    71                                                 + ("--anchorLeft " + lm + " --anchorRight " + rm + " --anchorTop " + (tm + ExploratorySearchSettings.BROWSER_VERT_OFFSET) + " --anchorBottom " + bm + " ")
    72                                                 + (Browser._theBrowser.getContentPane().getWidth() - lm - rm) + " "
     81                                wt = frame.addText(ExploratorySearchSettings.BROWSER_HORZ_OFFSET + lm, ExploratorySearchSettings.BROWSER_VERT_OFFSET + tm,
     82                                                "@iw: org.expeditee.items.widgets.JfxBrowser "
     83                                                + ("--anchorLeft " + (lm + ExploratorySearchSettings.BROWSER_HORZ_OFFSET) + " --anchorRight " + rm + " --anchorTop "
     84                                                + (ExploratorySearchSettings.BROWSER_VERT_OFFSET + tm) + " --anchorBottom " + bm + " ")
     85                                                + (Browser._theBrowser.getContentPane().getWidth() - ExploratorySearchSettings.BROWSER_HORZ_OFFSET - lm - rm) + " "
    7386                                                + (Browser._theBrowser.getContentPane().getHeight() - ExploratorySearchSettings.BROWSER_VERT_OFFSET - tm - bm) + " : " + url, null);
    74                                 System.err.println(wt.getText());
    75                         } else {
    76                                 wt = frame.addText(144 + lm, 0 + tm, "@iw: org.expeditee.items.widgets.JfxBrowser " +
     87                        } else {
     88                                wt = frame.addText(ExploratorySearchSettings.BROWSER_HORZ_OFFSET + lm, ExploratorySearchSettings.BROWSER_VERT_OFFSET + tm,
     89                                                "@iw: org.expeditee.items.widgets.JfxBrowser " +
    7790                                                (ExploratorySearchSettings.BrowserDefaultWidth.get() - lm - rm) + " " +
    7891                                                (ExploratorySearchSettings.BrowserDefaultHeight.get() - tm - bm) + " : " + url, null);
     
    91104                // Replace any text item on cursor with link to a new mindmap
    92105                FreeItems.getInstance().clear();
    93                 Text text = DisplayIO.getCurrentFrame().addText(FrameMouseActions.getX(), FrameMouseActions.getY(), "Mindmap Session", null);
     106                Text text = DisplayIO.getCurrentFrame().addText(FrameMouseActions.getX(), FrameMouseActions.getY(), " - Mindmap Session", null);
    94107                text.setParent(DisplayIO.getCurrentFrame());
     108                FrameKeyboardActions.AddDate(text);
    95109                FrameMouseActions.pickup(text);
    96110                Frame frame = FrameIO.CreateNewFrame(text);
     
    99113                // Clear new frame and add active overlay and @old
    100114                frame.removeAllItems(frame.getItems());
    101                 Text t = (Text) frame.addText(1100, 50, "@ao: 2", null, "overlayset3");
    102                 t.setAnchorLeft(1087.0f);
    103                 t = (Text) frame.addText(1100, 20, "@old", null);
    104                 t.setAnchorLeft(1087.0f);
     115                Text t = (Text) frame.addText(-150, 50, "@ao: 2", null, "overlayset3");
     116                t.setAnchorLeft(-150.0f);
     117                t.setAnchorTop(50.0f);
     118                t = (Text) frame.addText(-150, 50, "@old", null);
     119                t.setFamily("Roboto Condensed");
     120                t.setSize(15.0f);
     121                t.setColor(null);
     122                t.setWidth(116);
     123                t.setJustification(Justification.right);
     124                t.setLinkMark(false);
     125                t.setAnchorLeft(9.0f);
     126                t.setAnchorBottom(114.0f);
    105127               
    106128                FrameIO.SaveFrame(frame);
    107129        }
    108130       
     131        /**
     132         * Adds a text item to the cursor which is linked to a new frame with the web browser active overlay and a JavaFX browser.
     133         * @param caller The item that the action is called from
     134         */
     135        public static void startBrowserWithOverlay(Item caller) {
     136                try {
     137                        String url;
     138                       
     139                        Text urlItem = FreeItems.getTextAttachedToCursor();
     140                       
     141                        // If there is a text item attached to the cursor, use it as the URL to load
     142                        if (urlItem != null) {
     143                                url = urlItem.getText();
     144                               
     145                                // Remove the item, since the link to the browser session will added to the cursor
     146                                urlItem.delete();
     147                        } else {
     148                                // Otherwise use the home page specified in the settings
     149                                url = NetworkSettings.HomePage.get();
     150                        }
     151                       
     152                        Text linkToBrowserSession = DisplayIO.getCurrentFrame().addText(FrameMouseActions.getX(), FrameMouseActions.getY(), url, null);
     153                        linkToBrowserSession.setParent(DisplayIO.getCurrentFrame());
     154                        FrameMouseActions.pickup(linkToBrowserSession);
     155                       
     156                        // Create new frame
     157                        Frame frame = FrameIO.CreateNewFrame(linkToBrowserSession);
     158                       
     159                        // link this text item to new frame
     160                        linkToBrowserSession.setLink("" + frame.getNumber());
     161                       
     162                        // Remove everything from new frame
     163                        frame.removeAllItems(frame.getItems());
     164                       
     165                        // Add web browser active overlay and @old
     166                        Text t = (Text) frame.addText(-150, 50, "@ao: 2", null, "overlayset2");
     167                        t.setAnchorLeft(-150.0f);
     168                        t.setAnchorTop(50.0f);
     169                        t = (Text) frame.addText(-150, 50, "@old", null);
     170                        t.setFamily("Roboto Condensed");
     171                        t.setSize(15.0f);
     172                        t.setColor(null);
     173                        t.setWidth(116);
     174                        t.setJustification(Justification.right);
     175                        t.setLinkMark(false);
     176                        t.setAnchorLeft(9.0f);
     177                        t.setAnchorBottom(114.0f);
     178                       
     179                        Text wt;
     180                       
     181                        // Extract marigns from settings
     182                        int lm = ExploratorySearchSettings.BrowserLeftMargin.get();
     183                        int rm = ExploratorySearchSettings.BrowserRightMargin.get();
     184                        int tm = ExploratorySearchSettings.BrowserTopMargin.get();
     185                        int bm = ExploratorySearchSettings.BrowserBottomMargin.get();
     186                       
     187                        // Start Browser in fullscreen or default, depending on settings
     188                        if(ExploratorySearchSettings.BrowserFullScreen.get()) {
     189                                wt = frame.addText(ExploratorySearchSettings.BROWSER_HORZ_OFFSET + lm, ExploratorySearchSettings.BROWSER_VERT_OFFSET + tm,
     190                                                "@iw: org.expeditee.items.widgets.JfxBrowser "
     191                                                + ("--anchorLeft " + (lm + ExploratorySearchSettings.BROWSER_HORZ_OFFSET) + " --anchorRight " + rm + " --anchorTop "
     192                                                + (ExploratorySearchSettings.BROWSER_VERT_OFFSET + tm) + " --anchorBottom " + bm + " ")
     193                                                + (Browser._theBrowser.getContentPane().getWidth() - ExploratorySearchSettings.BROWSER_HORZ_OFFSET - lm - rm) + " "
     194                                                + (Browser._theBrowser.getContentPane().getHeight() - ExploratorySearchSettings.BROWSER_VERT_OFFSET - tm - bm) + " : " + url, null);
     195                        } else {
     196                                wt = frame.addText(ExploratorySearchSettings.BROWSER_HORZ_OFFSET + lm, ExploratorySearchSettings.BROWSER_VERT_OFFSET + tm,
     197                                                "@iw: org.expeditee.items.widgets.JfxBrowser " +
     198                                                (ExploratorySearchSettings.BrowserDefaultWidth.get() - lm - rm) + " " +
     199                                                (ExploratorySearchSettings.BrowserDefaultHeight.get() - tm - bm) + " : " + url, null);
     200                        }
     201                       
     202                        FrameIO.SaveFrame(frame);                                                       // save frame to disk
     203                } catch(Exception e) {
     204                        e.printStackTrace();
     205                }
     206        }
     207       
    109208}
  • trunk/src/org/expeditee/actions/Navigation.java

    r669 r885  
    4343        public static void GotoHome() {
    4444                FrameUtils.DisplayFrame(UserSettings.HomeFrame.get());
     45        }
     46       
     47        /**
     48         * Displays the user's first settings frame - should be `username`2
     49         */
     50        public static void GotoSettings() {
     51                String framename = UserSettings.HomeFrame.get();
     52                framename = framename.substring(0, framename.length() - 1) + '2';
     53                FrameUtils.DisplayFrame(framename);
    4554        }
    4655
  • trunk/src/org/expeditee/assets/resources/framesets/exploratorysearch/1.exp

    r810 r885  
    1 V 128
     1V 210
    22U csl14A
    33D 12Dec2013[10:07]
    44M csl14A
    5 d 03Feb2014[12:04]
     5d 13Feb2014[17:09]
    66Z
    7 
    8 S T 36
    9 s 16Jan2014[15:52.06]
    10 d 50 50 50 100
    11 R 37.0
    12 P 50 490
    13 T @old
    14 F exploratorysearch-old17
    15 Q 0
    16 o csl14A
    17 v S
    18 f tr18
    19 t -1.0
    20 b 0.0
    21 m 0.0
    22 w 974
    23 h -1.0
    247
    258S T 24
    269s 12Dec2013[10:16.21]
    2710d 50 50 50 100
    28 R 37.0
    29 P 50 615
    30 T @ao: 2
     11P 1048 68
     12T @ao: 3
    3113F overlayset1
    3214Q 0
     15H -100.0
     16N 50.0
    3317o csl14A
    3418v S
     
    3923h -1.0
    4024
     25S T 36
     26s 16Jan2014[15:52.06]
     27P 11 506
     28T @old
     29F exploratorysearch-old100
     30Q 0
     31R 9.0
     32I 114.0
     33o csl14A
     34n F
     35v S
     36f Roboto Condensed_r15
     37t -1.0
     38b 0.0
     39m 0.0
     40w 116
     41k R
     42h -1.0
     43
    4144Z
    4245
     
    4548Z
    4649
    47 ActiveTime:00:40:37
    48 DarkTime:00:46:25
    49 04:02:324 350 64 Rd
    50 04:02:387 350 64 Ru
    51 04:02:675 715 385 Md
    52 04:02:747 715 385 Mu
    53 04:02:948 618 297 Rd
    54 04:02:953 618 297 Md
    55 04:05:345 524 501 kF9
    56 04:05:857 524 501 kF9
    57 04:08:827 78 610 Ld
    58 04:08:891 78 610 Lu
     50ActiveTime:00:55:48
     51DarkTime:01:21:18
  • trunk/src/org/expeditee/assets/resources/framesets/overlayset/1.exp

    r877 r885  
    1 V 24
     1V 114
    22U Nathaniel
    33D 06Feb2014[17:16]
    4 M nathaniel
    5 d 11Feb2014[00:40]
     4M csl14A
     5d 13Feb2014[17:08]
    66Z
    77
     
    2828s 10Feb2014[21:29.35]
    2929d 50 50 50 100
    30 P 167 45
     30P -87 58
    3131T @ao: base
    3232F 4
    3333Q 0
     34R -100.0
     35N 50.0
    3436o nathaniel
    3537v S
     
    6264P 11 84
    6365T Web Browser
    64 X startbrowsersession
     66X startBrowserSession
    6567x F
    6668Q 0
     
    100102P 11 114
    101103T MindMap
    102 X startmindmapsession
     104X startMindmapSession
    103105x F
    104106Q 0
     
    122124Z
    123125
    124 ActiveTime:00:07:29
    125 DarkTime:00:00:00
    126 40:44:669 109 111 Rd
    127 40:44:695 109 111 Ld
    128 40:45:178 389 242 Md
    129 40:45:300 389 242 Mu
    130 40:46:448 618 336 Rd
    131 40:49:586 122 97 Md
    132 40:49:745 122 97 Mu
    133 40:50:563 498 308 Rd
    134 40:50:578 498 308 Md
    135 40:51:656 350 317 Ld
    136 40:51:721 350 317 Lu
     126ActiveTime:00:16:25
     127DarkTime:00:01:59
     12808:23:914 340 310 Ld
     12908:23:978 340 310 Lu
  • trunk/src/org/expeditee/assets/resources/framesets/overlayset/2.exp

    r877 r885  
    1 V 212
     1V 304
    22U csl14A
    33D 12Dec2013[10:14]
    4 M nathaniel
    5 d 11Feb2014[00:41]
     4M csl14A
     5d 13Feb2014[17:02]
    66Z
    77
    8 S T 1478
    9 s 18Dec2013[15:23.27]
    10 d 50 50 50 100
    11 P 1925 -3
    12 T @i: rightArrow.png 32
    13 X Forward
    14 x F
    15 Q 0
    16 H -37.0
    17 N -3.0
     8S P 1921
     9s 13Feb2014[11:37.51]
     10d 90 90 90 100
     11P 1007 0
     12e 95 95 95 100
     13Q 0
     14H -11.0
     15N 0.0
    1816o csl14A
    19 v S
    20 f Roboto Condensed_r18
    21 t -1.0
    22 b 0.0
    23 m 0.0
    24 h -1.0
    25 
    26 S T 1903
    27 s 11Feb2014[00:05.31]
    28 d 50 50 50 100
    29 P 166 22
    30 T @ao: base
    31 F 4
    32 Q 0
    33 o nathaniel
    34 v S
    35 f DejaVu Sans Light_r9
    36 t -1.0
    37 b 0.0
    38 m 0.0
    39 h -1.0
     17j 50.0 0.3 0.75
     18v S
     19h 2.0
     20l 1927 1930
     21c 4902 4903
     22
     23S P 1922
     24s 13Feb2014[11:37.51]
     25d 90 90 90 100
     26P 140 0
     27e 95 95 95 100
     28Q 0
     29R 140.0
     30N 0.0
     31o csl14A
     32v S
     33h 2.0
     34l 1927 1928
     35c 4902 4905
    4036
    4137S T 1496
     
    5652k C
    5753h -1.0
     54
     55S P 1924
     56s 13Feb2014[11:37.51]
     57d 90 90 90 100
     58P 1007 50
     59e 95 95 95 100
     60Q 0
     61H -11.0
     62N 50.0
     63o csl14A
     64j 14.000001 0.3 0.75
     65v S
     66h 2.0
     67l 1930 1929
     68c 4903 4906
     69
     70S P 1923
     71s 13Feb2014[11:37.51]
     72d 90 90 90 100
     73P 140 50
     74e 95 95 95 100
     75Q 0
     76R 140.0
     77N 50.0
     78o csl14A
     79j 50.0 0.3 0.75
     80v S
     81h 2.0
     82l 1928 1929
     83c 4905 4906
    5884
    5985S T 1680
     
    78104s 12Dec2013[10:14.45]
    79105P 11 59
    80 T Add Browser
    81 X startbrowser
     106T Browser Widget
     107X startBrowser
    82108x F
    83109Q 0
     
    93119w 116
    94120k R
     121h -1.0
     122
     123S T 1945
     124s 13Feb2014[15:14.24]
     125d 50 50 50 100
     126P 1048 68
     127T @ao: 3
     128F overlayset4
     129Q 0
     130H -100.0
     131N 50.0
     132o csl14A
     133v S
     134f tr18
     135t -1.0
     136b 0.0
     137m 0.0
    95138h -1.0
    96139
     
    99142G 100 100 100 100
    100143P 12 89
    101 T Drop url here to get
    102 T link to new browser
    103 X startbrowsernewframe
     144T New Browser: Drop url here for link
     145X startBrowserWithOverlay
    104146x F
    105147Q 0
     
    284326s 10Feb2014[23:49.05]
    285327d 90 90 90 100
    286 P 9 889
     328P 9 493
    287329e 100 100 100 100
    288330Q 0
    289331R 9.0
    290 I 74.0
     332I 225.0
    291333o nathaniel
    292334v S
     
    298340s 10Feb2014[23:49.05]
    299341d 90 90 90 100
    300 P 132 889
     342P 132 493
    301343e 100 100 100 100
    302344Q 0
    303345R 132.0
    304 I 74.0
     346I 225.0
    305347o nathaniel
    306348v S
     
    311353Z
    312354
     355L 1927 1
     356s 1921 1922
     357
     358L 1930 1
     359s 1924 1921
     360
     361L 1928 1
     362s 1922 1923
     363
     364L 1929 1
     365s 1923 1924
     366
    313367L 1899 1
    314368s 1895 1896
     
    325379Z
    326380
     381C 4902 3
     382s 1921 1922
     383
     384C 4903 2
     385s 1924 1921
     386
     387C 4905 2
     388s 1922 1923
     389
     390C 4906 3
     391s 1923 1924
     392
    327393C 1891 3
    328394s 1895 1896
     
    339405Z
    340406
    341 ActiveTime:01:47:59
    342 DarkTime:01:16:04
    343 41:33:841 100 52 Rd
    344 41:33:849 100 52 Ld
    345 41:34:401 423 191 Md
    346 41:34:544 430 199 Mu
    347 41:35:921 602 294 Rd
    348 41:38:406 88 41 Md
    349 41:38:601 88 41 Mu
    350 41:40:957 581 308 Rd
    351 41:42:752 101 42 Md
    352 41:42:906 101 42 Mu
    353 41:44:368 515 301 Rd
    354 41:44:378 515 301 Md
    355 41:46:207 107 92 Ld
    356 41:46:241 107 92 Rd
    357 41:47:381 349 178 Md
    358 41:47:383 349 178 Rd
    359 41:52:712 509 438 kRight
     407ActiveTime:02:15:52
     408DarkTime:01:31:51
     40902:24:984 224 242 kF9
     41002:50:807 55 437 Ld
     41102:50:879 55 437 Lu
  • trunk/src/org/expeditee/assets/resources/framesets/overlayset/3.exp

    r877 r885  
    1 V 177
     1V 211
    22U csl14A
    33D 12Dec2013[10:15]
    4 M nathaniel
    5 d 11Feb2014[00:42]
     4M csl14A
     5d 13Feb2014[16:57]
    66Z
    77
     
    3333l 674 697
    3434c 40 41
    35 
    36 S T 1438
    37 s 11Feb2014[00:05.44]
    38 d 50 50 50 100
    39 P 162 20
    40 T @ao: base
    41 F 4
    42 Q 0
    43 o nathaniel
    44 v S
    45 f DejaVu Sans Light_r9
    46 t -1.0
    47 b 0.0
    48 m 0.0
    49 h -1.0
    5035
    5136S T 676
     
    10792h -1.0
    10893
     94S T 1438
     95s 11Feb2014[00:05.44]
     96d 50 50 50 100
     97P -87 58
     98T @ao: base
     99F 4
     100Q 0
     101R -100.0
     102N 50.0
     103o nathaniel
     104v S
     105f DejaVu Sans Light_r9
     106t -1.0
     107b 0.0
     108m 0.0
     109h -1.0
     110
     111S T 1444
     112s 13Feb2014[16:44.56]
     113d 50 50 50 100
     114P 1048 68
     115T @ao: 3
     116F overlayset4
     117Q 0
     118H -100.0
     119N 50.0
     120o csl14A
     121v S
     122f tr18
     123t -1.0
     124b 0.0
     125m 0.0
     126h -1.0
     127
    109128S T 1432
    110129s 06Feb2014[22:09.56]
     
    230249s 06Feb2014[22:05.01]
    231250d 90 90 90 100
    232 P -41 651
     251P -41 643
    233252e 95 95 95 100
    234253Q 0
     
    244263s 06Feb2014[22:05.01]
    245264d 90 90 90 100
    246 P 140 651
     265P 140 643
    247266e 95 95 95 100
    248267Q 0
     
    286305Z
    287306
    288 ActiveTime:01:22:01
    289 DarkTime:00:11:36
    290 41:53:711 117 41 Rd
    291 41:53:726 117 41 Ld
    292 41:56:481 284 117 Rd
    293 41:56:669 284 117 Md
    294 41:58:056 124 42 Ld
    295 41:58:156 124 42 Lu
    296 41:59:069 637 190 Rd
    297 41:59:070 637 190 Md
    298 42:00:592 117 53 Ld
    299 42:00:595 117 53 Rd
    300 42:00:987 458 249 Md
    301 42:01:117 458 249 Mu
    302 42:02:987 628 345 Rd
    303 42:05:055 114 41 Md
    304 42:05:208 114 41 Mu
    305 42:06:481 119 41 Rd
    306 42:06:488 119 41 Ld
    307 42:07:387 222 100 Rd
    308 42:07:410 222 100 Md
    309 42:07:957 511 313 Md
    310 42:07:963 511 313 Rd
    311 42:09:581 126 71 Rd
    312 42:09:585 126 71 Ld
    313 42:11:193 299 141 Md
    314 42:11:307 299 141 Mu
    315 42:12:136 474 234 kBackspace
    316 42:12:792 459 239 k2
    317 42:13:184 468 239 Rd
    318 42:15:681 125 72 Md
    319 42:15:824 125 72 Mu
    320 42:16:382 366 183 Rd
    321 42:16:391 366 183 Md
    322 42:17:777 126 72 Rd
    323 42:17:794 126 72 Ld
    324 42:18:598 295 115 Rd
    325 42:18:616 295 115 Md
    326 42:19:839 126 102 Rd
    327 42:19:868 126 102 Ld
    328 42:20:630 301 135 Rd
    329 42:20:658 301 135 Md
    330 42:21:928 114 130 Ld
    331 42:21:965 114 130 Rd
    332 42:22:803 305 146 Rd
    333 42:22:827 305 146 Md
    334 42:24:060 114 148 Ld
    335 42:24:064 114 148 Rd
    336 42:24:711 283 167 Rd
    337 42:24:720 283 167 Md
    338 42:25:394 114 116 Ld
    339 42:25:406 114 116 Rd
    340 42:26:113 260 126 Rd
    341 42:26:116 260 126 Md
    342 42:27:832 112 92 Ld
    343 42:27:837 112 92 Rd
    344 42:28:638 298 124 Rd
    345 42:28:680 298 124 Md
    346 42:30:008 444 253 kWindows
    347 42:31:615 305 312 kWindows
    348 42:31:663 305 312 kShift
     307ActiveTime:01:25:21
     308DarkTime:00:13:54
     30957:03:046 287 245 Ld
     31057:03:109 287 245 Lu
  • trunk/src/org/expeditee/assets/resources/framesets/overlayset/4.exp

    r877 r885  
    1 V 353
     1V 455
    22U csl14A
    33D 12Dec2013[10:13]
    4 M nathaniel
    5 d 11Feb2014[00:40]
     4M csl14A
     5d 13Feb2014[17:08]
    66Z
    77
     
    3535c 36 37
    3636
    37 S T 460
    38 s 06Feb2014[21:22.21]
    39 P 11 574
     37S T 4853
     38s 12Feb2014[14:09.29]
     39P 11 416
     40T print
     41X writeFrame pdf2
     42x F
     43Q 0
     44R 9.0
     45I 204.0
     46o csl14A
     47v S
     48f Roboto Condensed_r15
     49t -1.0
     50b 0.0
     51m 0.0
     52w 116
     53k R
     54h -1.0
     55
     56S T 4859
     57s 12Feb2014[14:09.29]
     58P 7 397
     59T @i: iconbutton_print.png 127
     60F Documentation1
     61x F
     62Q 0
     63R 5.0
     64I 202.0
     65o csl14A
     66n F
     67v S
     68f tr18
     69t -1.0
     70b 0.0
     71m 0.0
     72h 0.0
     73
     74S T 4854
     75s 12Feb2014[14:09.29]
     76P 11 446
     77T Audience
     78X toggleAudienceMode
     79x F
     80Q 0
     81R 9.0
     82I 174.0
     83o csl14A
     84v S
     85f Roboto Condensed_r15
     86t -1.0
     87b 0.0
     88m 0.0
     89w 116
     90k R
     91h -1.0
     92
     93S T 4861
     94s 12Feb2014[14:09.29]
     95P 7 427
     96T @i: iconbutton_presentation_mode.png 127
     97F Documentation1
     98x F
     99Q 0
     100R 5.0
     101I 172.0
     102o csl14A
     103n F
     104v S
     105f tr18
     106t -1.0
     107b 0.0
     108m 0.0
     109h 0.0
     110
     111S T 4855
     112s 12Feb2014[14:09.29]
     113P 11 476
     114T Twinframe
     115X toggleTwinFramesMode
     116x F
     117Q 0
     118R 9.0
     119I 144.0
     120o csl14A
     121v S
     122f Roboto Condensed_r15
     123t -1.0
     124b 0.0
     125m 0.0
     126w 116
     127k R
     128h -1.0
     129
     130S T 4863
     131s 12Feb2014[14:09.29]
     132P 7 457
     133T @i: iconbutton_twin_frame_mode.png 127
     134F Documentation1
     135x F
     136Q 0
     137R 5.0
     138I 142.0
     139o csl14A
     140n F
     141v S
     142f tr18
     143t -1.0
     144b 0.0
     145m 0.0
     146h 0.0
     147
     148S T 4865
     149s 12Feb2014[14:09.29]
     150P 7 487
     151T @i: iconbutton_history.png 127
     152F Documentation1
     153x F
     154Q 0
     155R 5.0
     156I 112.0
     157o csl14A
     158n F
     159v S
     160f tr18
     161t -1.0
     162b 0.0
     163m 0.0
     164h 0.0
     165
     166S T 4857
     167s 12Feb2014[14:09.29]
     168P 11 536
     169T Settings
     170X goToSettings
     171x F
     172Q 0
     173R 9.0
     174I 84.0
     175o csl14A
     176n F
     177v S
     178f Roboto Condensed_r15
     179t -1.0
     180b 0.0
     181m 0.0
     182w 116
     183k R
     184h -1.0
     185
     186S T 4867
     187s 12Feb2014[14:09.29]
     188P 7 517
     189T @i: iconbutton_settings.png 127
     190F Documentation1
     191x F
     192Q 0
     193R 5.0
     194I 82.0
     195o csl14A
     196n F
     197v S
     198f tr18
     199t -1.0
     200b 0.0
     201m 0.0
     202h 0.0
     203
     204S T 4858
     205s 12Feb2014[14:09.29]
     206P 11 566
    40207T Expeditee Help
    41208F Documentation1
     
    44211R 9.0
    45212I 54.0
    46 o nathaniel
     213o csl14A
    47214n F
    48215v S
     
    55222h -1.0
    56223
    57 S T 2940
    58 s 06Feb2014[21:16.23]
    59 P 7 555
     224S T 4869
     225s 12Feb2014[14:09.29]
     226P 7 547
    60227T @i: iconbutton_question.png 127
    61228F Documentation1
     
    64231R 5.0
    65232I 52.0
    66 o Nathaniel
     233o csl14A
    67234n F
    68235v S
     
    76243s 18Dec2013[15:26.35]
    77244d 100 0 0 100
    78 P 140 587
     245P 140 579
    79246e 75 2 1 100
    80247Q 0
     
    90257s 06Feb2014[17:39.26]
    91258d 100 0 0 100
    92 P 0 587
     259P 0 579
    93260e 75 2 1 100
    94261Q 0
     
    104271s 10Feb2014[15:50.02]
    105272d 60 2 1 100
    106 P 140 588
     273P 140 580
    107274e 100 59 59 100
    108275Q 0
     
    118285s 10Feb2014[15:50.02]
    119286d 60 2 1 100
    120 P 0 588
     287P 0 580
    121288e 100 59 59 100
    122289Q 0
     
    132299s 12Dec2013[10:14.00]
    133300d 90 90 90 100
    134 P 0 588
     301P 0 580
    135302e 95 95 95 100
    136303Q 0
     
    147314s 12Dec2013[10:14.00]
    148315d 90 90 90 100
    149 P 140 588
     316P 140 580
    150317e 95 95 95 100
    151318Q 0
     
    162329s 06Feb2014[16:23.42]
    163330d 0 0 0 50
    164 P 107 624
     331P 107 616
    165332T 
    166333X forward
     
    181348s 06Feb2014[16:21.07]
    182349d 0 0 0 50
    183 P 12 624
     350P 12 616
    184351T 
    185352X back
     
    200367s 06Feb2014[16:21.38]
    201368d 0 0 0 50
    202 P 52 626
     369P 52 618
    203370T 
    204371X gotohome
     
    219386s 06Feb2014[17:39.26]
    220387d 100 0 0 100
    221 P 0 641
     388P 0 633
    222389e 75 2 1 100
    223390Q 0
     
    233400s 06Feb2014[17:39.26]
    234401d 100 0 0 100
    235 P 140 641
     402P 140 633
    236403e 75 2 1 100
    237404Q 0
     
    359526Z
    360527
    361 ActiveTime:02:38:42
    362 DarkTime:01:25:28
    363 40:28:423 76 67 Ld
    364 40:28:425 76 67 Rd
    365 40:29:778 182 77 Rd
    366 40:29:825 182 77 Md
    367 40:30:453 112 78 Rd
    368 40:30:470 112 78 Ld
    369 40:31:293 221 119 Rd
    370 40:31:334 221 119 Md
    371 40:32:351 104 97 Rd
    372 40:32:364 104 97 Ld
    373 40:33:497 201 113 Rd
    374 40:33:554 201 113 Md
    375 40:34:253 106 111 Rd
    376 40:34:255 106 111 Ld
    377 40:35:279 174 130 Rd
    378 40:35:332 174 130 Md
    379 40:36:186 119 97 Rd
    380 40:36:194 119 97 Ld
    381 40:36:872 188 113 Rd
    382 40:36:908 188 113 Md
    383 40:41:803 88 610 Ld
    384 40:41:904 88 610 Lu
     528ActiveTime:03:41:26
     529DarkTime:03:05:38
     53008:23:914 340 310 Ld
     53108:23:978 340 310 Lu
  • trunk/src/org/expeditee/gui/FrameKeyboardActions.java

    r851 r885  
    21322132         *            The Item to prepend the date to, or null
    21332133         */
    2134         private static void AddDate(Item toAdd) {
     2134        public static void AddDate(Item toAdd) {
    21352135                String date1 = Formatter.getDateTime();
    21362136                String date2 = Formatter.getDate();
  • trunk/src/org/expeditee/items/widgets/InteractiveWidget.java

    r876 r885  
    269269           
    270270                formatter.printHelp(printWriter, 80, TAG + ":" + widget_name + " [options] width height", null, options, 4, 0, null);
    271                 System.out.println(usage_str_writer.toString());
     271                //System.out.println(usage_str_writer.toString());
    272272               
    273273                float width = -1, height = -1;
  • trunk/src/org/expeditee/settings/exploratorysearch/ExploratorySearchSettings.java

    r876 r885  
    1212public abstract class ExploratorySearchSettings {
    1313       
    14         // Vert offset for the JfxBrowser's position to work with the Exploratory Search web browser overlay
    15         public static final int BROWSER_VERT_OFFSET = 70;
     14        // Horz and Vert offset for the JfxBrowser's position to work with the Exploratory Search web browser overlay
     15        public static final int BROWSER_HORZ_OFFSET = 140;
     16        public static final int BROWSER_VERT_OFFSET = 50;
    1617       
    1718        public static final BooleanSetting BrowserFullScreen = new BooleanSetting("Start Exploratory Search browser in fullscreen", true);
Note: See TracChangeset for help on using the changeset viewer.