Changeset 222 for trunk/src/PrintPter.h
- Timestamp:
- 06/11/06 14:46:38 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/PrintPter.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/PrintPter.h
r221 r222 25 25 { 26 26 /// 27 /// @enum PrintPageOrientation.28 ///29 enum PrintPageOrientation30 {31 PRINT_PAGE_ORIENTATION_PORTRAIT,32 PRINT_PAGE_ORIENTATION_LANDSCAPE33 };34 35 ///36 /// @enum PrintPageLayout37 ///38 enum PrintPageLayout39 {40 PRINT_PAGE_LAYOUT_PLAIN,41 PRINT_PAGE_LAYOUT_2IN1,42 PRINT_PAGE_LAYOUT_4IN143 };44 45 ///46 27 /// @class PrintPter 47 28 /// @brief Print Presenter. … … 50 31 { 51 32 public: 52 PrintPter ( void);33 PrintPter (IDocument *document); 53 34 ~PrintPter (void); 54 35 … … 63 44 64 45 protected: 46 IDocument *m_Document; 65 47 IPrintView *m_View; 66 48 49 void getPageSizeForPrinter (const gchar *printerName, 50 const gchar *sizeName, 51 float *pageWidth, float *pageHeight); 67 52 printerAttributes *getPrinterAttributes (const gchar *printerName); 68 53 void listPrinters (void);
