Package net.sf.jpluck.swing

Examples of net.sf.jpluck.swing.TableList


    private void setJXL(JXL jxl) {
        if (tableList != null) {
            getContentPane().remove(tableList);
        }
        tableList = new TableList(jxl, true, true);
        getContentPane().add(tableList, BorderLayout.CENTER);
    }
View Full Code Here


        popupMenu.add(selectAllAction);
        popupMenu.add(selectDueAction);
        GUIUtil.clearToolTips(popupMenu);

        UIManager.put("Table.focusCellHighlightBorder", new EmptyBorder(1, 1, 1, 1));
        tableList = new TableList(jxl, true, true);

        String key = null;
        if (jxl.getFile() != null) {
            key = jxl.getFile().getAbsolutePath();
        }
View Full Code Here

    tabbedPane.add("Version", panelBuilder.getPanel());

    formLayout = new FormLayout("fill:10dlu:grow", "fill:10dlu:grow");
    panelBuilder = new PanelBuilder(formLayout);

    TableList tableList = new TableList(new SystemInfo());
    tableList.setEnabled(false);
    tableList.optimizeWidths(4);
    panelBuilder = new PanelBuilder(new FormLayout("fill:pref:grow", "fill:pref:grow"));
    panelBuilder.setBorder(Borders.TABBED_DIALOG_BORDER);
    JScrollPane scrollPane = new JScrollPane(tableList);
    scrollPane.setPreferredSize(new Dimension(10,10));
    panelBuilder.add(scrollPane, "1,1");
View Full Code Here

        popupMenu.add(convertAction);
        popupMenu.add(openAction);
        popupMenu.add(copyAction);

        Banner banner = new Banner();
        tableList = new TableList(showcase, true, true);
        tableList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        tableList.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN);
        tableList.addMouseListener(new MouseAdapter() {
                public void mouseClicked(MouseEvent ev) {
                    if (SwingUtilities.isLeftMouseButton(ev) && (ev.getClickCount() == 2)) {
View Full Code Here

TOP

Related Classes of net.sf.jpluck.swing.TableList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.