]> git.argeo.org Git - lgpl/argeo-commons.git/blob - i18n/commands/OpenDialog.java
Prepare next development cycle
[lgpl/argeo-commons.git] / i18n / commands / OpenDialog.java
1 /*
2 * Copyright (C) 2007-2012 Mathieu Baudier
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.demo.i18n.commands;
17
18 import org.argeo.demo.i18n.I18nDemoMessages;
19 import org.argeo.demo.i18n.I18nDemoPlugin;
20 import org.eclipse.core.commands.AbstractHandler;
21 import org.eclipse.core.commands.ExecutionEvent;
22 import org.eclipse.core.commands.ExecutionException;
23 import org.eclipse.swt.SWT;
24 import org.eclipse.swt.widgets.MessageBox;
25
26 /**
27 * Open a dummy dialog box with internationalized messages.
28 */
29 public class OpenDialog extends AbstractHandler {
30
31 public final static String ID = I18nDemoPlugin.ID + ".openDialog";
32
33 public Object execute(ExecutionEvent event) throws ExecutionException {
34
35 MessageBox mb = new MessageBox(I18nDemoPlugin.getDefault()
36 .getWorkbench().getActiveWorkbenchWindow().getShell(), SWT.OK
37 | SWT.CANCEL);
38
39 // Title
40 mb.setText(I18nDemoMessages.get().OpenDialog_Title);
41
42 // Message
43 mb.setMessage(I18nDemoMessages.get().OpenDialog_Message);
44 mb.open();
45
46 return null;
47 }
48 }