21
|
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 |
|
|
20 |
#ifndef IMAGEPRINTAPP_HRH
|
|
21 |
#define IMAGEPRINTAPP_HRH
|
|
22 |
|
|
23 |
enum TCustomControlsIDs
|
|
24 |
{
|
|
25 |
EPrintProgressNote = 0x2000,
|
|
26 |
EPrintWaitNote,
|
|
27 |
ENoPrintersConfirmation,
|
|
28 |
EBitmapCtrl,
|
|
29 |
EBrandingBitmap
|
|
30 |
};
|
|
31 |
|
|
32 |
// Commands for preview view
|
|
33 |
enum TPreviewView
|
|
34 |
{
|
|
35 |
ECmdPrint = 0x1000,
|
|
36 |
ECmdPrintSettings,
|
|
37 |
ECmdPrintNumberOfCopies,
|
|
38 |
ECmdPrintHelp = EAknCmdHelp
|
|
39 |
};
|
|
40 |
|
|
41 |
// Commands for the setting view's HandleCommandL()
|
|
42 |
enum TSettingsViewCommands
|
|
43 |
{
|
|
44 |
ESettingsChangeItem = 0x2200,
|
|
45 |
ESettingsPrint,
|
|
46 |
ESettingsExit
|
|
47 |
};
|
|
48 |
|
|
49 |
enum TImageSelectionViewCommands
|
|
50 |
{
|
|
51 |
ESelectMarked = 0x2400
|
|
52 |
};
|
|
53 |
|
|
54 |
// View state for the binary setting items
|
|
55 |
enum TSettingsViewState
|
|
56 |
{
|
|
57 |
EOff = 0,
|
|
58 |
EOn = 1
|
|
59 |
};
|
|
60 |
|
|
61 |
#endif // IMAGEPRINTAPP_HRH
|