Changeset 220 for trunk/src/IPrintView.h
- Timestamp:
- 06/11/06 09:47:12 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/IPrintView.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/IPrintView.h
r219 r220 93 93 94 94 /// 95 /// @brief Selects a printer from the list. 96 /// 97 /// @param printerIndex The index of the printer to select. 98 /// 99 virtual void selectPrinter (unsigned int printerIndex) = 0; 100 101 /// 95 102 /// @brief Changes the sensitivity of the "Collate" option. 96 103 /// … … 114 121 virtual void sensitivePageRange (gboolean sensitive) = 0; 115 122 123 /// 124 /// @brief Changes the sensitivity of the "Print" button. 125 /// 126 /// The view must change the sensitivity (it's called enabled or 127 /// disabled on some toolkits) of the "Print" button. 128 /// 129 /// @param sensitive Set to TRUE if need to sensitive (enable) the 130 /// button or FALSE to insensitive (disable) it. 131 /// 132 virtual void sensitivePrintButton (gboolean sensitive) = 0; 133 134 116 135 protected: 117 136 /// The presenter that controls the view.
