Examples of addMouseListener()


Examples of com.jidesoft.swing.JideMenu.addMouseListener()

               addToSessionItem.setEnabled(node instanceof QueueTreeNode || node instanceof TopicTreeNode || node instanceof QueueTopicTreeNode);
            }
         }
      });

      addToSessionItem.addMouseListener(new MouseAdapter()
      {
         public void mouseEntered(MouseEvent e)
         {
            addToSessionItem.removeAll();
View Full Code Here

Examples of com.jidesoft.swing.JideTabbedPane.addMouseListener()

          // demos
              protected IDocumentGroup createDocumentGroup() {
                  IDocumentGroup group = super.createDocumentGroup();
                  if (group instanceof JideTabbedPane) {
                    JideTabbedPane tabbedPane = (JideTabbedPane)group;
                    tabbedPane.addMouseListener(tabDoubleClickListener);
                      //((JideTabbedPaneUI) ((JideTabbedPane) group).getUI()).getTabPanel().
                      //    addMouseListener(tabDoubleClickListener);
                  }
                  return group;
              }
View Full Code Here

Examples of com.jogamp.newt.opengl.GLWindow.addMouseListener()

        if (TOOLKIT == Toolkit.NEWT || TOOLKIT == Toolkit.NEWT_CANVAS) {
            final GLWindow newt = GLWindow.create(glcaps);

            final NewtListener listener = new NewtListener();
            newt.addKeyListener(listener);
            newt.addMouseListener(listener);

            drawable = newt;
        } else {
            final GLCanvas glCanvas = new GLCanvas(glcaps);
View Full Code Here

Examples of com.kokakiwi.mclauncher.ui.simple.components.TransparentLabel.addMouseListener()

            {
                paint(g);
            }
        };
        dirLink.setCursor(Cursor.getPredefinedCursor(12));
        dirLink.addMouseListener(new MouseAdapter() {
           
            public void mousePressed(MouseEvent arg0)
            {
                try
                {
View Full Code Here

Examples of com.l2client.gui.dialogs.ChatPanel.addMouseListener()

    internalFrame.setLocation(0,desktopPane.getHeight()-internalFrame.getHeight());
    desktopPane.add(internalFrame);
   
    // minimize on mouse out maximize on mouse in
    MinMaxListener mima = new MinMaxListener(internalFrame, "Chatwindow", pan, desktopPane);
    pan.addMouseListener(mima);

    wireInputSwitch(new ArrayList<BaseUsable>()/*must pass empty otherwise not overriden*/, pan);

    desktopPane.repaint();
    desktopPane.revalidate();
View Full Code Here

Examples of com.l2client.gui.dialogs.SkillAndActionsJPanel.addMouseListener()

    });
    Singleton.get().getInputController().addInput(acts);

    wireInputSwitch(acts, pan);
    MoveByBackgroundListener mover = new MoveByBackgroundListener(pan, internalFrame);
    pan.addMouseListener(mover);
    pan.addMouseMotionListener(mover);
   
    internalFrame.setVisible(false);

    return pan;
View Full Code Here

Examples of com.mxgraph.swing.mxGraphComponent.mxGraphControl.addMouseListener()

    });

    connectPreview = createConnectPreview();

    mxGraphControl graphControl = graphComponent.getGraphControl();
    graphControl.addMouseListener(this);
    graphControl.addMouseMotionListener(this);

    mxGraphView view = graphComponent.getGraph().getView();
    view.addListener(mxEvent.SCALE, resetHandler);
    view.addListener(mxEvent.TRANSLATE, resetHandler);
View Full Code Here

Examples of com.mxgraph.swing.util.mxCellOverlay.addMouseListener()

      mxCellOverlay overlay = new mxCellOverlay(icon, warning);

      // Adds a handler for single mouseclicks to select the cell
      if (select)
      {
        overlay.addMouseListener(new MouseAdapter()
        {
          /**
           * Selects the associated cell in the graph
           */
          public void mousePressed(MouseEvent e)
View Full Code Here

Examples of com.pcmsolutions.gui.FadeLabel.addMouseListener()

                j.setPreferredSize(d);
                j.setMinimumSize(d);
                j.setMaximumSize(d);
                sectionBox.add(j);
                if (sd[i].ml != null)
                    j.addMouseListener(sd[i].ml);

                // setup the hide button panel to have same background and height as first section
                if (i == 0) {
                    hideButtonPanel.setBackground(sd[0].sectionBG);
                    hideButtonPanel.add(hideButton, BorderLayout.CENTER);
View Full Code Here

Examples of com.salas.bb.utils.uif.LinkLabel.addMouseListener()

     * @return label.
     */
    private Component createGuideLabel(final IGuide guide, final IFeed feed)
    {
        LinkLabel label = LinkLabel.create(guide.getTitle(), new GuideClickAction(guide, guide.getID()));
        label.addMouseListener(new GuidePopupAdapter(guide, -1)
        {
            @Override
            protected Map<String, Action> getActions()
            {
                Map<String, Action> actions = super.getActions();
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.