Class OleFrame
- All Implemented Interfaces:
- Drawable
This object implements the OLE Interfaces IUnknown and IOleInPlaceFrame
OleFrame allows the container to do the following:
- position and size the ActiveX Control or OLE Document within the application
- insert menu items from the application into the OLE Document's menu
- activate and deactivate the OLE Document's menus
- position the OLE Document's menu in the application
- translate accelerator keystrokes intended for the container's frame
- Styles
- BORDER
- Events
- Dispose, Move, Resize
- See Also:
- 
Field SummaryFields inherited from class org.eclipse.swt.widgets.WidgetnativeZoom
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionMenuItem[]Returns the application menu items that will appear in the Container location when an OLE Document is in-place activated.MenuItem[]Returns the application menu items that will appear in the File location when an OLE Document is in-place activated.MenuItem[]Returns the application menu items that will appear in the Window location when an OLE Document is in-place activated.voidsetContainerMenus(MenuItem[] containerMenus) Specify the menu items that should appear in the Container location when an OLE Document is in-place activated.voidsetFileMenus(MenuItem[] fileMenus) Specify the menu items that should appear in the File location when an OLE Document is in-place activated.voidsetWindowMenus(MenuItem[] windowMenus) Set the menu items that should appear in the Window location when an OLE Document is in-place activated.Methods inherited from class org.eclipse.swt.widgets.Compositechanged, checkSubclass, drawBackground, getBackgroundMode, getChildren, getLayout, getLayoutDeferred, getTabList, isLayoutDeferred, layout, layout, layout, layout, layout, setBackgroundMode, setFocus, setLayout, setLayoutDeferred, setTabList, toStringMethods inherited from class org.eclipse.swt.widgets.ScrollablecomputeTrim, getClientArea, getHorizontalBar, getScrollbarsMode, getVerticalBar, setScrollbarsModeMethods inherited from class org.eclipse.swt.widgets.ControladdControlListener, addDragDetectListener, addFocusListener, addGestureListener, addHelpListener, addKeyListener, addMenuDetectListener, addMouseListener, addMouseMoveListener, addMouseTrackListener, addMouseWheelListener, addPaintListener, addTouchListener, addTraverseListener, computeSize, computeSize, dragDetect, dragDetect, forceFocus, getAccessible, getBackground, getBackgroundImage, getBorderWidth, getBounds, getCursor, getDragDetect, getEnabled, getFont, getForeground, getLayoutData, getLocation, getMenu, getMonitor, getOrientation, getParent, getRegion, getShell, getSize, getTextDirection, getToolTipText, getTouchEnabled, getVisible, internal_dispose_GC, internal_new_GC, isEnabled, isFocusControl, isReparentable, isVisible, moveAbove, moveBelow, pack, pack, print, redraw, redraw, removeControlListener, removeDragDetectListener, removeFocusListener, removeGestureListener, removeHelpListener, removeKeyListener, removeMenuDetectListener, removeMouseListener, removeMouseMoveListener, removeMouseTrackListener, removeMouseWheelListener, removePaintListener, removeTouchListener, removeTraverseListener, requestLayout, setBackground, setBackgroundImage, setBounds, setBounds, setCapture, setCursor, setDragDetect, setEnabled, setFont, setForeground, setLayoutData, setLocation, setLocation, setMenu, setOrientation, setParent, setRedraw, setRegion, setSize, setSize, setTextDirection, setToolTipText, setTouchEnabled, setVisible, toControl, toControl, toDisplay, toDisplay, traverse, traverse, traverse, updateMethods inherited from class org.eclipse.swt.widgets.WidgetaddDisposeListener, addListener, addTypedListener, checkWidget, dispose, getData, getData, getDisplay, getListeners, getStyle, getTypedListeners, isAutoDirection, isDisposed, isListening, notifyListeners, removeDisposeListener, removeListener, removeListener, removeListener, removeTypedListener, reskin, setData, setDataMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.eclipse.swt.graphics.DrawableisAutoScalable
- 
Constructor Details- 
OleFrameCreate an OleFrame child widget using style bits to select a particular look or set of properties.- Parameters:
- parent- a composite widget (cannot be null)
- style- the bitwise OR'ing of widget styles
- Throws:
- IllegalArgumentException-- ERROR_NULL_ARGUMENT when the parent is null
 
- SWTException-- ERROR_THREAD_INVALID_ACCESS when called from the wrong thread
 
 
 
- 
- 
Method Details- 
getContainerMenusReturns the application menu items that will appear in the Container location when an OLE Document is in-place activated.When an OLE Document is in-place active, the Document provides its own menus but the application is given the opportunity to merge some of its menus into the menubar. The application is allowed to insert its menus in three locations: File (far left), Container(middle) and Window (far right just before Help). The OLE Document retains control of the Edit, Object and Help menu locations. Note that an application can insert more than one menu into a single location. - Returns:
- the application menu items that will appear in the Container location when an OLE Document is in-place activated.
 
- 
getFileMenusReturns the application menu items that will appear in the File location when an OLE Document is in-place activated.When an OLE Document is in-place active, the Document provides its own menus but the application is given the opportunity to merge some of its menus into the menubar. The application is allowed to insert its menus in three locations: File (far left), Container(middle) and Window (far right just before Help). The OLE Document retains control of the Edit, Object and Help menu locations. Note that an application can insert more than one menu into a single location. - Returns:
- the application menu items that will appear in the File location when an OLE Document is in-place activated.
 
- 
getWindowMenusReturns the application menu items that will appear in the Window location when an OLE Document is in-place activated.When an OLE Document is in-place active, the Document provides its own menus but the application is given the opportunity to merge some of its menus into the menubar. The application is allowed to insert its menus in three locations: File (far left), Container(middle) and Window (far right just before Help). The OLE Document retains control of the Edit, Object and Help menu locations. Note that an application can insert more than one menu into a single location. - Returns:
- the application menu items that will appear in the Window location when an OLE Document is in-place activated.
 
- 
setContainerMenusSpecify the menu items that should appear in the Container location when an OLE Document is in-place activated.When an OLE Document is in-place active, the Document provides its own menus but the application is given the opportunity to merge some of its menus into the menubar. The application is allowed to insert its menus in three locations: File (far left), Container(middle) and Window (far right just before Help). The OLE Document retains control of the Edit, Object and Help menu locations. Note that an application can insert more than one menu into a single location. This method must be called before in place activation of the OLE Document. After the Document is activated, the menu bar will not be modified until a subsequent activation. - Parameters:
- containerMenus- an array of top level MenuItems to be inserted into the Container location of the menubar
 
- 
setFileMenusSpecify the menu items that should appear in the File location when an OLE Document is in-place activated.When an OLE Document is in-place active, the Document provides its own menus but the application is given the opportunity to merge some of its menus into the menubar. The application is allowed to insert its menus in three locations: File (far left), Container(middle) and Window (far right just before Help). The OLE Document retains control of the Edit, Object and Help menu locations. Note that an application can insert more than one menu into a single location. This method must be called before in place activation of the OLE Document. After the Document is activated, the menu bar will not be modified until a subsequent activation. - Parameters:
- fileMenus- an array of top level MenuItems to be inserted into the File location of the menubar
 
- 
setWindowMenusSet the menu items that should appear in the Window location when an OLE Document is in-place activated.When an OLE Document is in-place active, the Document provides its own menus but the application is given the opportunity to merge some of its menus into the menubar. The application is allowed to insert its menus in three locations: File (far left), Container(middle) and Window (far right just before Help). The OLE Document retains control of the Edit, Object and Help menu locations. Note that an application can insert more than one menu into a single location. This method must be called before in place activation of the OLE Document. After the Document is activated, the menu bar will not be modified until a subsequent activation. - Parameters:
- windowMenus- an array of top level MenuItems to be inserted into the Window location of the menubar
 
 
-