sql >> Databáze >  >> Database Tools >> MySQL Workbench

Odstraňte nebo deaktivujte tlačítko X zavřít zobrazené na RAP/RCP EditorPart

můžete to udělat takto (to, co jsem napsal, je přibližně stejné jako:http://wiki.eclipse.org /RCP_Custom_Look_and_Feel ):Ve své třídě ApplicationWorkbenchWindowAdvisor si můžete zaregistrovat svou vlastní PresentationFacory jako:

  public void preWindowOpen() {    
    WorkbenchAdapterBuilder.registerAdapters();    
    IWorkbenchWindowConfigurer configurer = getWindowConfigurer();        
    configurer.setPresentationFactory(new UnCloseableEditorPresentationFactory());    
  } 

třída UnCloseableEditorPresentationFactory rozšiřuje WorkbenchPresentationFactory, metodu můžete jednoduše přepsat

public StackPresentation creatEditorPresentation(Composite parent,IStackPresentationSite site)

as followings :
  DefaultTabFolder folder = new UnCloseableEditorFolder(parent, 
       editorTabPosition | SWT.BORDER,    
       site.supportsState(IStackPresentationSite.STATE_MINIMIZED),          
       site.supportsState(IStackPresentationSite.STATE_MAXIMIZED));
 // other code int this method is the same as the parent class

 then is the class UnCloseableFolder

 import org.eclipse.swt.SWT;  
 import org.eclipse.swt.widgets.Composite;  
 import org.eclipse.ui.internal.presentations.defaultpresentation.DefaultTabFolder;    
 import org.eclipse.ui.internal.presentations.util.AbstractTabItem;  
 public class UnCloseableEditorFolder extends DefaultTabFolder {   
     public UnCloseableEditorFolder(Composite parent, int flags,     
         boolean allowMin, boolean allowMax) {     
         super(parent, flags, allowMin, allowMax);   
     }  

  @SuppressWarnings("restriction")   
  public AbstractTabItem add(int index, int flags)   {     
      return super.add(index, flags ^ SWT.CLOSE);   
  }
 } 

pak můžete odstranit tlačítko "X" v EditorPart. Funguje to na mém počítači~~



  1. PHP Závažná chyba při pokusu o přístup k phpmyadmin mb_detect_encoding

  2. co ještě potřebuji kromě $cfg['Servers'][$i]['ssl']=TRUE

  3. Jak extrahovat databázi MSSQLServer jako .dacpac bez VerifyExtraction?

  4. Generovat skripty SQL serveru z příkazového řádku?