Examples of DcLongTextField


Examples of net.datacrow.console.components.DcLongTextField

         SecurityCentre sc = SecurityCentre.getInstance();
        
         String name = sc.getUser().getUser().getName();
         String loginname = sc.getUser().getUsername();
        
         DcLongTextField help = ComponentFactory.getHelpTextField();
         help.setText(DcResources.getText("lblPasswordForUserX",
                      new String[] {name, loginname}));
        
         getContentPane().add(help,  
                 Layout.getGBC(0, 0, 2, 1, 1.0, 1.0,
                 GridBagConstraints.NORTHWEST, GridBagConstraints.BOTH,
View Full Code Here

Examples of net.datacrow.console.components.DcLongTextField

         * Rewrite Titles
         **********************************************************************/
        JPanel panelRewrite = new JPanel(false);
        panelRewrite.setLayout(Layout.getGBL());
       
        DcLongTextField explanation = ComponentFactory.getLongTextField();
        explanation.setText(DcResources.getText("msgTitleRewriterExplanation"));
        ComponentFactory.setUneditable(explanation);
       
        panelRewrite.add(explanation, Layout.getGBC(0, 0, 1, 1, 1.0, 1.0,
                GridBagConstraints.NORTHEAST, GridBagConstraints.BOTH,
                new Insets(5, 5, 5, 5), 0, 0));
View Full Code Here

Examples of net.datacrow.console.components.DcLongTextField

        panelRenumber.setLayout(Layout.getGBL());
       
        buttonRun.addActionListener(this);
        buttonRun.setActionCommand("renumber");
       
        DcLongTextField explanation = ComponentFactory.getLongTextField();
        ComponentFactory.setUneditable(explanation);
       
        DcModule module = DcModules.getCurrent();
       
        explanation.setText(DcResources.getText("lblRenumberExplanation", module.getObjectNamePlural()));
       
        JLabel labelOrderBy = ComponentFactory.getLabel(DcResources.getText("lblSortOn"));
        comboOrderBy1.addItem("");
        comboOrderBy2.addItem("");
        comboOrderBy3.addItem("");
View Full Code Here

Examples of net.datacrow.console.components.DcLongTextField

    private void build() {

      //**********************************************************
        //Help
        //**********************************************************
        DcLongTextField explanation = ComponentFactory.getLongTextField();
        explanation.setText(DcResources.getText("msgSelectXpLevelHelp"));
        ComponentFactory.setUneditable(explanation);
       
        //**********************************************************
        //Action panel
        //**********************************************************
 
View Full Code Here

Examples of net.datacrow.console.components.DcLongTextField

                if (field.getFieldType() == ComponentFactory._LONGTEXTFIELD) {
                    stretch = GridBagConstraints.BOTH;
                    factor = 200;

                    DcLongTextField longText = (DcLongTextField) component;
                    longText.setMargin(new Insets(1, 1, 1, 5));

                    if (field.isReadOnly())
                        ComponentFactory.setUneditable(longText);
                   
                    JScrollPane pane = new JScrollPane(longText);
View Full Code Here

Examples of net.datacrow.console.components.DcLongTextField

        comboReference = ComponentFactory.getComboBox();
        comboFieldType = ComponentFactory.getComboBox();

        initializeTypes();
       
        DcLongTextField textHelp = ComponentFactory.getHelpTextField();
        textHelp.setText(DcResources.getText("msgHelpAterField"));
        textHelp.setPreferredSize(new Dimension(100, 60));
        textHelp.setMinimumSize(new Dimension(100, 60));
        textHelp.setMaximumSize(new Dimension(800, 60));

        int y = 0;
        panel.add(ComponentFactory.getLabel(DcResources.getText("lblName")),
                Layout.getGBC(0, y, 1, 1, 1.0, 1.0,
                GridBagConstraints.NORTHWEST, GridBagConstraints.NONE,
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.