Ignore:
Timestamp:
08/25/08 15:19:25 (16 years ago)
Author:
ra33
Message:

Fixed some bugs...
AbstractCharts can not be copied, resized, etc

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/items/widgets/InteractiveWidget.java

    r277 r278  
    11551155                if (_textRepresentation.getLink() != null
    11561156                                || _textRepresentation.hasAction()) {
    1157 
     1157                        //System.out.println("Painted link");
    11581158                        _textRepresentation.paintLinkGraphic(g, getLinkX(), getLinkY());
    11591159
     
    12641264         * Invalidates the link for this widget - if it has one.
    12651265         */
    1266         void invalidateLink() {
     1266        protected void invalidateLink() {
    12671267                if (_textRepresentation.getLink() != null
    12681268                                || _textRepresentation.hasAction()) {
     
    15891589                _textRepresentation.setData(data);
    15901590        }
     1591       
     1592        protected Point getOrigin() {
     1593                return _d1.getPosition();
     1594        }
     1595       
     1596        protected Item getFirstCorner() {
     1597                return _d1;
     1598        }
    15911599}
Note: See TracChangeset for help on using the changeset viewer.