Tizen 2.1 base
[platform/upstream/hplip.git] / prnt / hpijs / pmselect.h
1 /*****************************************************************************\
2   pmselect.h : Interface for the ModeSet class
3
4   Copyright (c) 2001 - 2002, Hewlett-Packard Co.
5   All rights reserved.
6
7   Redistribution and use in source and binary forms, with or without
8   modification, are permitted provided that the following conditions
9   are met:
10   1. Redistributions of source code must retain the above copyright
11      notice, this list of conditions and the following disclaimer.
12   2. Redistributions in binary form must reproduce the above copyright
13      notice, this list of conditions and the following disclaimer in the
14      documentation and/or other materials provided with the distribution.
15   3. Neither the name of Hewlett-Packard nor the names of its
16      contributors may be used to endorse or promote products derived
17      from this software without specific prior written permission.
18
19   THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
20   WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21   MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
22   NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24   TO, PATENT INFRINGEMENT; PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
25   OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
26   ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28   THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 \*****************************************************************************/
30
31
32 #ifndef APDK_PMSELECT_H
33 #define APDK_PMSELECT_H
34
35 APDK_BEGIN_NAMESPACE
36
37 //MSNode
38 //!
39 /*!
40 \internal
41 ******************************************************************************/
42 struct MSNode
43 {
44     //public constructor
45     MSNode() : m_pNext(NULL), m_pPrintMode(NULL) { }
46
47     // public attribs
48     MSNode* m_pNext;
49     PrintMode* m_pPrintMode;
50 };
51
52 //ModeSet
53 //!
54 /*!
55 \internal
56 ******************************************************************************/
57 class ModeSet
58 {
59 public:
60     ModeSet() : m_ListHead(NULL), m_Current(NULL) { }
61     ModeSet(PrintMode* pPM);
62     ModeSet(ModeSet* pMS);
63     ~ModeSet();
64
65     // generic container properties and manipulations
66     ModeSet* Head();
67     PrintMode* HeadPrintMode() const { return m_ListHead->m_pPrintMode; }
68     PrintMode* CurrPrintMode() const { return m_Current->m_pPrintMode; }
69     MSNode* Next()  { m_Current = m_Current->m_pNext; return m_Current; }
70     void Reset() { m_Current = m_ListHead; }
71     BOOL Append(PrintMode* pPrM);   // TRUE if err
72     BOOL IsEmpty() const { return (m_ListHead == NULL); }
73     unsigned int Size() const;
74
75     // subset producers
76     ModeSet* FontCapableSubset();
77     ModeSet* PenCompatibleSubset(PEN_TYPE pens);
78     ModeSet* ColorCompatibleSubset(COLORMODE color);
79     ModeSet* QualitySubset(QUALITY_MODE eQuality);
80     ModeSet* MediaSubset(MEDIATYPE eMedia);
81
82     // algorithmic chunks to improve readability and save space
83 //    DRIVER_ERROR QualitySieve(ModeSet*& Modes, ModeSet*& tempModeSet, QUALITY_MODE& eQuality);
84
85 private:
86     MSNode* m_ListHead;
87     MSNode* m_Current;
88
89 //    PrintMode* m_pPM;
90 //    ModeSet* m_nextMS;
91 }; //ModeSet
92
93 APDK_END_NAMESPACE
94
95 #endif //APDK_PMSELECT_H