Examples of MoveUpAction


Examples of com.dci.intellij.dbn.code.common.completion.options.sorting.action.MoveUpAction

        super(settings);
        resetChanges();
        sortingItemsList.setCellRenderer(LIST_CELL_RENDERER);
        sortingItemsList.setFont(UIUtil.getLabelFont());
        ActionToolbar actionToolbar = ActionUtil.createActionToolbar("", true,
                new MoveUpAction(sortingItemsList, settings),
                new MoveDownAction(sortingItemsList, settings));
        actionPanel.add(actionToolbar.getComponent(), BorderLayout.WEST);
        registerComponent(enableCheckBox);
        updateBorderTitleForeground(mainPanel);
    }
View Full Code Here

Examples of com.dci.intellij.dbn.editor.data.state.column.action.MoveUpAction

        columnListScrollPane.setViewportView(columnList);

        ActionToolbar actionToolbar = ActionUtil.createActionToolbar("", false,
                new SelectAllColumnsAction(columnList),
                ActionUtil.SEPARATOR,
                new MoveUpAction(columnList),
                new MoveDownAction(columnList),
                ActionUtil.SEPARATOR,
                new OrderAlphabeticallyAction(columnList),
                new RevertColumnOrderAction(columnList));
        actionPanel.add(actionToolbar.getComponent(), BorderLayout.WEST);
View Full Code Here

Examples of net.sourceforge.dsnk.gui.action.MoveUpAction

          KeyEvent.VK_R, dataProvider);

      ImageIcon upIcon = new ImageIcon(upImage);
      String upDesc = UOGumpViewer.getResourceBundle().getString(
          "PaperdollFrame.Label.Up");
      upAction = new MoveUpAction("", upIcon, upDesc, KeyEvent.VK_PLUS,
          dataProvider);

      ImageIcon downIcon = new ImageIcon(downImage);
      String downDesc = UOGumpViewer.getResourceBundle().getString(
          "PaperdollFrame.Label.Down");
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.