[Mydm-cvs] MyDM/src/java/org/mydm/main FDocMan.java,1.13,1.14
Status: Pre-Alpha
Brought to you by:
vkdasari
From: <ka...@us...> - 2004-03-06 17:23:40
|
Update of /cvsroot/mydm/MyDM/src/java/org/mydm/main In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25325 Modified Files: FDocMan.java Log Message: Check VJ for proposal Search bottom Index: FDocMan.java =================================================================== RCS file: /cvsroot/mydm/MyDM/src/java/org/mydm/main/FDocMan.java,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** FDocMan.java 28 Feb 2004 15:16:10 -0000 1.13 --- FDocMan.java 6 Mar 2004 17:00:45 -0000 1.14 *************** *** 148,153 **** --- 148,155 ---- JMenuBar menuBar = new JMenuBar(); JToolBar toolBar = new JToolBar(); + JToolBar toolBarBottom = new JToolBar(); getContentPane().add(toolBar, BorderLayout.NORTH); + getContentPane().add(toolBarBottom, BorderLayout.SOUTH); *************** *** 427,431 **** colchoose = new JComboBox(mycols); - lab1 = new JLabel("Collections"); colListener = new ColListListener(); --- 429,432 ---- *************** *** 433,437 **** toolBar.setLayout(new FlowLayout(FlowLayout.LEADING)); ! newRecAction.putValue(Action.SMALL_ICON, new ImageIcon("graphics/tbicons/general/New16.gif")); JButton newRecBut = toolBar.add(newRecAction); --- 434,438 ---- toolBar.setLayout(new FlowLayout(FlowLayout.LEADING)); ! toolBarBottom.setLayout(new FlowLayout(FlowLayout.LEADING)); newRecAction.putValue(Action.SMALL_ICON, new ImageIcon("graphics/tbicons/general/New16.gif")); JButton newRecBut = toolBar.add(newRecAction); *************** *** 526,530 **** quickSLabel = new JLabel("Quick search"); ! quickS = new JTextField(10); doQuickS = new JButton(new ImageIcon("graphics/myicons/go.gif")); doQuickS.setPreferredSize(new Dimension(20, 20)); --- 527,531 ---- quickSLabel = new JLabel("Quick search"); ! quickS = new JTextField(15); doQuickS = new JButton(new ImageIcon("graphics/myicons/go.gif")); doQuickS.setPreferredSize(new Dimension(20, 20)); *************** *** 544,551 **** ! toolBar.add(quickSLabel); ! toolBar.add(quickS); ! toolBar.add(doQuickS); ! toolBar.addSeparator(); toolBar.add(lab1); --- 545,552 ---- ! toolBarBottom.add(quickSLabel); ! toolBarBottom.add(quickS); ! toolBarBottom.add(doQuickS); ! toolBarBottom.addSeparator(); toolBar.add(lab1); |