Package br.com.visualmidia.ui.dialog

Examples of br.com.visualmidia.ui.dialog.AboutDialog


        }
        tabFolder.setSelection(checkControlCenter);
    }

    public void openAboutDialog() {
        new AboutDialog(getShell()).open();
    }
View Full Code Here


       
        MenuItem about = new MenuItem (menu, SWT.PUSH);
        about.setText ("Sobre...");
        about.addListener(SWT.Selection, new Listener(){
            public void handleEvent(Event arg0) {
              new AboutDialog(shell).open();
            }
        });
       
        MenuItem exit = new MenuItem (menu, SWT.PUSH);
        exit.setText ("Sair");
View Full Code Here

TOP

Related Classes of br.com.visualmidia.ui.dialog.AboutDialog

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.