Ignore:
Timestamp:
01/17/14 18:22:43 (10 years ago)
Author:
jts21
Message:

Changes to settings tree generation, and added vertical/horizontal format help text. Also some commented out code from an attempt to fix XGroupItem ignoring nested rectangles in rectangles reached by an arrow (didn't get anywhere with that)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/expeditee/io/flowlayout/XGroupItem.java

    r714 r717  
    135135                this.raw_text_item_list  = imprint.raw_text_item_list;
    136136                this.grouped_item_list   = imprint.grouped_item_list;
     137               
     138//              int offX = imprint.getBoundingRect().x - copy_to_bounding_rect.x;
     139//              int offY = imprint.getBoundingRect().y - copy_to_bounding_rect.y;
     140//              this.grouped_item_list   = new ArrayList<XGroupItem>();
     141//              for(XGroupItem newChild : imprint.grouped_item_list) {
     142//                      Rectangle newRect = newChild.getBoundingRect();
     143//                      newRect.x -= offX;
     144//                      newRect.y -= offY;
     145//                      this.grouped_item_list.add(new XGroupItem(newChild, newRect));
     146//              }
    137147                this.remaining_item_list = imprint.remaining_item_list;
    138148               
Note: See TracChangeset for help on using the changeset viewer.