Examples of DcMinimalisticItemView


Examples of net.datacrow.console.windows.itemforms.DcMinimalisticItemView

        public void run() {
            DcModule mod = DcModules.get(module);

            String msg = DcResources.getText(msgID);
            if (mod.getType() == DcModule._TYPE_PROPERTY_MODULE) {
                DcMinimalisticItemView view = ((DcPropertyModule) mod).getForm();
                view.setStatus(msg);
            } else if (mod.getType() == DcModule._TYPE_TEMPLATE_MODULE) {
                DcMinimalisticItemView form = ((TemplateModule) mod).getForm();
                form.setStatus(msg);            
            } else {
                if (tab == MainFrame._INSERTTAB) {
                    mod.getCurrentInsertView().setStatus(msg);
                } else if (tab == MainFrame._SEARCHTAB) {
                    mod.getCurrentSearchView().setStatus(msg);
View Full Code Here

Examples of net.datacrow.console.windows.itemforms.DcMinimalisticItemView

            if (module.isTopModule() && module.getFilterForm(false) != null)
                module.getFilterForm(false).setFont(fontNormal);
        }
       
        if (module instanceof DcPropertyModule) {
            DcMinimalisticItemView form = ((DcPropertyModule) module).getForm();
            form.setFont(fontNormal);
        }

        module.applySettings();

        if (module.getSearchView() != null)
View Full Code Here

Examples of net.datacrow.console.windows.itemforms.DcMinimalisticItemView

               
                if (module.getFileRenamerDialog(false) != null)
                    SwingUtilities.updateComponentTreeUI(module.getFileRenamerDialog(false).getContentPane());
               
                if (module.getType() == DcModule._TYPE_PROPERTY_MODULE) {
                    DcMinimalisticItemView view = ((DcPropertyModule) module).getForm();
                    if (view != null
                        SwingUtilities.updateComponentTreeUI(((DcPropertyModule) module).getForm().getContentPane());
                }
                   
                if (module.getType() == DcModule._TYPE_TEMPLATE_MODULE)
                    SwingUtilities.updateComponentTreeUI(((TemplateModule) module).getForm().getContentPane());
               
                MasterView[] views = module.getViews();
                if (views != null) {
                    for (int i = 0; i < views.length; i++)  {
                        MasterView view = views[i];
                        if (view.get(MasterView._LIST_VIEW) != null)
                            SwingUtilities.updateComponentTreeUI(view.get(MasterView._LIST_VIEW));
                        if (view.get(MasterView._TABLE_VIEW) != null)
                            SwingUtilities.updateComponentTreeUI(view.get(MasterView._TABLE_VIEW));
                    }
                }
            }
           
            try {
View Full Code Here

Examples of net.datacrow.console.windows.itemforms.DcMinimalisticItemView

     * Initializes the simple item view.
     */
    @Override
    public void initializeUI() {
        if (form == null)
            form = new DcMinimalisticItemView(getIndex(), false);
    }
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.