Removed or created shared header files used by print kit.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2091 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
/*
|
||||
* PrintProcess.h
|
||||
* Copyright 1999-2000 Y.Takagi. All Rights Reserved.
|
||||
*/
|
||||
|
||||
#ifndef __PRINTPROCESS_H
|
||||
#define __PRINTPROCESS_H
|
||||
|
||||
#include <vector>
|
||||
#include <list>
|
||||
#include <memory>
|
||||
|
||||
#include <Rect.h>
|
||||
#include <Point.h>
|
||||
|
||||
#if (!__MWERKS__ || defined(MSIPL_USING_NAMESPACE))
|
||||
using namespace std;
|
||||
#else
|
||||
#define std
|
||||
#endif
|
||||
|
||||
class BFile;
|
||||
class BPicture;
|
||||
|
||||
class PictureData {
|
||||
public:
|
||||
PictureData(BFile *file);
|
||||
~PictureData();
|
||||
BPoint point;
|
||||
BRect rect;
|
||||
BPicture *picture;
|
||||
};
|
||||
|
||||
class PageData {
|
||||
public:
|
||||
PageData();
|
||||
PageData(BFile *file, bool reverse);
|
||||
bool startEnum();
|
||||
bool enumObject(PictureData **);
|
||||
|
||||
private:
|
||||
BFile *__file;
|
||||
bool __reverse;
|
||||
int __picture_count;
|
||||
int __rest;
|
||||
off_t __offset;
|
||||
bool __hollow;
|
||||
};
|
||||
|
||||
typedef list<PageData *> PageDataList;
|
||||
|
||||
class SpoolData {
|
||||
public:
|
||||
SpoolData(BFile *file, int page_count, int nup, bool reverse);
|
||||
~SpoolData();
|
||||
bool startEnum();
|
||||
bool enumObject(PageData **);
|
||||
|
||||
private:
|
||||
PageDataList __pages;
|
||||
PageDataList::iterator __it;
|
||||
};
|
||||
|
||||
#endif /* __PRINTPROCESS_H */
|
||||
Reference in New Issue
Block a user