Examples of show()


Examples of org.jitterbit.integration.client.ui.interchange.entity.transformation.tree.utils.MenuBuilder.show()

        JPopupMenu popup = new JPopupMenu();
        MenuBuilder myPopupMenu = new MenuBuilder(actionListener, popup);
        m_rightClickNode = node;
        if (this==m_TreeMapperMigration.m_newTargetTree || this==m_TreeMapperMigration.m_oldTargetTree) {
            myPopupMenu.addMenuItem(cmd_delete_target_translate);
            myPopupMenu.show(this, node.m_p.x + 5 + m_scroll.getHorizontalScrollBar().getValue(), node.m_p.y
                    + Node.m_textHeight);
        }
        else if (this==m_TreeMapperMigration.m_newSourceTree || this==m_TreeMapperMigration.m_oldSourceTree) {
            myPopupMenu.addMenuItem(cmd_delete_source_translate);
            myPopupMenu.show(this, node.m_p.x + 5 + m_scroll.getHorizontalScrollBar().getValue(), node.m_p.y
View Full Code Here

Examples of org.jitterbit.integration.client.ui.jitterpack.ImportJitterPackDialog.show()

    private void openDialog() {
        ImportJitterPackUi importUi = createImportUi();
        UnpackCallbackImpl callback = new UnpackCallbackImpl();
        ImportJitterPackDialog dialog = new ImportJitterPackDialog(importUi, callback);
        callback.setDialog(dialog);
        dialog.show();
    }

    private void displayImportPage() {
        Editor page = locateOpenPage();
        if (page == null) {
View Full Code Here

Examples of org.jitterbit.ui.input.InputPanelOverlay.show()

            overlay.setFocusReceiverWhenClosed(trigger);
            overlay.setFadeIn(AnimationPreference.get());
            overlay.setAlpha(0.8f);
            overlay.useOkAndCancel();
            overlay.setBlocking(true);
            overlay.show(container, new OverlayRelativePositioner(trigger, new Point(8, 8)));
        }
    }
   
   
    private class UndoableEditImpl extends AbstractUndoableEdit {
View Full Code Here

Examples of org.jitterbit.ui.layout.CardPanel.show()

        public void editorOpened(EditorCategory category, Editor editor) {
            int index = switchToTabSilently(category);
            CardPanel cards = tabCards.get(index);
            String cardName = editor.getId();
            cards.add(editor, cardName);
            cards.show(cardName);
            updateTabTitle(category, index);
            editor.requestFocus();
            updateTabControllers();
        }
View Full Code Here

Examples of org.jitterbit.ui.util.find.SearchAndReplaceTextDialog.show()

        SearchAndReplaceTextDialog dialog = SearchAndReplaceTextDialog.sharedDialog(target);
        configureDialog(dialog);
        if (switchToReplace) {
            dialog.showReplaceUi();
        }
        dialog.show(null);
    }

    private void configureDialog(AbstractSearchDialog dialog) {
        if (title != null) {
            dialog.setTitle(title);
View Full Code Here

Examples of org.jitterbit.ui.util.find.SearchTextDialog.show()

        private void openDialog() {
            XmlDocumentFrame activeFrame = deskTop.getSelectedFrame();
            if (activeFrame != null) {
                SearchTarget target = activeFrame.getSearchTarget();
                SearchTextDialog dialog = createDialog(target);
                dialog.show(MainWindow.this);
            }
        }

        private SearchTextDialog createDialog(SearchTarget target) {
            if (searchDialog == null) {
View Full Code Here

Examples of org.jitterbit.ui.widget.overlay.OverlayAlert.show()

        private void showMessage() {
            String message = "<html>One or more project items referred to in this formula were renamed or "
                            + "moved to a new folder.<br><br>The script has been updated accordingly.</html>";
            OverlayAlert alert = new OverlayAlert(message, AlertIcons.INFO, "Automatic Change");
            alert.setAlpha(0.75f);
            alert.show(container);
            // TODO: The TransformationPage should ask for attention
        }
    }

}
View Full Code Here

Examples of org.jitterbit.ui.widget.overlay.OverlayDecorator.show()

        }

        @Override
        public void show(String title, String caption) {
            OverlayDecorator overlay = createOverlay(title, caption);
            overlay.show(container, new OverlayCenterPositioner());
            table.requestFocus();
        }

        private OverlayDecorator createOverlay(String title, String caption) {
            BorderLayoutBuilder layout = new BorderLayoutBuilder(0, 5);
View Full Code Here

Examples of org.jitterbit.ui.widget.popup.KongaPopupMenu.show()

                TreePath path = ((JTree) source).getClosestPathForLocation(x, y);
                if (path != null) {
                    ((JTree) source).setSelectionPath(path);
                    KongaPopupMenu menu = new KongaPopupMenu();
                    menu.addActions(actionProvider.get());
                    menu.show(source, x, y);
                }
            }
            return true;
        }
    }
View Full Code Here

Examples of org.jitterbit.ui.widget.window.PopupWindow.show()

        }
        JComponent html = createHtmlDisplayer(info);
        PopupWindow w = createPopupWindow(html, range, evt);
        w.setPreferredSize(new Dimension(440, 320));
        w.setResizable(true);
        w.show();
        return w;
    }

    private JComponent createHtmlDisplayer(String info) {
        JEditorPane pane = new HtmlDisplayer();
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.