ImagePrint/ImagePrintEngine/ImagePrintLibrary/inc/printcapabilitycodes.h
branchGCC_SURGE
changeset 25 59ea2209bb67
parent 23 08cc4cc059d4
parent 15 a92d00fca574
equal deleted inserted replaced
23:08cc4cc059d4 25:59ea2209bb67
     1 /*
       
     2 * Copyright (c) 2004-2007 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Contains the TPrintCapabilityCodes and TPrintCapabilityOptions enumerations.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef PRINTCAPABILITYCODES_H
       
    20 #define PRINTCAPABILITYCODES_H
       
    21 
       
    22 /// All the printer capabilities
       
    23 enum TPrintCapabilityCodes
       
    24     {
       
    25 		EPrintCapabLayout = 500,
       
    26 		EPrintCapabPaperSize = 501,
       
    27 		EPrintCapabQuality = 502
       
    28     };
       
    29 
       
    30 /// Print capability generic options
       
    31 enum TPrintCapabilityOptions
       
    32 	{
       
    33 		// Generic
       
    34 		EPrintCapabYes = 1000,
       
    35 		EPrintCapabNo = 1001,
       
    36 		EPrintCapabOn = 1002,
       
    37 		EPrintCapabOff = 1003,
       
    38 
       
    39 		// Quality
       
    40 		EPrintCapabQualityDefault = 1100,
       
    41 		EPrintCapabQualityNormal = 1101,
       
    42 		EPrintCapabQualityDraft = 1102,
       
    43 		EPrintCapabQualityFine = 1103,   
       
    44 
       
    45 		// Paper size 
       
    46 		EPrintCapabPaperSizeAuto = 1200,
       
    47 		EPrintCapabPaperSizeLetter = 1201,
       
    48 		EPrintCapabPaperSizeA4 = 1221,
       
    49 		EPrintCapabPaperSizeA6 = 1222,
       
    50 		EPrintCapabPaperSize4x6 = 1250,
       
    51 		EPrintCapabPaperSize5x7 = 1251,
       
    52 		EPrintCapabPaperSizeSticker = 1270,
       
    53 
       
    54 		// Layout
       
    55 		EPrintCapabLayout1Up = 1501,
       
    56 		EPrintCapabLayout2Up = 1502,
       
    57 		//EPrintCapabLayout3Up = 1503,
       
    58 		EPrintCapabLayout4Up = 1504,
       
    59 		//EPrintCapabLayout5Up = 1505,
       
    60 		EPrintCapabLayout6Up = 1506,
       
    61 		EPrintCapabLayout9Up = 1509,
       
    62 		EPrintCapabLayout12Up = 1512,
       
    63 		EPrintCapabLayout16Up = 1513,
       
    64 		EPrintCapabLayout16UpStick = 1516,
       
    65 		EPrintCapabLayout1UpSmall = 1551,
       
    66 		EPrintCapabLayout1UpMedium = 1552,
       
    67 		EPrintCapabLayout1UpLarge = 1553,
       
    68 		EPrintCapabLayout1UpBorderless = 1554,
       
    69 		EPrintCapabLayout1UpBorder = 1555,
       
    70 		//EPrintCapabLayout1UpPassport = 1556,    
       
    71 		//EPrintCapabLayout1UpPassportSF = 1557,  // SmallFormat paper
       
    72 
       
    73 		EPrintCapabLayout2UpPassport508x508Lg = 1558,
       
    74 		EPrintCapabLayout2UpPassport254x364Lg = 1559,
       
    75 		EPrintCapabLayout2UpPassport350x450Lg = 1560,
       
    76 		EPrintCapabLayout2UpPassport364x508Lg = 1561,
       
    77 		EPrintCapabLayout2UpPassport450x550Lg = 1562,
       
    78 
       
    79 		EPrintCapabLayout2UpPassport508x508Sm = 1563,
       
    80 
       
    81 		EPrintCapabLayout4UpStick = 1564,
       
    82 		EPrintCapabLayout1UpStick = 1565,
       
    83 
       
    84 		EPrintCapabLayout2UpPassport254x364Sm = 1566,
       
    85 		EPrintCapabLayout2UpPassport350x450Sm = 1567,
       
    86 		EPrintCapabLayout2UpPassport364x508Sm = 1568,
       
    87 		EPrintCapabLayout2UpPassport450x550Sm = 1569,
       
    88 
       
    89 		EPrintCapabLayoutLast = 3000
       
    90 	};
       
    91 
       
    92 #endif  //  PRINTCAPABILITYCODES_H
       
    93 
       
    94 //  End of File