blob: eb5f5d42afb09c4bc4a136760036037d521a7ace [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 Rushan R. Gilmullin and others.
* All rights reserved. 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:
* Rushan R. Gilmullin - initial API and implementation
*******************************************************************************/
package org.eclipse.osbp.vaaclipse.widgets;
import java.util.EventObject;
import com.vaadin.shared.communication.ServerRpc;
import com.vaadin.shared.ui.splitpanel.HorizontalSplitPanelState;
import com.vaadin.ui.HorizontalSplitPanel;
/**
* @author rushan
*
*/
public class SashWidgetHorizontal extends HorizontalSplitPanel implements
SashWidget {
private SashWidgetExtension extension = new SashWidgetExtension(this);
public void addListener(SplitPositionChangedListener listener) {
this.extension.addListener(listener);
}
public SashWidgetHorizontal() {
this.setImmediate(true);
}
@Override
public void fireEvent(EventObject event) {
super.fireEvent(event);
}
@Override
public HorizontalSplitPanelState getState() {
return super.getState();
}
@Override
public <T extends ServerRpc> void registerRpc(T implementation,
Class<T> rpcInterfaceType) {
super.registerRpc(implementation, rpcInterfaceType);
}
// @Override
// public void changeVariables(Object source, Map<String, Object> variables)
// {
// super.changeVariables(source, variables);
//
// extension.fireEvent(this.getSplitPosition());
//
// }
}