如何获取关于,偏好和退出菜单 : Win32 « SWT « Java 教程

En
Java 教程
1. 语言基础
2. 数据类型
3. 操作符
4. 流程控制
5. 类定义
6. 开发相关
7. 反射
8. 正则表达式
9. 集合
10. 线
11. 文件
12. 泛型
13. 本土化
14. Swing
15. Swing事件
16. 二维图形
17. SWT
18. SWT 二维图形
19. 网络
20. 数据库
21. Hibernate
22. JPA
23. JSP
24. JSTL
25. Servlet
26. Web服务SOA
27. EJB3
28. Spring
29. PDF
30. 电子邮件
31. 基于J2ME
32. J2EE应用
33. XML
34. 设计模式
35. 日志
36. 安全
37. Apache工具
38. 蚂蚁编译
39. JUnit单元测试
Java
Java 教程 » SWT » Win32 
17. 127. 8. 如何获取关于,偏好和退出菜单
/*******************************************************************************
 * Copyright (c) 2000, 2005 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

/*
 * How to access About, Preferences and Quit menus on carbon.
 * NOTE: This snippet uses internal SWT packages that are
 * subject to change without notice.
 
 * For a list of all SWT example snippets see
 * http://www.eclipse.org/swt/snippets/
 */

import org.eclipse.swt.internal.*;
import org.eclipse.swt.internal.carbon.*;

import org.eclipse.swt.*;
import org.eclipse.swt.widgets.*;

public class Snippet178 {

  private static final int kHICommandPreferences = ('p' << 24('r' << 16('e' << 8'f';

  private static final int kHICommandAbout = ('a' << 24('b' << 16('o' << 8'u';

  private static final int kHICommandServices = ('s' << 24('e' << 16('r' << 8'v';

  public static void main(String[] arg) {
    Display.setAppName("AppMenu")// sets name in Dock
    Display display = new Display();
    hookApplicationMenu(display, "About AppMenu");
    Shell shell = new Shell(display);
    shell.setText("Main Window");
    shell.open();
    while (!shell.isDisposed())
      if (!display.readAndDispatch())
        display.sleep();

    display.dispose();
  }

  static void hookApplicationMenu(Display display, final String aboutName) {
    // Callback target
    Object target = new Object() {
      int commandProc(int nextHandler, int theEvent, int userData) {
        if (OS.GetEventKind(theEvent== OS.kEventProcessCommand) {
          HICommand command = new HICommand();
          OS.GetEventParameter(theEvent, OS.kEventParamDirectObject, OS.typeHICommand, null,
              HICommand.sizeof, null, command);
          switch (command.commandID) {
          case kHICommandPreferences:
            return handleCommand("Preferences")//$NON-NLS-1$
          case kHICommandAbout:
            return handleCommand(aboutName);
          default:
            break;
          }
        }
        return OS.eventNotHandledErr;
      }

      int handleCommand(String command) {
        Shell shell = new Shell();
        MessageBox preferences = new MessageBox(shell, SWT.ICON_WARNING);
        preferences.setText(command);
        preferences.open();
        shell.dispose();
        return OS.noErr;
      }
    };

    final Callback commandCallback = new Callback(target, "commandProc"3)//$NON-NLS-1$
    int commandProc = commandCallback.getAddress();
    if (commandProc == 0) {
      commandCallback.dispose();
      return// give up
    }

    // Install event handler for commands
    int[] mask = new int[] { OS.kEventClassCommand, OS.kEventProcessCommand };
    OS.InstallEventHandler(OS.GetApplicationEventTarget(), commandProc, mask.length / 2, mask, 0,
        null);

    // create About ... menu command
    int[] outMenu = new int[1];
    short[] outIndex = new short[1];
    if (OS.GetIndMenuItemWithCommandID(0, kHICommandPreferences, 1, outMenu, outIndex== OS.noErr
        && outMenu[0!= 0) {
      int menu = outMenu[0];

      int l = aboutName.length();
      char buffer[] new char[l];
      aboutName.getChars(0, l, buffer, 0);
      int str = OS.CFStringCreateWithCharacters(OS.kCFAllocatorDefault, buffer, l);
      OS.InsertMenuItemTextWithCFString(menu, str, (short00, kHICommandAbout);
      OS.CFRelease(str);

      // add separator between About & Preferences
      OS.InsertMenuItemTextWithCFString(menu, 0(short1, OS.kMenuItemAttrSeparator, 0);

      // enable pref menu
      OS.EnableMenuCommand(menu, kHICommandPreferences);

      // disable services menu
      OS.DisableMenuCommand(menu, kHICommandServices);
    }

    // schedule disposal of callback object
    display.disposeExec(new Runnable() {
      public void run() {
        commandCallback.dispose();
      }
    });
  }
}
17. 127. Win32
17. 127. 1. 使用系统图标图像使用系统图标图像
17. 127. 2. 调用该系统的文字编辑器
17. 127. 3. 调用一个外部批处理文件
17. 127. 4. 加载系统文件图标加载系统文件图标
17. 127. 5. 在Word中嵌入一个applet (Win32 )
17. 127. 6. OLE and ActiveX: browse the typelibinfo for a program id (win32 only)
17. 127. 7. OLE和ActiveX :获取IE浏览器控制事件(Win32)OLE和ActiveX :获取IE浏览器控制事件(Win32)
17. 127. 8. 如何获取关于,偏好和退出菜单
17. 127. 9. 添加系统设置更改监听
17. 127. 10. 检测系统设置改变检测系统设置改变
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.