1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
|
package net.wotonomy.test;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import javax.swing.AbstractButton;
import javax.swing.JDialog;
import net.wotonomy.foundation.NSArray;
import net.wotonomy.ui.EOAssociation;
import net.wotonomy.ui.EODisplayGroup;
import net.wotonomy.ui.MasterDetailAssociation;
import net.wotonomy.ui.swing.ListAssociation;
import net.wotonomy.ui.swing.RadioPanelAssociation;
import net.wotonomy.ui.swing.TextAssociation;
import net.wotonomy.ui.swing.TreeAssociation;
import net.wotonomy.ui.swing.util.WindowUtilities;
/**
* A simple editor panel with a few textfields.
*/
public class TreeInspectorController {
public TreeInspectorController(EODisplayGroup titlesGroup, EODisplayGroup childrenGroup) {
final EODisplayGroup group = childrenGroup;
// final EODisplayGroup group = titlesGroup;
final TreePanel treePanel = new TreePanel();
// text associations
EOAssociation ta;
ta = new TreeAssociation(treePanel.tree, "People");
ta.bindAspect(EOAssociation.TitlesAspect, titlesGroup, "lastName");
ta.bindAspect(EOAssociation.ChildrenAspect, group, "childList");
ta.bindAspect(EOAssociation.IsLeafAspect, titlesGroup, "childCount");
// ta.bindAspect( EOAssociation.IsLeafAspect, null, "false" );
ta.establishConnection();
treePanel.tree.setEditable(true);
ta = new TextAssociation(treePanel.editPanel.firstNameField);
ta.bindAspect(EOAssociation.ValueAspect, group, "firstName");
ta.establishConnection();
ta = new TextAssociation(treePanel.editPanel.middleNameField);
ta.bindAspect(EOAssociation.ValueAspect, group, "middleName");
ta.establishConnection();
ta = new TextAssociation(treePanel.editPanel.lastNameField);
ta.bindAspect(EOAssociation.ValueAspect, group, "lastName");
ta.establishConnection();
ta = new RadioPanelAssociation(treePanel.editPanel.yearRadioPanel);
ta.bindAspect(EOAssociation.ValueAspect, group, "createDate.year");
EODisplayGroup yearTitles = new EODisplayGroup();
yearTitles.setObjectArray(new NSArray(new Object[] { "1999", "2000", "2001" }));
ta.bindAspect(EOAssociation.TitlesAspect, yearTitles, "");
EODisplayGroup yearObjects = new EODisplayGroup();
yearObjects.setObjectArray(new NSArray(new Object[] { new Integer(99), new Integer(100), new Integer(101) }));
ta.bindAspect(EOAssociation.ObjectsAspect, yearObjects, "");
ta.establishConnection();
// detail group
final EODisplayGroup detailGroup = new EODisplayGroup();
ta = new MasterDetailAssociation(detailGroup);
ta.bindAspect(EOAssociation.ParentAspect, group, "childList");
ta.establishConnection();
ta = new ListAssociation(treePanel.editPanel.list);
ta.bindAspect(EOAssociation.TitlesAspect, detailGroup, "fullName");
ta.establishConnection();
// display group action associations
AbstractButton addButton = (AbstractButton) treePanel.editPanel.addPanel.getButton("Add");
addButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
detailGroup.insertObjectAtIndex(new TestObject(), 0);
}
});
AbstractButton removeButton = (AbstractButton) treePanel.editPanel.addPanel.getButton("Remove");
removeButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent evt) {
if (detailGroup.selectedObject() != null)
detailGroup.deleteSelection();
}
});
/*
* AbstractButton refreshButton = (AbstractButton)
* treePanel.editPanel.addPanel.getButton( "Refresh" );
* refreshButton.addActionListener( new ActionListener() { int count = 0; public
* void actionPerformed( ActionEvent evt ) { EODisplayGroup displayGroup =
* (EODisplayGroup) treePanel.tree.getSelectionPath().getLastPathComponent(); //
* displayGroup.insertObjectAtIndex( new TestObject(), 0 ); //
* displayGroup.deleteObjectAtIndex( 0 ); List sortOrderings = new LinkedList();
* if ( count++ % 2 == 0 ) { sortOrderings.add( new EOSortOrdering( "lastName",
* EOSortOrdering.CompareAscending ) ); } else { sortOrderings.add( new
* EOSortOrdering( "lastName", EOSortOrdering.CompareDescending ) ); }
* displayGroup.setSortOrderings( sortOrderings );
* displayGroup.updateDisplayedObjects(); } } );
*/
/*
* ta = new DisplayGroupActionAssociation(
* treePanel.editPanel.addPanel.getButton( "Remove" ) ); ta.bindAspect(
* EOAssociation.ActionAspect, detailGroup, "deleteSelection" );
* ta.establishConnection();
*
* ta = new DisplayGroupActionAssociation(
* treePanel.editPanel.addPanel.getButton( "Refresh" ) ); ta.bindAspect(
* EOAssociation.ActionAspect, group, "updateDisplayedObjects" );
* ta.establishConnection();
*/
// add mouse listener for list
treePanel.editPanel.list.addMouseListener(new MouseAdapter() {
public void mouseClicked(MouseEvent e) {
if (e.getClickCount() == 2) {
Object item = detailGroup.selectedObject();
if (item != null) {
new InspectorController(item);
}
}
}
});
// launch
JDialog d = new JDialog();
d.getContentPane().add(treePanel);
d.setTitle("Tree Panel");
d.pack();
WindowUtilities.cascade(d);
d.show();
// workaround for memory issues on jdk1.2.2
d.addWindowListener(new WindowAdapter() {
// exit on close
public void windowClosing(WindowEvent e) {
((JDialog) e.getWindow()).getContentPane().removeAll();
}
});
}
}
|