Package open.dolphin.ui

Examples of open.dolphin.ui.HorizontalPanel


        editor.start();
        editor.addPropertyChangeListener(VALID_DATA_PROP, this);
        editor.setValue(value);
        // レアイウトする
        HorizontalPanel lowerPanel = new HorizontalPanel();
        lowerPanel.setBackgroundColor(Color.black, 0.0f, HorizontalPanel.DEFAULT_STATUS_PANEL_END_ALPHA);
        //lowerPanel.setTopLineAlpha(0.5f);
        lowerPanel.setPanelHeight(32);
        lowerPanel.addGlue();
        lowerPanel.add(cancelButton);
        lowerPanel.add(okButton);
       
        dialog.add(editor, BorderLayout.CENTER);
        dialog.add(lowerPanel, BorderLayout.SOUTH);
       
        // CloseBox 処理を登録する
View Full Code Here


        titleField = new JTextField();
        titleField.getDocument().addDocumentListener(new StateListener());
        titleField.setBackground(STAMP_NAME_FIELD_BACKGROUND);
        titleField.setOpaque(false);

        HorizontalPanel titlePanel = new HorizontalPanel();
        titlePanel.setBottomLineAlpha(0.5f);
       
        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);
View Full Code Here

TOP

Related Classes of open.dolphin.ui.HorizontalPanel

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.