fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / vcl / prntypes.hxx
blob4fdaaf794f081298413aec52095b9a658778b10a
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef _SV_PRNTYPES_HXX
21 #define _SV_PRNTYPES_HXX
23 #include <tools/solar.h>
24 #include <i18nutil/paper.hxx>
26 // ---------------
27 // - Duplex Mode -
28 // ---------------
30 enum DuplexMode { DUPLEX_UNKNOWN, DUPLEX_OFF, DUPLEX_LONGEDGE, DUPLEX_SHORTEDGE };
32 // ---------------
33 // - Orientation -
34 // ---------------
36 enum Orientation { ORIENTATION_PORTRAIT, ORIENTATION_LANDSCAPE };
38 // -------------------
39 // - QueueInfo-Types -
40 // -------------------
42 #define QUEUE_STATUS_READY ((sal_uLong)0x00000001)
43 #define QUEUE_STATUS_PAUSED ((sal_uLong)0x00000002)
44 #define QUEUE_STATUS_PENDING_DELETION ((sal_uLong)0x00000004)
45 #define QUEUE_STATUS_BUSY ((sal_uLong)0x00000008)
46 #define QUEUE_STATUS_INITIALIZING ((sal_uLong)0x00000010)
47 #define QUEUE_STATUS_WAITING ((sal_uLong)0x00000020)
48 #define QUEUE_STATUS_WARMING_UP ((sal_uLong)0x00000040)
49 #define QUEUE_STATUS_PROCESSING ((sal_uLong)0x00000080)
50 #define QUEUE_STATUS_PRINTING ((sal_uLong)0x00000100)
51 #define QUEUE_STATUS_OFFLINE ((sal_uLong)0x00000200)
52 #define QUEUE_STATUS_ERROR ((sal_uLong)0x00000400)
53 #define QUEUE_STATUS_SERVER_UNKNOWN ((sal_uLong)0x00000800)
54 #define QUEUE_STATUS_PAPER_JAM ((sal_uLong)0x00001000)
55 #define QUEUE_STATUS_PAPER_OUT ((sal_uLong)0x00002000)
56 #define QUEUE_STATUS_MANUAL_FEED ((sal_uLong)0x00004000)
57 #define QUEUE_STATUS_PAPER_PROBLEM ((sal_uLong)0x00008000)
58 #define QUEUE_STATUS_IO_ACTIVE ((sal_uLong)0x00010000)
59 #define QUEUE_STATUS_OUTPUT_BIN_FULL ((sal_uLong)0x00020000)
60 #define QUEUE_STATUS_TONER_LOW ((sal_uLong)0x00040000)
61 #define QUEUE_STATUS_NO_TONER ((sal_uLong)0x00080000)
62 #define QUEUE_STATUS_PAGE_PUNT ((sal_uLong)0x00100000)
63 #define QUEUE_STATUS_USER_INTERVENTION ((sal_uLong)0x00200000)
64 #define QUEUE_STATUS_OUT_OF_MEMORY ((sal_uLong)0x00400000)
65 #define QUEUE_STATUS_DOOR_OPEN ((sal_uLong)0x00800000)
66 #define QUEUE_STATUS_POWER_SAVE ((sal_uLong)0x01000000)
68 #define QUEUE_JOBS_DONTKNOW ((sal_uLong)0xFFFFFFFF)
70 // -----------------
71 // - Printer-Types -
72 // -----------------
74 #define PRINTER_CAPABILITIES_SUPPORTDIALOG ((sal_uInt16)1)
75 #define PRINTER_CAPABILITIES_COPIES ((sal_uInt16)2)
76 #define PRINTER_CAPABILITIES_COLLATECOPIES ((sal_uInt16)3)
77 #define PRINTER_CAPABILITIES_SETORIENTATION ((sal_uInt16)4)
78 #define PRINTER_CAPABILITIES_SETPAPERBIN ((sal_uInt16)5)
79 #define PRINTER_CAPABILITIES_SETPAPERSIZE ((sal_uInt16)6)
80 #define PRINTER_CAPABILITIES_SETPAPER ((sal_uInt16)7)
81 #define PRINTER_CAPABILITIES_FAX ((sal_uInt16)8)
82 #define PRINTER_CAPABILITIES_PDF ((sal_uInt16)9)
83 #define PRINTER_CAPABILITIES_EXTERNALDIALOG ((sal_uInt16)10)
84 #define PRINTER_CAPABILITIES_SETDUPLEX ((sal_uInt16)11)
85 #define PRINTER_CAPABILITIES_USEPULLMODEL ((sal_uInt16)12)
87 #endif // _SV_PRNTYPES_HXX
89 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */