blob: d9ea33ec9bd53055fdad4a9ac76874bff92422e8 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.help.ui.internal.views;
import org.eclipse.jface.action.IToolBarManager;
import org.eclipse.ui.IMemento;
public interface IHelpPartPage {
void addPart(String id, boolean flexible);
void addPart(String id, boolean flexible, boolean grabVertical);
boolean canOpen();
void dispose();
IHelpPart findPart(String id);
int getHorizontalMargin();
String getIconId();
String getId();
int getNumberOfFlexibleParts();
String getText();
IToolBarManager getToolBarManager();
int getVerticalSpacing();
void refilter();
void saveState(IMemento memento);
void setFocus();
void setHorizontalMargin(int value);
void setVerticalSpacing(int value);
void setVisible(boolean visible);
void stop();
void toggleRoleFilter();
}