* rewrote header file

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24684 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Karsten Heimrich
2008-03-30 17:42:13 +00:00
parent 1bc2fbc25d
commit e0a750ce0b
+23 -33
View File
@@ -1,25 +1,19 @@
/******************************************************************************* /*
/ * Copyright 2008, Haiku Inc.
/ File: PrintJob.h * Distributed under the terms of the MIT License.
/ */
/ Description: BPrintJob runs a printing session.
/
/ Copyright 1996-98, Be Incorporated, All Rights Reserved
/
*******************************************************************************/
#ifndef _PRINTSESSION_H #ifndef _PRINTSESSION_H
#define _PRINTSESSION_H #define _PRINTSESSION_H
#include <BeBuild.h> #include <BeBuild.h>
#include <Picture.h> /* For convenience */ #include <Picture.h>
#include <Rect.h> #include <Rect.h>
class BFile; class BFile;
class BView; class BView;
/*----------------------------------------------------------------*/
/*----- BPrintJob related structures -----------------------------*/
struct print_file_header { struct print_file_header {
int32 version; int32 version;
@@ -30,23 +24,21 @@ struct print_file_header {
int32 _reserved_5_; int32 _reserved_5_;
}; };
struct _page_header_; struct _page_header_;
/*----------------------------------------------------------------*/
/*----- BPrintJob class ------------------------------------------*/
class BPrintJob { class BPrintJob {
public: public:
enum // These values are returned by PrinterType() enum {
{
B_BW_PRINTER = 0, B_BW_PRINTER = 0,
B_COLOR_PRINTER B_COLOR_PRINTER
}; };
BPrintJob(const char *job_name); BPrintJob(const char *job_name);
virtual ~BPrintJob(); virtual ~BPrintJob();
void BeginJob(); void BeginJob();
void CommitJob(); void CommitJob();
@@ -58,9 +50,9 @@ virtual ~BPrintJob();
bool CanContinue(); bool CanContinue();
virtual void DrawView(BView *a_view, BRect a_rect, BPoint where); virtual void DrawView(BView *a_view, BRect a_rect, BPoint where);
BMessage *Settings() /* const */ ; BMessage * Settings() /* const */ ;
void SetSettings(BMessage *a_msg); void SetSettings(BMessage *a_msg);
bool IsSettingsMessageValid(BMessage *a_msg) const; bool IsSettingsMessageValid(BMessage *a_msg) const;
@@ -73,18 +65,17 @@ virtual void DrawView(BView *a_view, BRect a_rect, BPoint where);
int32 PrinterType(void * = NULL) const; int32 PrinterType(void * = NULL) const;
/*----- Private or reserved -----------------------------------------*/
private: private:
virtual void _ReservedPrintJob1();
virtual void _ReservedPrintJob1(); virtual void _ReservedPrintJob2();
virtual void _ReservedPrintJob2(); virtual void _ReservedPrintJob3();
virtual void _ReservedPrintJob3(); virtual void _ReservedPrintJob4();
virtual void _ReservedPrintJob4();
BPrintJob(const BPrintJob &); BPrintJob(const BPrintJob &);
BPrintJob &operator=(const BPrintJob &); BPrintJob &operator=(const BPrintJob &);
void _RecurseView(BView *view, BPoint origin, BPicture *p, BRect r); void _RecurseView(BView *view, BPoint origin,
BPicture *picture, BRect r);
void _GetMangledName(char *buffer, size_t bufferSize) const; void _GetMangledName(char *buffer, size_t bufferSize) const;
void _HandlePageSetup(BMessage *setup); void _HandlePageSetup(BMessage *setup);
bool _HandlePrintSetup(BMessage *setup); bool _HandlePrintSetup(BMessage *setup);
@@ -95,9 +86,10 @@ virtual void _ReservedPrintJob4();
void _AddSetupSpec(); void _AddSetupSpec();
void _AddPicture(BPicture &picture, BRect &rect, BPoint &where); void _AddPicture(BPicture &picture, BRect &rect, BPoint &where);
char* _GetCurrentPrinterName() const; char * _GetCurrentPrinterName() const;
void _LoadDefaultSettings(); void _LoadDefaultSettings();
private:
char * fPrintJobName; char * fPrintJobName;
int32 fPageNumber; int32 fPageNumber;
BFile * fSpoolFile; BFile * fSpoolFile;
@@ -106,8 +98,8 @@ virtual void _ReservedPrintJob4();
BRect fUsableSize; BRect fUsableSize;
status_t fError; status_t fError;
char fSpoolFileName[256]; char fSpoolFileName[256];
BMessage *fSetupMessage; BMessage * fSetupMessage;
BMessage *fDefaultSetupMessage; BMessage * fDefaultSetupMessage;
char fAbort; char fAbort;
int32 fFirstPage; int32 fFirstPage;
int32 fLastPage; int32 fLastPage;
@@ -118,7 +110,5 @@ virtual void _ReservedPrintJob4();
uint32 _reserved[2]; uint32 _reserved[2];
}; };
/*-------------------------------------------------------------*/
/*-------------------------------------------------------------*/
#endif /* _PRINTSESSION_H */ #endif // _PRINTSESSION_H