Ignore:
Timestamp:
05/10/18 16:04:51 (6 years ago)
Author:
davidb
Message:

Reworking of the code-base to separate logic from graphics. This version of Expeditee now supports a JFX graphics as an alternative to SWING

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/agents/SearchGreenstone.java

    r919 r1102  
    2323import java.util.Vector;
    2424
     25import org.expeditee.gio.gesture.StandardGestureActions;
    2526import org.expeditee.greenstone.Greenstone3Connection;
    2627import org.expeditee.greenstone.Query;
     
    2930import org.expeditee.greenstone.ResultDocument;
    3031import org.expeditee.gui.AttributeValuePair;
    31 import org.expeditee.gui.DisplayIO;
     32import org.expeditee.gui.DisplayController;
    3233import org.expeditee.gui.Frame;
    3334import org.expeditee.gui.FrameCreator;
    3435import org.expeditee.gui.FrameGraphics;
    35 import org.expeditee.gui.FrameMouseActions;
    3636import org.expeditee.gui.MessageBay;
    3737import org.expeditee.items.Text;
     
    175175                        doQuery(_pattern);
    176176                } else if (_currentResultSet != null) {
    177                         Text newText = DisplayIO.getCurrentFrame().createNewText(
    178                                         getCursorText());
     177                        Text newText = DisplayController.getCurrentFrame().createNewText(getCursorText());
    179178                        _clicked = newText;
    180                         FrameMouseActions.pickup(newText);
     179                        StandardGestureActions.pickup(newText);
    181180                }
    182181
     
    389388                                false);
    390389
    391                 FrameGraphics.requestRefresh(true);
     390                DisplayController.requestRefresh(true);
    392391        }
    393392
Note: See TracChangeset for help on using the changeset viewer.