Examples of VTextIcon


Examples of cn.edu.pku.sei.capriceui.verticaltext.VTextIcon


        JToggleButton button = new JToggleButton();

        if (position == WEST || position == EAST) {
            VTextIcon textIcon = new VTextIcon(button, jif.getTitle(), VTextIcon.ROTATE_DEFAULT);
            Icon buttonIcon = new CompositeIcon(jif.getFrameIcon(), textIcon);
            button.setIcon(buttonIcon);
        } else {
            button.setIcon(jif.getFrameIcon());
            button.setText(jif.getTitle());
View Full Code Here

Examples of cn.edu.pku.sei.capriceui.verticaltext.VTextIcon

            if ((oldPosition == WEST || oldPosition == EAST) && (position == NORTH || position == SOUTH)) {
                button.setIcon(targetFrame.getFrameIcon());
                button.setText(targetFrame.getTitle());
            } else if ((oldPosition == NORTH || oldPosition == SOUTH) && (position == WEST || position == EAST)) {
                VTextIcon textIcon = new VTextIcon(button, targetFrame.getTitle(), VTextIcon.ROTATE_DEFAULT);
                Icon buttonIcon = new CompositeIcon(targetFrame.getFrameIcon(), textIcon);
                button.setIcon(buttonIcon);
                button.setText(null);
            }
View Full Code Here

Examples of com.eviware.soapui.support.components.VTextIcon

  public void addEditorView( EditorView<T> editorView )
  {
    views.add( editorView );

    inputTabs.addTab( null, new VTextIcon( inputTabs, editorView.getTitle(), VTextIcon.ROTATE_LEFT ),
        editorView.getComponent() );

    editorView.addPropertyChangeListener( this );
    editorView.addLocationListener( this );
View Full Code Here

Examples of com.eviware.soapui.support.components.VTextIcon

        views.add(editorView);

        if (UISupport.isMac()) {
            inputTabs.addTab(editorView.getTitle(), editorView.getComponent());
        } else {
            inputTabs.addTab(null, new VTextIcon(inputTabs, editorView.getTitle(), VTextIcon.ROTATE_LEFT),
                    editorView.getComponent());
        }
        editorView.addPropertyChangeListener(this);
        editorView.addLocationListener(this);
        editorView.setDocument(document);
View Full Code Here

Examples of us.thinkable.framework.zed.VTextIcon

      this.remove(xtabbedEditorPanel);
      xtabbedToolPanel = new XTabbedPanel(SwingConstants.LEFT);
      jsplitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, xtabbedToolPanel, xtabbedEditorPanel);
      this.add(jsplitPane, BorderLayout.CENTER);
    }
    Icon icon = new VTextIcon(xtool, title, VTextIcon.ROTATE_LEFT);
    Component comp = new XButtonTabComponent(xtool, icon);
    xtabbedToolPanel.addPanel(xtool, null, comp);
  }
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.