Package java.awt

Examples of java.awt.Component


      //final int x = bounds.x + ins.left;
      int y = /*bounds.y + */ ins.top;

      for (int i = 0; i < comps.length; i++)
      {
        final Component c = comps[i];
        if (c.isVisible() == false)
        {
          continue;
        }
        final Dimension dim = c.getPreferredSize();
        c.setBounds(ins.left, y, width, dim.height);
        y += dim.height;
      }
    }
  }
View Full Code Here


            GridBagConstraints c = new GridBagConstraints();
            guiPanel.setLayout(gridbag);

            c.gridwidth = GridBagConstraints.REMAINDER;

            Component sgui = super.getGUI();
            gridbag.setConstraints(sgui, c);
            guiPanel.add(sgui);

            // Attribute GUI
            attributePanel = new JPanel();
View Full Code Here

        GridBagLayout gridbag = new GridBagLayout();
        GridBagConstraints c = new GridBagConstraints();
        configPanel.setLayout(gridbag);

        c.gridheight = GridBagConstraints.REMAINDER;
        Component da = drawingAttributes.getGUI();
        gridbag.setConstraints(da, c);
        configPanel.add(da);

        c.gridx = 1;
        c.gridheight = 1;
View Full Code Here

   
    SwingUtilities.invokeAndWait(new Runnable(){
      public void run() {
          final Window activeWindow =
              FocusManager.getCurrentKeyboardFocusManager().getActiveWindow();
          final Component focusOwner =
              FocusManager.getCurrentKeyboardFocusManager().getFocusOwner();
          final Component pfocusOwner =
              FocusManager.getCurrentKeyboardFocusManager().getPermanentFocusOwner();
          System.out.println ("Execute! 1 = " + activeWindow);
          System.out.println ("Execute! 2 = " + focusOwner);
          System.out.println ("Execute! 3 = " + pfocusOwner);
      }
View Full Code Here

    public void actionPerformed(ActionEvent e)
    {
      System.out.println ("Execute!");
      final Window activeWindow =
          FocusManager.getCurrentKeyboardFocusManager().getActiveWindow();
      final Component focusOwner =
          FocusManager.getCurrentKeyboardFocusManager().getFocusOwner();
      final Component pfocusOwner =
          FocusManager.getCurrentKeyboardFocusManager().getPermanentFocusOwner();

      System.out.println ("Execute! 1 = " + activeWindow);
      System.out.println ("Execute! 2 = " + focusOwner);
      System.out.println ("Execute! 3 = " + pfocusOwner);
View Full Code Here

   
    @Override
    public void setFont(Font font) {
        super.setFont(font);
       
        Component c;
        int i = 0;
        while ((c = getComponentAtIndex(i++)) != null) {
            if (c instanceof DcToolBarButton) {
                DcToolBarButton button = (DcToolBarButton) c;
                button.setFont(ComponentFactory.getSystemFont());
View Full Code Here

            }
        }
    }   
   
  public void setLabelsVisible(boolean b) {
    Component c;
    int i = 0;
    while ((c = getComponentAtIndex(i++)) != null) {
            if (c instanceof DcToolBarButton) {
                DcToolBarButton button = (DcToolBarButton) c;
               
View Full Code Here

                    warehouse.drawCPointFeatures() }, al);

            stuff.add(pal);

            if (lst != null) {
                Component warehouseGUI = warehouse.getGUI(lst);
                if (warehouseGUI != null) {
                    stuff.add(warehouseGUI);
                }
            }
            box.add(stuff);
View Full Code Here

    public Component getGUI() {
        if (!resetGUIWhenDeactivated)
            return this;

        removeAll();
        Component eomgc = null;

        graphicAttributes.setLineMenuAdditions(null);
//        graphicAttributes.setOrientation(getOrientation());
        if (currentEditable != null) {
            // GUI specific to a particular EditableOMGraphic type.
View Full Code Here

    /**
     * Returns true if the component has already been added to a
     * DockWrapper that has been added to the DockPanel.
     */
    boolean alreadyAdded(Component comp) {
        Component components[] = getComponents();
        for (int i = 0; i < components.length; i++) {
            Component c = components[i];
            if (c instanceof DockWrapper) {
                DockWrapper dw = (DockWrapper) c;
                if (dw.getChildren().contains(comp)) {
                    return true;
                }
View Full Code Here

TOP

Related Classes of java.awt.Component

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.