xref: /trunk/main/vcl/inc/salptype.hxx (revision 914d351e5f5b84e4342a86d6ab8d4aca7308b9bd)
1*161f4cd1SAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*161f4cd1SAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*161f4cd1SAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*161f4cd1SAndrew Rist  * distributed with this work for additional information
6*161f4cd1SAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*161f4cd1SAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*161f4cd1SAndrew Rist  * "License"); you may not use this file except in compliance
9*161f4cd1SAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*161f4cd1SAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*161f4cd1SAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*161f4cd1SAndrew Rist  * software distributed under the License is distributed on an
15*161f4cd1SAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*161f4cd1SAndrew Rist  * KIND, either express or implied.  See the License for the
17*161f4cd1SAndrew Rist  * specific language governing permissions and limitations
18*161f4cd1SAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*161f4cd1SAndrew Rist  *************************************************************/
21*161f4cd1SAndrew Rist 
22*161f4cd1SAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir #ifndef _SV_SALPTYPE_HXX
25cdf0e10cSrcweir #define _SV_SALPTYPE_HXX
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include <vcl/sv.h>
28cdf0e10cSrcweir 
29cdf0e10cSrcweir // --------------------
30cdf0e10cSrcweir // - SalJobSetupFlags -
31cdf0e10cSrcweir // --------------------
32cdf0e10cSrcweir 
33cdf0e10cSrcweir #define SAL_JOBSET_ORIENTATION                  ((sal_uLong)0x00000001)
34cdf0e10cSrcweir #define SAL_JOBSET_PAPERBIN                     ((sal_uLong)0x00000002)
35cdf0e10cSrcweir #define SAL_JOBSET_PAPERSIZE                    ((sal_uLong)0x00000004)
36cdf0e10cSrcweir #define SAL_JOBSET_DUPLEXMODE                   ((sal_uLong)0x00000008)
37cdf0e10cSrcweir #define SAL_JOBSET_ALL                          (SAL_JOBSET_ORIENTATION |\
38cdf0e10cSrcweir                                                  SAL_JOBSET_PAPERBIN    |\
39cdf0e10cSrcweir                                                  SAL_JOBSET_PAPERSIZE   |\
40cdf0e10cSrcweir                                                  SAL_JOBSET_DUPLEXMODE)
41cdf0e10cSrcweir 
42cdf0e10cSrcweir // -------------------
43cdf0e10cSrcweir // - SalPrinterError -
44cdf0e10cSrcweir // -------------------
45cdf0e10cSrcweir 
46cdf0e10cSrcweir #define SAL_PRINTER_ERROR_GENERALERROR          1
47cdf0e10cSrcweir #define SAL_PRINTER_ERROR_ABORT                 2
48cdf0e10cSrcweir 
49cdf0e10cSrcweir // -------------------
50cdf0e10cSrcweir // - SalPrinterProcs -
51cdf0e10cSrcweir // -------------------
52cdf0e10cSrcweir 
53cdf0e10cSrcweir class SalPrinter;
54cdf0e10cSrcweir typedef long (*SALPRNABORTPROC)( void* pInst, SalPrinter* pPrinter );
55cdf0e10cSrcweir 
56cdf0e10cSrcweir #endif // _SV_SALPTYPE_HXX
57