ImagePrint/ImagePrintEngine/DeviceProtocols/dpof/data/dpof.rss
branchGCC_SURGE
changeset 25 59ea2209bb67
parent 23 08cc4cc059d4
parent 15 a92d00fca574
equal deleted inserted replaced
23:08cc4cc059d4 25:59ea2209bb67
     1 /*
       
     2 * Copyright (c) 2002-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:  
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <eikon.rh>
       
    20 #include <imageprintapp.loc>
       
    21 
       
    22 #include "imageprint.rh"
       
    23 #include "printcapabilitycodes.h"
       
    24 #include "imageprintvariant.h"
       
    25 
       
    26 STRUCT STRING
       
    27 	{
       
    28 	LTEXT text;
       
    29 	}
       
    30 
       
    31 RESOURCE STRING r_qtn_print_dpof_confirmation_dialog {text=qtn_print_dpof_confirmation_dialog;}
       
    32 
       
    33 
       
    34 enum PrinterClass  // should come from ImgPrintKonst.h
       
    35 {
       
    36 	EDefault = 0,
       
    37 	EBigAdaptive = 1,
       
    38 	ESmallAdaptive = 2,
       
    39 	EDesk = 3,
       
    40 	ELinked = 99
       
    41 };
       
    42 
       
    43 RESOURCE RS_CAPABILITIES dpof_Capabilities
       
    44 {
       
    45 
       
    46 	capabilities =
       
    47 	{
       
    48 		RS_CAPABILITY
       
    49 		{
       
    50 			printerclass=EDefault;
       
    51 			capabilityid=EPrintCapabPaperSize;
       
    52 			type=1;
       
    53 			defaultvalue=EPrintCapabPaperSizeAuto;
       
    54 			low=1;
       
    55 			high=400;
       
    56 			enumcodes={
       
    57 				EPrintCapabPaperSizeAuto,0
       
    58 				};
       
    59 			linkid=0;
       
    60 			printerclass=EDefault;
       
    61 		},
       
    62 		RS_CAPABILITY
       
    63 		{
       
    64 			printerclass=EDefault;
       
    65 			capabilityid=EPrintCapabLayout;
       
    66 			type=1;
       
    67 			defaultvalue=EPrintCapabLayout1UpMedium;
       
    68 			low=0;
       
    69 			high=0;
       
    70 			enumcodes={
       
    71 				EPrintCapabLayout1UpMedium,0
       
    72 				,EPrintCapabLayout2Up,0
       
    73 				,EPrintCapabLayout4Up,0
       
    74 				,EPrintCapabLayout6Up,0
       
    75 				,EPrintCapabLayout9Up,0
       
    76 				,EPrintCapabLayout12Up,0
       
    77 #ifdef IMG_PRINT_DYNAMIC_PRINT_SETTINGS
       
    78 				,EPrintCapabLayout16Up,0
       
    79 #endif				
       
    80 				};
       
    81 			linkid=0;
       
    82 		}
       
    83 	};
       
    84 
       
    85 }