KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > ui > internal > presentations > SystemMenuSize


1 /*******************************************************************************
2  * Copyright (c) 2004, 2006 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials
4  * are made available under the terms of the Eclipse Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Contributors:
9  * IBM Corporation - initial API and implementation
10  *******************************************************************************/

11 package org.eclipse.ui.internal.presentations;
12
13 import org.eclipse.jface.action.ContributionItem;
14 import org.eclipse.swt.widgets.Menu;
15 import org.eclipse.ui.internal.PartPane;
16
17 public class SystemMenuSize extends ContributionItem {
18
19     private PartPane partPane;
20
21     public SystemMenuSize(PartPane pane) {
22         setPane(pane);
23     }
24
25     public void setPane(PartPane pane) {
26         partPane = pane;
27     }
28
29     public void dispose() {
30         partPane = null;
31     }
32
33     public void fill(Menu menu, int index) {
34         if (partPane != null) {
35             partPane.addSizeMenuItem(menu, index);
36         }
37     }
38
39     public boolean isDynamic() {
40         return true;
41     }
42 }
43
Popular Tags