Examples of MyJScrollPane


Examples of open.dolphin.ui.MyJScrollPane

     * always regenerated by the Form Editor.
     */
    // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
    private void initComponents() {

        jScrollPane1 = new MyJScrollPane(); //javax.swing.JScrollPane();
        table = new javax.swing.JTable();

        setName("Form"); // NOI18N

        jScrollPane1.setName("jScrollPane1"); // NOI18N
View Full Code Here

Examples of open.dolphin.ui.MyJScrollPane

        comPanel.addSpace(5);

        MainPanel mainPanel = getMainPanel();
       
        table = new AddressTipsTable();
        MyJScrollPane scroller = new MyJScrollPane(table);
        mainPanel.add(scroller);
       
        StatusPanel statusPanel = getStatusPanel();
       
        progressBar = new JProgressBar();
View Full Code Here

Examples of open.dolphin.ui.MyJScrollPane

     * always regenerated by the Form Editor.
     */
    // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
    private void initComponents() {

        jScrollPane1 = new MyJScrollPane(); //javax.swing.JScrollPane();
        table = new javax.swing.JTable();

        setName("Form"); // NOI18N

        jScrollPane1.setName("jScrollPane1"); // NOI18N
View Full Code Here

Examples of open.dolphin.ui.MyJScrollPane

        JLabel label = new JLabel("スタンプ名:");
       
        titlePanel.add(label);
        titlePanel.add(titleField);
       
        MyJScrollPane scroller = new MyJScrollPane(textPane);
        scroller.setVerticalScrollBarPolicy(MyJScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
        scroller.setHorizontalScrollBarPolicy(MyJScrollPane.HORIZONTAL_SCROLLBAR_NEVER);

        this.setLayout(new BorderLayout(0, 0));
        this.add(titlePanel, BorderLayout.NORTH);
        this.add(scroller, BorderLayout.CENTER);
        this.setBorder(BorderFactory.createTitledBorder(""));
View Full Code Here

Examples of open.dolphin.ui.MyJScrollPane

        am.put(func, map.get(func));
       
        // GUI 形成
        diagPanel = new DropPanel(new BorderLayout());

        MyJScrollPane scrollPane = new MyJScrollPane(diagList);
        scrollPane.putClientProperty("JComponent.sizeVariant", "small");
        diagPanel.add(scrollPane);

        // ChartImpl#getDiagnosisDocument() を呼ぶと,ChartImpl から DiagnosisDocument#start() が呼ばれて
        // DiagnosisDocument でサーバーから診断リストを読み込んで,それが読み終わると
        // DiagnosisDocument からここの update(model) が呼ばれて diagList がセットされるという紆余曲折な仕組み
View Full Code Here

Examples of open.dolphin.ui.MyJScrollPane

        comPanel.add(legendLbl);
        comPanel.setMargin(4);
       
        MainPanel mainPanel = getMainPanel();
        table = new RowTipsTable();
        MyJScrollPane scroller = new MyJScrollPane(table);
        scroller.isPermanentScrollBar = true;
        mainPanel.add(scroller);
       
        StatusPanel statusPanel = getStatusPanel();
        checkedTimeLbl = new JLabel("00:00");
View Full Code Here

Examples of open.dolphin.ui.MyJScrollPane

        list.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        list.addMouseListener(new FileSelectionListener());

        filePanel = new JPanel(new BorderLayout());

        final MyJScrollPane scrollPane = new MyJScrollPane(list);
        scrollPane.putClientProperty("JComponent.sizeVariant", "small");
        filePanel.add(scrollPane);

        // Hidden ファイルフィルタ
        filter = new FileFilter() {
            @Override
View Full Code Here

Examples of open.dolphin.ui.MyJScrollPane

   
    private void initComponents() {
        this.setLayout(new BorderLayout(0,0));
       
        table = new JTable();
        MyJScrollPane scroller = new MyJScrollPane(table);
        scroller.setBorder(BorderFactory.createEmptyBorder());
        scroller.putClientProperty("JComponent.sizeVariant", "small");
       
        cntLbl = new JLabel("0件");
        cntLbl.setHorizontalAlignment(SwingConstants.RIGHT);
       
        docTypeCombo = new JComboBox();
View Full Code Here

Examples of open.dolphin.ui.MyJScrollPane

        memoArea.setEnabled(!context.isReadOnly());

        AttentiveViewport vport = new AttentiveViewport();
        vport.setView(memoArea);
       
        MyJScrollPane pane = new MyJScrollPane();
        pane.setViewport(vport);
        pane.putClientProperty("JComponent.sizeVariant", "small");
       
        memoPanel = new JPanel(new BorderLayout());
        memoPanel.add(pane, BorderLayout.CENTER);
    }
View Full Code Here

Examples of open.dolphin.ui.MyJScrollPane

     * RadiologyTablePanel の RadiologyMethod はここで加える
     * @return
     */
    public JComponent createCenterPanel() {
        // スクローラ
        MyJScrollPane scroller = new MyJScrollPane(table);
        scroller.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED);
        scroller.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
        //scroller.setPreferredSize(new Dimension(GUIConst.DEFAULT_EDITOR_WIDTH, GUIConst.DEFAULT_EDITOR_HEIGHT));
       
        // table の細かい調節をする
        AdditionalTableSettings.setOrderTable(table);
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.