Changeset 155


Ignore:
Timestamp:
08/14/11 19:27:53 (13 years ago)
Author:
jhall
Message:

Inserted new tree view to afford an improved view on the targets - work in progress

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/swing/DlgInsert.java

    r144 r155  
    22 
    33import java.awt.BorderLayout; 
    4 import java.awt.FlowLayout; 
     4import java.util.ArrayList; 
    55import java.util.List; 
    66 
     
    2929import javax.swing.JScrollPane; 
    3030import javax.swing.JList; 
     31import javax.swing.border.EtchedBorder; 
     32import javax.swing.JTree; 
     33import javax.swing.tree.DefaultTreeModel; 
     34import javax.swing.tree.DefaultMutableTreeNode; 
    3135 
    3236public class DlgInsert extends JDialog { 
     
    7074 
    7175                setModal(true); 
    72                 setBounds(100, 100, 522, 482); 
     76                setBounds(100, 100, 530, 631); 
    7377                getContentPane().setLayout(new BorderLayout()); 
    7478                contentPanel.setBorder(new EmptyBorder(5, 5, 5, 5)); 
     
    7781                final JComboBox comboBoxTestcase = new JComboBox(); 
    7882                final JPanel panelTextEquals = new JPanel(); 
     83                panelTextEquals.setBorder(new EtchedBorder(EtchedBorder.LOWERED, null, null)); 
    7984                final JPanel panelFileEquals = new JPanel(); 
     85                panelFileEquals.setBorder(new EtchedBorder(EtchedBorder.LOWERED, null, null)); 
    8086 
    8187                // JComboBox: comboBoxTestcase 
     
    100106                                "TextEquals", "OutputFileEquals" })); 
    101107                comboBoxTestcase.setSelectedIndex(0); 
    102                 comboBoxTestcase.setBounds(128, 11, 178, 20); 
     108                comboBoxTestcase.setBounds(91, 11, 178, 20); 
    103109                contentPanel.add(comboBoxTestcase); 
    104110                // *** 
     
    106112                // JLabel 
    107113                JLabel label = new JLabel("Testcase:"); 
    108                 label.setBounds(10, 14, 86, 14); 
     114                label.setBounds(12, 14, 86, 14); 
    109115                contentPanel.add(label); 
    110116 
    111117                JLabel label_1 = new JLabel("Expected value:"); 
    112                 label_1.setBounds(10, 11, 83, 14); 
     118                label_1.setBounds(10, 11, 96, 14); 
    113119 
    114120                JLabel label_2 = new JLabel("Target:"); 
     
    124130                // JPanel: panel 
    125131                panelTextEquals.setLayout(null); 
    126                 panelTextEquals.setBounds(10, 39, 494, 210); 
     132                panelTextEquals.setBounds(10, 39, 494, 350); 
    127133                contentPanel.add(panelTextEquals); 
    128134                panelTextEquals.add(label_1); 
     
    131137 
    132138                JScrollPane scrollPane = new JScrollPane(); 
    133                 scrollPane.setBounds(116, 36, 368, 163); 
     139                scrollPane.setBounds(421, 36, 63, 14); 
    134140                panelTextEquals.add(scrollPane); 
    135141 
    136                 final JList listTargets = new JList(modelListTargets); 
     142                final JList listTargets = new JList(modelListTargets);           
    137143                scrollPane.setViewportView(listTargets); 
    138  
    139                 List<String> targets = null; 
    140144                 
    141                 if (GlobalDataContainer.getInstance().getData("ListTargets") == null) { 
    142                         Console.println("There were no Targets found in the GlobalDataContainer"); 
    143                 } else { 
    144                         try { 
    145                                 targets = (List<String>) GlobalDataContainer.getInstance() 
    146                                                 .getData("ListTargets"); 
    147                         } catch (ClassCastException e) { 
    148                                 Console.println("Not able to cast Data in GlobalDataContainer to List of Targets (String)"); 
    149                         } 
    150  
    151                         for (int i = 0; i < targets.size(); i++) { 
    152                                 modelListTargets.addElement(targets.get(i).toString()); 
    153                         } 
    154                 } 
     145                JScrollPane scrollPane_1 = new JScrollPane(); 
     146                scrollPane_1.setBounds(10, 63, 474, 276); 
     147                panelTextEquals.add(scrollPane_1); 
     148                 
     149                //JTree to hold the targets 
     150                JTree tree = new JTree(); 
     151                tree.setModel(new DefaultTreeModel( 
     152                        new DefaultMutableTreeNode("Targets") { 
     153                                { 
     154                                        List<DefaultMutableTreeNode> nodes = new ArrayList<DefaultMutableTreeNode>(); 
     155                                        List<String> listTargets = new ArrayList<String>(); 
     156                                        List<String> sortedTargets = new ArrayList<String>(); 
     157 
     158                                        try { 
     159                                                listTargets = (List<String>) GlobalDataContainer.getInstance().getData("ListTargets"); 
     160                                        } 
     161                                        catch (ClassCastException e) { 
     162                                                Console.println("Not able to cast data in GlobalDataContainer to List of Strings"); 
     163                                        } 
     164                 
     165                                        int parts = 1; 
     166                                        while(sortedTargets.size() < listTargets.size()) { 
     167                                                for(int i=0; i<listTargets.size(); i++) { 
     168                                                        String splitted[] = listTargets.get(i).split("/>"); 
     169                                                        if(splitted.length == parts) { 
     170                                                                sortedTargets.add(listTargets.get(i)); 
     171                                                                modelListTargets.addElement(listTargets.get(i)); 
     172                                                                 
     173                                                                //insert in tree 
     174                                                                boolean inserted = false; 
     175                                                                for(int j=parts-2; j>=0 && !inserted; j--) { 
     176                                                                        splitted[j] = splitted[j] + "/>"; 
     177                                                                        for(int k=0; k<nodes.size(); k++) { 
     178                                                                                if(nodes.get(k).toString().compareTo(splitted[j]) == 0) { 
     179                                                                                        DefaultMutableTreeNode newNode = new DefaultMutableTreeNode(splitted[j+1]); 
     180                                                                                        nodes.add(newNode); 
     181                                                                                        nodes.get(k).add(newNode); 
     182                                                                                        inserted = true; 
     183                                                                                        break; 
     184                                                                                } 
     185                                                                        } 
     186                                                                } 
     187                                                                 
     188                                                                if(!inserted) { 
     189                                                                        DefaultMutableTreeNode newNode = new DefaultMutableTreeNode(listTargets.get(i).toString()); 
     190                                                                        nodes.add(newNode); 
     191                                                                        add(newNode); 
     192                                                                } 
     193                                                        } 
     194                                                } 
     195                                                 
     196                                                parts++; 
     197                                        } 
     198                                } 
     199                        } 
     200                )); 
     201                scrollPane_1.setViewportView(tree); 
     202                 
    155203 
    156204                if (listTargets.getComponentCount() > 0) 
    157205                        listTargets.setSelectedIndex(0); 
    158206 
    159                 panelFileEquals.setBounds(10, 260, 494, 140); 
     207                panelFileEquals.setBounds(12, 400, 494, 120); 
    160208                contentPanel.add(panelFileEquals); 
    161209                panelFileEquals.setLayout(null); 
     
    167215 
    168216                textFieldActualFile = new JTextField(); 
    169                 textFieldActualFile.setBounds(10, 36, 474, 20); 
     217                textFieldActualFile.setBounds(10, 30, 474, 20); 
    170218                panelFileEquals.add(textFieldActualFile); 
    171219                textFieldActualFile.setColumns(10); 
     
    181229                        } 
    182230                }); 
    183                 btnNewButton.setBounds(99, 80, 89, 23); 
     231                btnNewButton.setBounds(93, 61, 89, 23); 
    184232                panelFileEquals.add(btnNewButton); 
    185233 
    186234                JLabel lblNewLabel_1 = new JLabel("Expected file:"); 
    187                 lblNewLabel_1.setBounds(10, 84, 89, 14); 
     235                lblNewLabel_1.setBounds(10, 70, 89, 14); 
    188236                panelFileEquals.add(lblNewLabel_1); 
    189237 
    190238                textFieldExpectedFile = new JTextField(); 
    191239                textFieldExpectedFile.setColumns(10); 
    192                 textFieldExpectedFile.setBounds(10, 109, 474, 20); 
     240                textFieldExpectedFile.setBounds(10, 88, 474, 20); 
    193241                panelFileEquals.add(textFieldExpectedFile); 
    194242                { 
    195243                        JPanel buttonPane = new JPanel(); 
    196                         buttonPane.setLayout(new FlowLayout(FlowLayout.RIGHT)); 
    197                         getContentPane().add(buttonPane, BorderLayout.SOUTH); 
     244                        buttonPane.setBorder(new EtchedBorder(EtchedBorder.LOWERED, null, null)); 
     245                        buttonPane.setBounds(12, 531, 494, 51); 
     246                        contentPanel.add(buttonPane); 
    198247                        { 
    199248                                // JButton: okButton 
    200249                                JButton okButton = new JButton("Insert"); 
     250                                okButton.setBounds(349, 11, 135, 31); 
    201251                                okButton.addMouseListener(new MouseAdapter() { 
    202252                                        public void mouseClicked(MouseEvent arg0) { 
     
    281331                                        } 
    282332                                }); 
     333                                buttonPane.setLayout(null); 
    283334                                okButton.setActionCommand("OK"); 
    284335                                buttonPane.add(okButton); 
     
    290341                                // JButton: cancelButton 
    291342                                JButton cancelButton = new JButton("Cancel"); 
     343                                cancelButton.setBounds(10, 11, 135, 31); 
    292344                                cancelButton.addMouseListener(new MouseAdapter() { 
    293345 
Note: See TracChangeset for help on using the changeset viewer.