blob: 8ebdf8ea8202d89f08dc7ccbf005b31077e8db51 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2004 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.search2.internal.ui.basic.views;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.search.ui.text.AbstractTextSearchViewPage;
public class SetLayoutAction extends Action {
private AbstractTextSearchViewPage fPage;
private int fLayout;
public SetLayoutAction(AbstractTextSearchViewPage page, String label, String tooltip, int layout) {
super(label, IAction.AS_CHECK_BOX);
fPage= page;
setToolTipText(tooltip); //$NON-NLS-1$
fLayout= layout;
}
public void run() {
fPage.setLayout(fLayout);
}
public int getLayout() {
return fLayout;
}
}