Examples of SearchBar


Examples of com.ca.directory.jxplorer.search.SearchBar

    protected void setupToolBars()
    {

        topPanel = new CBPanel();
        searchBar = new SearchBar(this)// set up the tool bar with quick search
        buttonBar = new ButtonBar(this)// sets up the tool bar with the graphics icons

        //buttonBar.setSize(topPanel.getWidth(), 20);
        topPanel.makeWide();
View Full Code Here

Examples of com.subgraph.vega.ui.httpeditor.search.SearchBar

    createViewerActions(viewer);
    projectionSupport = new ProjectionSupport(viewer,new ProjectionAnnotationAccess(), colors);
    projectionSupport.install();
    messageDocumentFactory = new HttpMessageDocumentFactory();
   
    final SearchBar sb = new SearchBar(this, viewer, colors);
    sb.setLayoutData(CornerLayoutData.createTopRight());
   
    highlightBar = new HighlightBar(this, viewer, colors);
    highlightBar.setLayoutData(CornerLayoutData.createBottomRight());

    setLayout(new CornerLayout(viewer.getTextWidget()));
View Full Code Here

Examples of edu.mit.blocks.workspace.SearchBar

    /**
     * Returns a SearchBar instance capable of searching for blocks
     * within the BlockCanvas and block drawers
     */
    public JComponent getSearchBar() {
        final SearchBar sb = new SearchBar(
                "Search blocks", "Search for blocks in the drawers and workspace", workspace);
        for (SearchableContainer con : getAllSearchableContainers()) {
            sb.addSearchableContainer(con);
        }
        return sb.getComponent();
    }
View Full Code Here

Examples of edu.mit.blocks.workspace.SearchBar

     */
    private void createAndShowGUI() {
        frame = new JFrame("WorkspaceDemo");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setBounds(100, 100, 500, 500);
        final SearchBar sb = new SearchBar("Search blocks",
                "Search for blocks in the drawers and workspace", workspace);
        for (final SearchableContainer con : getAllSearchableContainers()) {
            sb.addSearchableContainer(con);
        }
        final JPanel topPane = new JPanel();
        sb.getComponent().setPreferredSize(new Dimension(130, 23));
        topPane.add(sb.getComponent());
        frame.add(topPane, BorderLayout.PAGE_START);
        frame.add(getWorkspacePanel(), BorderLayout.CENTER);
        frame.add(getButtonPanel(), BorderLayout.SOUTH);
        frame.setVisible(true);
    }
View Full Code Here

Examples of logisticspipes.utils.gui.SearchBar

   
    buttonList.add(new SmallGuiButton(17, guiLeft + 173, guiTop + 5, 36, 10, "Hide")); // Hide
    buttonList.add(Macrobutton = new SmallGuiButton(18, right - 55, bottom - 60, 50, 10, "Disk"));
    Macrobutton.enabled = false;

    if(search == null) search = new SearchBar(mc.fontRenderer, this, guiLeft + 205, bottom - 78, 200, 15);
    search.reposition(guiLeft + 205, bottom - 78, 200, 15);
   
    if(itemDisplay == null) itemDisplay = new ItemDisplay(this, mc.fontRenderer, this, this, guiLeft + 205, guiTop + 18, 200, ySize - 100, new int[]{1,10,64,64}, true);
    itemDisplay.reposition(guiLeft + 205, guiTop + 18, 200, ySize - 100);
   
View Full Code Here

Examples of logisticspipes.utils.gui.SearchBar

    buttonList.add(new SmallGuiButton(11, xCenter + 26, bottom - 15, 26, 10, "+++")); // +64
    buttonList.add(new GuiCheckBox(8, guiLeft + 9, bottom - 60, 14, 14, Configs.DISPLAY_POPUP)); // Popup
   
    buttonList.add(new SmallGuiButton(20, xCenter - 13, bottom - 41, 26, 10, "Sort")); // Sort
   
    if(search == null) search = new SearchBar(mc.fontRenderer, this, guiLeft + 30, bottom - 78, right - guiLeft - 58, 15);
    search.reposition(guiLeft + 30, bottom - 78, right - guiLeft - 58, 15);
   
    if(itemDisplay == null) itemDisplay = new ItemDisplay(this, mc.fontRenderer, this, this, guiLeft + 10, guiTop + 18, xSize - 20, ySize - 100, new int[]{1,10,64,64}, true);
    itemDisplay.reposition(guiLeft + 10, guiTop + 18, xSize - 20, ySize - 100);
  }
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.