Package at.bestsolution.drawswf.menu

Examples of at.bestsolution.drawswf.menu.DrawFileMenu


   
    public DrawMenuBar(DrawObjectList draw_object_list)
    {
        super();
   
        file_menu_ = new DrawFileMenu(MainWindow.getI18n().getString("MainWindowFile"), MainWindow.getI18n().getString("MainWindowFileMn").charAt(0));
        add(file_menu_);
        edit_menu_ = new DrawEditMenu(MainWindow.getI18n().getString("MainWindowEdit"), MainWindow.getI18n().getString("MainWindowEditMn").charAt(0));
        add(edit_menu_);
        tools_menu_ = new DrawToolsMenu(MainWindow.getI18n().getString("MainWindowTools"), MainWindow.getI18n().getString("MainWindowToolsMn").charAt(0), draw_object_list);
        add(tools_menu_);
View Full Code Here

TOP

Related Classes of at.bestsolution.drawswf.menu.DrawFileMenu

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.