/* Preview Copyright (c) 2002 Haiku. Author: Michael Pfeiffer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include "PrintJobReader.h" class PreviewPage { int32 fPage; int32 fNumberOfPictures; BPicture* fPictures; BPoint* fPoints; BRect* fRects; status_t fStatus; public: PreviewPage(int32 page, PrintJobPage* pjp); ~PreviewPage(); status_t InitCheck() const; int32 Page() const { return fPage; } void Draw(BView* view); }; class PreviewView : public BView { int32 fPage; int32 fZoom; PrintJobReader fReader; PreviewPage* fCachedPage; float ZoomFactor() const; BRect PageRect() const; public: PreviewView(BFile* jobFile, BRect rect); ~PreviewView(); status_t InitCheck() const; void Draw(BRect r); void FrameResized(float width, float height); void FixScrollbars(); bool ShowsFirstPage() const; bool ShowsLastPage() const; int NumberOfPages() const; void ShowNextPage(); void ShowPrevPage(); bool CanZoomIn() const; bool CanZoomOut() const; void ZoomIn(); void ZoomOut(); }; class PreviewWindow : public BWindow { BButton *fNext, *fPrev, *fZoomIn, *fZoomOut; PreviewView* fPreview; BScrollView* fPreviewScroller; enum { MSG_NEXT_PAGE = 'pwnp', MSG_PREV_PAGE = 'pwpp', MSG_ZOOM_IN = 'pwzi', MSG_ZOOM_OUT = 'pwzo' }; void UpdateControls(); typedef BWindow inherited; public: PreviewWindow(BFile* jobFile); ~PreviewWindow() {}; void MessageReceived(BMessage* m); };