Examples of Toolbar


Examples of com.cburch.draw.toolbar.Toolbar

    // set up menu bar and toolbar
    menubar = new LogisimMenuBar(this, proj);
    menuListener = new MenuListener(this, menubar);
    menuListener.setEditHandler(layoutEditHandler);
    setJMenuBar(menubar);
    toolbar = new Toolbar(layoutToolbarModel);

    // set up the left-side components
    ToolbarModel projectToolbarModel = new ExplorerToolbarModel(this, menuListener);
    projectToolbar = new Toolbar(projectToolbarModel);
    toolbox = new Toolbox(proj, menuListener);
    simExplorer = new SimulationExplorer(proj, menuListener);
    explorerPane = new CardPanel();
    explorerPane.addView(VIEW_TOOLBOX, toolbox);
    explorerPane.addView(VIEW_SIMULATION, simExplorer);
View Full Code Here

Examples of com.cburch.draw.toolbar.Toolbar

 
  Toolbox(Project proj, MenuListener menu) {
    super(new BorderLayout());
   
    ToolboxToolbarModel toolbarModel = new ToolboxToolbarModel(menu);
    Toolbar toolbar = new Toolbar(toolbarModel);
    add(toolbar, BorderLayout.NORTH);
   
    toolbox = new ProjectExplorer(proj);
    toolbox.setListener(new ToolboxManip(proj, toolbox));
    add(new JScrollPane(toolbox), BorderLayout.CENTER);
View Full Code Here

Examples of com.extjs.gxt.ui.client.widget.toolbar.ToolBar

  /**
   * Agrega la bara de botones
   * @return
   */
  private void addToolBar() {
    ToolBar toolBar = new ToolBar();
    toolBar.add(new SaveButton(this));
    toolBar.add(new CancelButton(this));
    add(toolBar);
  }
View Full Code Here

Examples of com.google.code.ckJsfEditor.Toolbar

* Time: 9:25 PM
*/
public class ToolbarProvider {
    @Produces
    public Toolbar getToolbar() {
        return new Toolbar(
                ToolbarButtonGroup.DOCUMENT.remove(ToolbarItem.SAVE).remove(ToolbarItem.NEW_PAGE),
                ToolbarButtonGroup.CLIPBOARD,
                ToolbarButtonGroup.EDITING,
                ToolbarButtonGroup.COLORS.item(ToolbarItem.BREAK),
                ToolbarButtonGroup.PARAGRAPH,
View Full Code Here

Examples of com.google.gwt.visualization.client.visualizations.Toolbar

    Panel result = new VerticalPanel();
    PieDemo pieDemo = new PieDemo();
    Widget pieWidget = pieDemo.getWidget();
    result.add(pieWidget);
   
    Toolbar toolbar = new Toolbar();
   
    Component component = Component.create();
    component.setType(Type.HTMLCODE);
    component.setDataSource(DATA_SOURCE);
    component.setGadget(GADGET);
    toolbar.addComponent(component);

    component = Component.create();
    component.setType(Type.CSV);
    component.setDataSource(DATA_SOURCE);
    component.setGadget(GADGET);
    toolbar.addComponent(component);
   
    component = Component.create();
    component.setType(Type.HTML);
    component.setDataSource(DATA_SOURCE);
    component.setGadget(GADGET);
    toolbar.addComponent(component);   

    component = Component.create();
    component.setType(Type.IGOOGLE);
    component.setDataSource(DATA_SOURCE);
    component.setGadget(GADGET);
    toolbar.addComponent(component);
   
    result.add(toolbar);

    return result;
  }
View Full Code Here

Examples of com.gwtext.client.widgets.Toolbar

   * Returns the editor's toolbar. This is only available after the editor has been rendered.
   *
   * @return toolbar
   */
  public Toolbar getToolbar() {
    return new Toolbar(getToolbar(getOrCreateJsObj()));
  }
View Full Code Here

Examples of com.lowagie.rups.view.renderer.ToolBar

  public PdfRendererController(PageNavigationListener listener) {
    setOrientation(JSplitPane.VERTICAL_SPLIT);
    setDividerLocation(33);
    setDividerSize(0);
        pagePanel = new PagePanel();
    toolbar = new ToolBar(listener);
    add(toolbar, JSplitPane.TOP);
        add(pagePanel, JSplitPane.BOTTOM);
  }
View Full Code Here

Examples of com.mucommander.ui.main.toolbar.ToolBar

        // Create the toolbar and corresponding panel wrapping it, and show it only if it hasn't been disabled in the
        // preferences.
        // Note: Toolbar.setVisible() has to be called no matter if Toolbar is visible or not, in order for it to be
        // properly initialized
        this.toolbar = new ToolBar(this);
        this.toolbarPanel = ToolbarMoreButton.wrapToolBar(toolbar);
        this.toolbarPanel.setVisible(MuConfigurations.getPreferences().getVariable(MuPreference.TOOLBAR_VISIBLE, MuPreferences.DEFAULT_TOOLBAR_VISIBLE));
        contentPane.add(toolbarPanel, BorderLayout.NORTH);

        JPanel insetsPane = new JPanel(new BorderLayout()) {
View Full Code Here

Examples of com.sencha.gxt.widget.core.client.toolbar.ToolBar

    this.appearance = appearance;

    addStyleName(appearance.editor());
    setBorders(true);

    toolBar = new ToolBar();

    textArea = new RichTextArea();
    textArea.addStyleName(appearance.frame());
    textArea.addFocusHandler(new FocusHandler() {
View Full Code Here

Examples of com.tll.client.ui.toolbar.Toolbar

            btnDeleteTgl.setTitle(btnDeleteTgl.isDown() ? "Un-delete " + labelText : "Delete " + labelText);
          }
        }
      });

      final Toolbar t = new Toolbar();
      t.addButton(btnDeleteTgl);
      t.add(new Label(labelText, false));
      return t;
    }

    return new Label(labelText, false);
  }
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.