Changeset 221 for trunk/src/IPrintView.h
- Timestamp:
- 06/11/06 11:05:39 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/IPrintView.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/IPrintView.h
r220 r221 62 62 63 63 /// 64 /// @brief Adds a new page size to the list. 65 /// 66 /// @param name The possibly translated name of the page size. 67 /// @param value The value the ePDFView internally uses to know 68 /// which page size is. 69 /// 70 virtual void addPageSize (const gchar *name, 71 const gchar *value) = 0; 72 73 /// 64 74 /// @brief Adds a new printer to the list of printer. 65 75 /// … … 77 87 78 88 /// 89 /// @brief Deletes all sizes from the list of page sizes. 90 /// 91 virtual void clearPageSizeList (void) = 0; 92 93 /// 79 94 /// @brief Gets the number of copies to do. 80 95 /// … … 85 100 86 101 /// 102 /// @brief Gets the name of the currently selected printer. 103 /// 104 /// @return The name of the printer that is currently selected. 105 /// The name returned is the same as the name passed 106 /// to the view using the addPrinter() function. 107 /// 108 virtual gchar *getSelectedPrinterName (void) = 0; 109 110 /// 87 111 /// @brief Check is the "All Pages" range option is selected. 88 112 /// … … 91 115 /// 92 116 virtual gboolean isSelectedAllPagesRangeOption (void) = 0; 117 118 /// 119 /// @brief Selects a page size. 120 /// 121 /// @param pageSizeInde The index of the page size to select. 122 /// 123 virtual void selectPageSize (unsigned int pageSizeIndex) = 0; 93 124 94 125 ///
