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
|
#ifndef LAYOUT_SINGLE_H
#define LAYOUT_SINGLE_H
#include <stdio.h>
#include <glib.h>
#include <gtk/gtkwidget.h>
#include <gdk/gdkpixbuf.h>
#include "imagesource/imagesource.h"
#include "support/pageextent.h"
#include "print.h"
#include "layoutdb.h"
#include "layout.h"
class Layout_Single_ImageInfo;
class PhotoPrint_State;
class Layout_Single : public Layout, public PageExtent
{
public:
Layout_Single(PhotoPrint_State &state,Layout *oldlayout=NULL);
virtual ~Layout_Single();
const char *GetType();
int GetCapabilities();
int AddImage(const char *filename,bool allowcropping=false,PP_ROTATION rotation=PP_ROTATION_AUTO);
void CopyImage(Layout_ImageInfo *ii);
void Reflow();
void SetPageExtent(PageExtent &pe);
virtual void LayoutToDB(LayoutDB &db);
virtual void DBToLayout(LayoutDB &db);
virtual GtkWidget *CreateWidget();
virtual void RefreshWidget(GtkWidget *widget);
virtual ImageSource *GetImageSource(int page,CMColourDevice target=CM_COLOURDEVICE_PRINTER,CMTransformFactory *factory=NULL,int res=0);
void UpdatePageSize();
Layout_Single_ImageInfo *ImageAt(int page);
virtual void (*SetUnitFunc())(GtkWidget *wid,enum Units unit);
friend class Layout_Single_ImageInfo;
};
class Layout_Single_ImageInfo : public Layout_ImageInfo
{
public:
Layout_Single_ImageInfo(Layout_Single &layout,const char *filename,int page,bool allowcropping=false,PP_ROTATION rotation=PP_ROTATION_AUTO);
Layout_Single_ImageInfo(Layout_Single &layout,Layout_ImageInfo *ii,int page,bool allowcropping=false,PP_ROTATION rotation=PP_ROTATION_AUTO);
virtual ~Layout_Single_ImageInfo();
void DrawThumbnail(GtkWidget *widget,int xpos,int ypos,int width,int height);
virtual ImageSource *GetImageSource(CMColourDevice target=CM_COLOURDEVICE_PRINTER,CMTransformFactory *factory=NULL);
int image_width;
int image_height;
double native_xres;
double native_yres;
int hscale;
int vscale;
private:
void Init();
friend class Layout_Single;
};
#endif
|