-
Notifications
You must be signed in to change notification settings - Fork 10
/
layout_poster.h
80 lines (70 loc) · 2.32 KB
/
layout_poster.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#ifndef LAYOUT_POSTER_H
#define LAYOUT_POSTER_H
#include <stdio.h>
#include <glib.h>
#include <gtk/gtkwidget.h>
#include <gdk/gdkpixbuf.h>
#include "imagesource/imagesource.h"
#include "pageextent.h"
#include "gp_cppsupport/gprinter.h"
#include "layoutdb.h"
#include "layout.h"
class Layout_Poster_ImageInfo;
class PhotoPrint_State;
struct PosterFit
{
int width,height;
int xpos,ypos;
int xoffset,yoffset;
int rotation;
double scale;
};
class Layout_Poster : public Layout
{
public:
Layout_Poster(PhotoPrint_State &state,Layout *oldlayout=NULL);
virtual ~Layout_Poster();
const char *GetType();
int GetCapabilities();
int AddImage(const char *filename,bool allowcropping=false,PP_ROTATION rotation=PP_ROTATION_AUTO,
bool fliphorizontal=false,bool flipvertical=false);
void CopyImage(Layout_ImageInfo *ii);
void Reflow();
void SetPageExtent(PageExtent &pe);
void SetMargins(int left,int right,int top,int bottom);
void TilesFromSize();
void SizeFromTiles();
virtual void LayoutToDB(LayoutDB &db);
virtual void DBToLayout(LayoutDB &db);
virtual GtkWidget *CreateWidget();
virtual void RefreshWidget(GtkWidget *widget);
virtual void DrawGridLines(GtkWidget *widget);
virtual void SetCurrentPage(int page);
ImageSource *GetImageSource(int page,CMColourDevice target=CM_COLOURDEVICE_PRINTER,
CMTransformFactory *factory=NULL,int res=0,bool completepage=false);
Layout_Poster_ImageInfo *ImageAt(int page);
void DrawPreview(GtkWidget *widget,int xpos,int ypos,int width,int height);
virtual void (*SetUnitFunc())(GtkWidget *wid,enum Units unit);
int posters,currentposter;
int posterwidth,posterheight;
int paperwidth,paperheight;
int hoverlap,voverlap;
int htiles,vtiles;
friend class Layout_Poster_ImageInfo;
};
class Layout_Poster_ImageInfo : public Layout_ImageInfo
{
public:
Layout_Poster_ImageInfo(Layout_Poster &layout,const char *filename,int page,bool allowcropping=false,
PP_ROTATION rotation=PP_ROTATION_AUTO,bool fliphorizontal=false,bool flipvertical=false);
Layout_Poster_ImageInfo(Layout_Poster &layout,Layout_ImageInfo *ii,int page);
virtual ~Layout_Poster_ImageInfo();
virtual LayoutRectangle *GetBounds();
virtual bool GetSelected();
void DrawThumbnail(GtkWidget *widget,int xpos,int ypos,int width,int height);
// ImageSource *GetImageSource();
// int rotation;
private:
friend class Layout_Poster;
};
#endif