#include <zoomops.h>
Inheritance diagram for OpZoomFitDrawingDescriptor:
Public Member Functions | |
OpZoomFitDrawingDescriptor () | |
Constructs an OpDescriptor for the "Zoom to drawing" button. | |
Protected Member Functions | |
virtual DocRect | GetRect (Spread *pSpread) |
Provides the rectangle that OpZoomDescriptor::HandleButtonMsg will zoom in on. |
Definition at line 469 of file zoomops.h.
|
Constructs an OpDescriptor for the "Zoom to drawing" button.
Definition at line 2101 of file zoomops.cpp. 02102 : OpZoomDescriptor(OPTOKEN_ZOOMDRAWING, _R(IDS_ZOOMDRAWINGSTATUSTEXT), 02103 0, _R(IDBBL_FIT_TO_DRAWING)) 02104 { 02105 // Empty. 02106 }
|
|
Provides the rectangle that OpZoomDescriptor::HandleButtonMsg will zoom in on.
Reimplemented from OpZoomDescriptor. Definition at line 2126 of file zoomops.cpp. 02127 { 02128 return pSpread->GetPageVisibleBounds(); 02129 }
|