Examples of addComponentListener()


Examples of org.nasutekds.guitools.controlpanel.ui.GenericFrame.addComponentListener()

      public void componentHidden(ComponentEvent e)
      {
        handleWindowClosed(localOrRemote, info);
      }
    };
    localOrRemote.addComponentListener(listener);
    localOrRemote.setVisible(true);
  }

  private void handleWindowClosed(GenericFrame localOrRemote,
      final ControlPanelInfo info)
View Full Code Here

Examples of org.openquark.gems.client.valueentry.ValueEditor.addComponentListener()

                    }
                });
                inputToEditorMap.put(inputPart, editor);
               
                // If the editor resizes because it's value changes, make sure it stays aligned to the connection
                editor.addComponentListener(new ComponentAdapter() {
                    @Override
                    public void componentResized(ComponentEvent e) {
                        positionEditor((ValueEditor) e.getComponent(), inputPart);
                    }
                });
View Full Code Here

Examples of org.openquark.gems.client.valueentry.ValueEntryPanel.addComponentListener()

                    }
                }
            });
   
            // Add a listener so that a change in the size of the VEP will trigger a change the size of the displayed gem.
            valueEntryPanel.addComponentListener(new ComponentAdapter() {
   
                // change the size of the displayed value gem if the VEP is resized
                public void componentResized(ComponentEvent e) {
                    tableTop.getDisplayedGem(valueGem).sizeChanged();
                }
View Full Code Here

Examples of plotter.xy.LinearXYPlotLine.addComponentListener()

          }
        });
      }
    }, 10, 10);

    line.addComponentListener(new ComponentAdapter() {
      @Override
      public void componentResized(ComponentEvent e) {
        d.setCompressionOffset(xAxis.getStart());
        d.setCompressionScale((xAxis.getEnd() - xAxis.getStart()) / xAxis.getWidth());
      }
View Full Code Here

Examples of tvbrowser.extras.favoritesplugin.dlgs.ManageFavoritesDialog.addComponentListener()

            200);
    ManageFavoritesDialog dlg = new ManageFavoritesDialog(MainFrame.getInstance(), favoriteArr, splitPanePosition, showNew, initialSelection);
    dlg.setModal(true);

    if(mShowInfoOnNewProgramsFound) {
      dlg.addComponentListener(new ComponentAdapter() {
        public void componentShown(ComponentEvent e) {
          if(showNew) {
            DontShowAgainOptionBox.showOptionDialog("foundFavorites", e.getComponent(), mLocalizer.msg("newPrograms.description","Favorites that contains new programs will be shown in this dialog.\nWhen you click on a Favorite you can see the new programs in the right list."), mLocalizer.msg("newPrograms.title", "Found favorites"));
          }
        }
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.