Ignore:
Timestamp:
01/10/14 10:09:57 (10 years ago)
Author:
jts21
Message:

Add status message area, add basic help text that gives info about what mouse buttons in the current context.
TODO: Add messages for button combos somehow (e.g. middle+right = delete) - this may pose a problem as my current method of displaying help text doesn't have room for text about button combos, so will need to rethink how to display the text.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/gui/FrameMouseActions.java

    r655 r673  
    1313import java.text.NumberFormat;
    1414import java.util.ArrayList;
     15import java.util.Arrays;
    1516import java.util.Collection;
    1617import java.util.Date;
     
    18731874                MouseX = e.getX();
    18741875                MouseY = e.getY();
     1876               
     1877                Help.updateStatus();
     1878               
    18751879                // System.out.println(MouseX + "," + MouseY);
    18761880
     
    33283332                }
    33293333                updateCursor();
     3334               
     3335                Help.updateStatus();
    33303336
    33313337                for (Item i : FreeItems.getInstance()) {
     
    33633369        public static void shift(KeyEvent e) {
    33643370                _shiftDown = e.isShiftDown();
     3371                Help.updateStatus();
    33653372                getInstance().refreshHighlights();
    33663373        }
Note: See TracChangeset for help on using the changeset viewer.