Package us.thinkable.framework.zed

Examples of us.thinkable.framework.zed.XMenuBar


  private void init(String menuFname) {
    XFrame.frame = this;
    this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
    if (menuFname != null) {
      xmenuBar = new XMenuBar(this, new File(menuFname));
      this.setJMenuBar(xmenuBar);
    }

    //Create the tabpanel
    xtabbedEditorPanel = new XTabbedPanel();
View Full Code Here


    super(frame, title);
    this.frame = frame;
    xtabbedPanel = frame.getXTabbedEditorPanel();
    frame.addEditor(this, title);
    if (menuFname != null) {
      xmenuBar = new XMenuBar(this, new File(menuFname));
    }
  }
View Full Code Here

TOP

Related Classes of us.thinkable.framework.zed.XMenuBar

Copyright © 2018 www.massapicom. 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.