comparison dwt/printing/PrinterData.d @ 122:2e671fa40eec

Ported dwt.dnd, dwt.opengl, dwt.printing and dwt.program
author Jacob Carlborg <doob@me.com>
date Wed, 31 Dec 2008 21:01:13 +0100
parents 10760eb00d08
children
comparison
equal deleted inserted replaced
121:e1c48e37e0f5 122:2e671fa40eec
111 111
112 /** 112 /**
113 * <code>scope</code> field value indicating that 113 * <code>scope</code> field value indicating that
114 * all pages should be printed 114 * all pages should be printed
115 */ 115 */
116 public static final int ALL_PAGES = 0; 116 public static const int ALL_PAGES = 0;
117 117
118 /** 118 /**
119 * <code>scope</code> field value indicating that 119 * <code>scope</code> field value indicating that
120 * the range of pages specified by startPage and endPage 120 * the range of pages specified by startPage and endPage
121 * should be printed 121 * should be printed
122 */ 122 */
123 public static final int PAGE_RANGE = 1; 123 public static const int PAGE_RANGE = 1;
124 124
125 /** 125 /**
126 * <code>scope</code> field value indicating that 126 * <code>scope</code> field value indicating that
127 * the current selection should be printed 127 * the current selection should be printed
128 */ 128 */
129 public static final int SELECTION = 2; 129 public static const int SELECTION = 2;
130 130
131 /** 131 /**
132 * private, platform-specific data 132 * private, platform-specific data
133 * On Windows, this contains a copy of the DEVMODE struct 133 * On Windows, this contains a copy of the DEVMODE struct
134 * returned from the <code>PrintDialog</code>. 134 * returned from the <code>PrintDialog</code>.