All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jface.menus.AbstractTrimWidget Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2006, 2015 IBM Corporation and others.
 *
 * This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 ******************************************************************************/

package org.eclipse.jface.menus;

import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.CoolBar;
import org.eclipse.swt.widgets.Menu;
import org.eclipse.swt.widgets.ToolBar;

/**
 * This extension to the {@link IWidget} interface allows clients adding
 * elements to the trim to receive notifications if the User moves the widget to
 * another trim area.
 * 

* This class is intended to be the base for any trim contributions. *

* @since 3.2 */ public abstract class AbstractTrimWidget implements IWidget { /** * This method is called to initially construct the widget and is also called * whenever the widget's composite has been moved to a trim area on a different * side of the workbench. It is the client's responsibility to control the * life-cycle of the Control it manages. *

* For example: If the implementation is constructing a {@link ToolBar} and the * orientation were to change from horizontal to vertical it would have to * dispose its old ToolBar and create a new one with the correct * orientation. *

*

* The sides can be one of: *

*
    *
  • {@link SWT#TOP}
  • *
  • {@link SWT#BOTTOM}
  • *
  • {@link SWT#LEFT}
  • *
  • {@link SWT#RIGHT}
  • *
* * @param parent The parent to (re)create the widget under * * @param oldSide The previous side ({@link SWT#DEFAULT} on the initial fill) * @param newSide The current side */ public abstract void fill(Composite parent, int oldSide, int newSide); @Override public abstract void dispose(); @Override public void fill(Composite parent) { } @Override public void fill(Menu parent, int index) { } @Override public void fill(ToolBar parent, int index) { } @Override public void fill(CoolBar parent, int index) { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy