Changeset 231 for trunk/src/IPrintView.h
- Timestamp:
- 06/13/06 15:16:36 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/IPrintView.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/IPrintView.h
r226 r231 82 82 /// @param location The printer's location. 83 83 /// 84 virtual void addPrinter (const gchar *name, int jobs,84 virtual void addPrinter (const gchar *name, gint jobs, 85 85 const gchar *state, 86 86 const gchar *location) = 0; 87 87 88 88 /// 89 /// @brief Adds a new resolution to the list. 90 /// 91 /// @param name The possibly translated name of the resolution. 92 /// @param value The value the ePDFView internally uses to know 93 /// which resolution is. 94 /// 95 virtual void addResolution (const gchar *name, 96 const gchar *value) = 0; 97 98 /// 89 99 /// @brief Deletes all sizes from the list of page sizes. 90 100 /// 91 101 virtual void clearPageSizeList (void) = 0; 102 103 /// 104 /// @brief Deletes all resolutions from the list of resolutions. 105 /// 106 virtual void clearResolutionList (void) = 0; 92 107 93 108 /// … … 97 112 /// range is between 1 and 999. 98 113 /// 99 virtual unsignedint getNumberOfCopies (void) = 0;114 virtual guint getNumberOfCopies (void) = 0; 100 115 101 116 /// … … 173 188 /// @brief Selects a page size. 174 189 /// 175 /// @param pageSizeInde The index of the page size to select.190 /// @param pageSizeIndex The index of the page size to select. 176 191 /// 177 192 virtual void selectPageSize (guint pageSizeIndex) = 0; … … 183 198 /// 184 199 virtual void selectPrinter (guint printerIndex) = 0; 200 201 /// 202 /// @brief Selects a page size. 203 /// 204 /// @param resolutionIndex The index of the resolution to select. 205 /// 206 virtual void selectResolution (guint resolutionIndex) = 0; 185 207 186 208 ///
