Examples of LayoutRenameView


Examples of realcix20.guis.views.LayoutRenameView

    editAction.putValue(Action.SMALL_ICON, ImageManager.getImage(ImageManager.EDIT_REPORT_IMAGE));
    reportOpts.add(editAction);
       
        Action rnAction = new AbstractAction() {
      public void actionPerformed(ActionEvent e) {       
        new LayoutRenameView(XTable.this,getCurrentLayout());
      }
    };
    rnAction.putValue(Action.NAME,MnemonicGenerator.generateMnemonicString(TxtManager.getTxt("VIEW.MAINFRAME.TREE.POPUPMENU.RENAMEREPORT"),KeyEvent.VK_R));
    rnAction.putValue(Action.SMALL_ICON,ImageManager.getImage(ImageManager.RENAME_REPORT_IMAGE));
    reportOpts.add(rnAction);
View Full Code Here

Examples of realcix20.guis.views.LayoutRenameView

                DefaultMutableTreeNode node = (DefaultMutableTreeNode)tree.getLastSelectedPathComponent();
                if (node.getUserObject() instanceof ObjectInfo) {
                    ObjectInfo oj = (ObjectInfo)node.getUserObject();
                    if (oj.flag.equals("layout")) {                           
                        getContainer().setEnabled(false);
                        new LayoutRenameView(getContainer().getReportViewTable(), oj.layout);                           
                    }
                }
            }
           
        }
View Full Code Here

Examples of realcix20.guis.views.LayoutRenameView

                DefaultMutableTreeNode node = (DefaultMutableTreeNode)tree.getLastSelectedPathComponent();
                if (node.getUserObject() instanceof ObjectInfo) {
                    ObjectInfo oj = (ObjectInfo)node.getUserObject();
                    if (oj.flag.equals("report")) {                           
                        getContainer().setEnabled(false);
                        new LayoutRenameView(getContainer().getReportViewTable(), oj.layout);                           
                    }
                }
            }
       
    }
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.