/src/libmwaw/src/lib/MWAWPictMac.hxx
Line | Count | Source |
1 | | /* -*- Mode: C++; c-default-style: "k&r"; indent-tabs-mode: nil; tab-width: 2; c-basic-offset: 2 -*- */ |
2 | | |
3 | | /* libmwaw |
4 | | * Version: MPL 2.0 / LGPLv2+ |
5 | | * |
6 | | * The contents of this file are subject to the Mozilla Public License Version |
7 | | * 2.0 (the "License"); you may not use this file except in compliance with |
8 | | * the License or as specified alternatively below. You may obtain a copy of |
9 | | * the License at http://www.mozilla.org/MPL/ |
10 | | * |
11 | | * Software distributed under the License is distributed on an "AS IS" basis, |
12 | | * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License |
13 | | * for the specific language governing rights and limitations under the |
14 | | * License. |
15 | | * |
16 | | * Major Contributor(s): |
17 | | * Copyright (C) 2002 William Lachance (wrlach@gmail.com) |
18 | | * Copyright (C) 2002,2004 Marc Maurer (uwog@uwog.net) |
19 | | * Copyright (C) 2004-2006 Fridrich Strba (fridrich.strba@bluewin.ch) |
20 | | * Copyright (C) 2006, 2007 Andrew Ziem |
21 | | * Copyright (C) 2011, 2012 Alonso Laurent (alonso@loria.fr) |
22 | | * |
23 | | * |
24 | | * All Rights Reserved. |
25 | | * |
26 | | * For minor contributions see the git repository. |
27 | | * |
28 | | * Alternatively, the contents of this file may be used under the terms of |
29 | | * the GNU Lesser General Public License Version 2 or later (the "LGPLv2+"), |
30 | | * in which case the provisions of the LGPLv2+ are applicable |
31 | | * instead of those above. |
32 | | */ |
33 | | |
34 | | /* This header contains code specific to a pict mac file |
35 | | * see http://developer.apple.com/legacy/mac/library/documentation/mac/QuickDraw/QuickDraw-458.html |
36 | | */ |
37 | | |
38 | | #ifndef MWAW_PICT_MAC |
39 | | # define MWAW_PICT_MAC |
40 | | |
41 | | # include <ostream> |
42 | | # include <string> |
43 | | |
44 | | # include <librevenge/librevenge.h> |
45 | | |
46 | | # include "libmwaw_internal.hxx" |
47 | | # include "MWAWPictData.hxx" |
48 | | |
49 | | /** \brief Class to read/store a Mac Pict1.0/2.0 */ |
50 | | class MWAWPictMac final : public MWAWPictData |
51 | | { |
52 | | public: |
53 | | //! destructor |
54 | | ~MWAWPictMac() final; |
55 | | //! returns the picture subtype |
56 | | SubType getSubType() const final |
57 | 0 | { |
58 | 0 | return MWAWPictData::PictMac; |
59 | 0 | } |
60 | | //! returns the final picture |
61 | | bool getBinary(MWAWEmbeddedObject &picture) const final |
62 | 226k | { |
63 | 226k | if (!valid() || isEmpty()) return false; |
64 | 226k | librevenge::RVNGBinaryData res; |
65 | 226k | if (m_version == 1) { |
66 | 217k | librevenge::RVNGBinaryData dataV2; |
67 | 217k | if (convertPict1To2(m_data, dataV2)) { |
68 | 37.0k | createFileData(dataV2, res); |
69 | 37.0k | picture=MWAWEmbeddedObject(res, "image/pict"); |
70 | 37.0k | return true; |
71 | 37.0k | } |
72 | 217k | } |
73 | 189k | createFileData(m_data, res); |
74 | 189k | picture=MWAWEmbeddedObject(res, "image/pict"); |
75 | 189k | return true; |
76 | | |
77 | 226k | } |
78 | | |
79 | | //! returns true if the picture is valid |
80 | | bool valid() const final |
81 | 226k | { |
82 | 226k | return (m_version >= 1) && (m_version <= 2); |
83 | 226k | } |
84 | | |
85 | | /** a virtual function used to obtain a strict order, |
86 | | * must be redefined in the subs class */ |
87 | | int cmp(MWAWPict const &a) const final |
88 | 0 | { |
89 | 0 | int diff = MWAWPictData::cmp(a); |
90 | 0 | if (diff) return diff; |
91 | 0 | auto const &aPict = static_cast<MWAWPictMac const &>(a); |
92 | |
|
93 | 0 | diff = m_version - aPict.m_version; |
94 | 0 | if (diff) return (diff < 0) ? -1 : 1; |
95 | 0 | diff = m_subVersion - aPict.m_subVersion; |
96 | 0 | if (diff) return (diff < 0) ? -1 : 1; |
97 | | |
98 | 0 | return 0; |
99 | 0 | } |
100 | | |
101 | | //! convert a Pict1.0 in Pict2.0, if possible |
102 | | static bool convertPict1To2(librevenge::RVNGBinaryData const &orig, librevenge::RVNGBinaryData &result); |
103 | | |
104 | | protected: |
105 | | //! protected constructor: use check to construct a picture |
106 | | explicit MWAWPictMac(MWAWBox2f box) |
107 | 226k | : MWAWPictData(box) |
108 | 226k | , m_version(-1) |
109 | 226k | , m_subVersion(-1) |
110 | 226k | { |
111 | 226k | extendBDBox(1.0); |
112 | 226k | } |
113 | | |
114 | | friend class MWAWPictData; |
115 | | /** checks if the data pointed by input and of given size is a pict 1.0, 2.0 or 2.1 |
116 | | - if not returns MWAW_R_BAD |
117 | | - if true |
118 | | - fills box if possible |
119 | | - creates a picture if result is given |
120 | | */ |
121 | | static ReadResult checkOrGet(MWAWInputStreamPtr input, int size, |
122 | | MWAWBox2f &box, MWAWPictData **result = nullptr); |
123 | | |
124 | | //! the picture version |
125 | | int m_version; |
126 | | //! the picture subversion |
127 | | int m_subVersion; |
128 | | }; |
129 | | |
130 | | #endif |
131 | | // vim: set filetype=cpp tabstop=2 shiftwidth=2 cindent autoindent smartindent noexpandtab: |