libwps_internal.h
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
2/* libwps
3 * Version: MPL 2.0 / LGPLv2.1+
4 *
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 *
9 * Major Contributor(s):
10 * Copyright (C) 2002 William Lachance (william.lachance@sympatico.ca)
11 * Copyright (C) 2002,2004 Marc Maurer (uwog@uwog.net)
12 *
13 * For minor contributions see the git repository.
14 *
15 * Alternatively, the contents of this file may be used under the terms
16 * of the GNU Lesser General Public License Version 2.1 or later
17 * (LGPLv2.1+), in which case the provisions of the LGPLv2.1+ are
18 * applicable instead of those above.
19 *
20 * For further information visit http://libwps.sourceforge.net
21 */
22
23#ifndef LIBWPS_INTERNAL_H
24#define LIBWPS_INTERNAL_H
25
26#include <assert.h>
27#ifdef DEBUG
28#include <stdio.h>
29#endif
30
31#include <algorithm>
32#include <cmath>
33#include <iostream>
34#include <map>
35#include <string>
36#include <vector>
37
38#include <librevenge-stream/librevenge-stream.h>
39#include <librevenge/librevenge.h>
40
41#ifndef M_PI
42#define M_PI 3.14159265358979323846
43#endif
44
45#if defined(_MSC_VER) || defined(__DJGPP__)
46typedef signed char int8_t;
47typedef unsigned char uint8_t;
48typedef signed short int16_t;
49typedef unsigned short uint16_t;
50typedef signed int int32_t;
51typedef unsigned int uint32_t;
52#else /* !_MSC_VER && !__DJGPP__*/
53# include <inttypes.h>
54#endif /* _MSC_VER || __DJGPP__*/
55
56/* ---------- memory --------------- */
57#ifdef HAVE_CONFIG_H
58# include "config.h"
59#endif
60
61// define localtime_r on Windows, so that can use
62// thread-safe functions on other environments
63#ifdef _WIN32
64# define gmtime_r(tp,tmp) (gmtime(tp)?(*(tmp)=*gmtime(tp),(tmp)):0)
65# define localtime_r(tp,tmp) (localtime(tp)?(*(tmp)=*localtime(tp),(tmp)):0)
66#endif
67
68#if defined(SHAREDPTR_TR1)
69#include <tr1/memory>
70using std::tr1::shared_ptr;
71#elif defined(SHAREDPTR_STD)
72#include <memory>
73using std::shared_ptr;
74#else
75#include <boost/shared_ptr.hpp>
76using boost::shared_ptr;
77#endif
78
80template <class T>
82{
83 void operator()(T *) {}
84};
85
86// basic classes and autoptr
88typedef shared_ptr<librevenge::RVNGInputStream> RVNGInputStreamPtr;
89
90struct WPSStream;
91class WPSCell;
92class WPSListener;
94class WPSEntry;
95class WPSFont;
96class WPSHeader;
97class WPSPosition;
98class WPSSubDocument;
99
101class WKSSubDocument;
102
104typedef shared_ptr<WPSCell> WPSCellPtr;
106typedef shared_ptr<WPSListener> WPSListenerPtr;
108typedef shared_ptr<WPSContentListener> WPSContentListenerPtr;
110typedef shared_ptr<WPSHeader> WPSHeaderPtr;
112typedef shared_ptr<WPSSubDocument> WPSSubDocumentPtr;
113
115typedef shared_ptr<WKSContentListener> WKSContentListenerPtr;
117typedef shared_ptr<WKSSubDocument> WKSSubDocumentPtr;
118
119#if defined(__clang__) || defined(__GNUC__)
120# define WPS_ATTRIBUTE_PRINTF(fmt, arg) __attribute__((__format__(__printf__, fmt, arg)))
121#else
122# define WPS_ATTRIBUTE_PRINTF(fmt, arg)
123#endif
124/* ---------- debug --------------- */
125#ifdef DEBUG
126namespace libwps
127{
128void printDebugMsg(const char *format, ...) WPS_ATTRIBUTE_PRINTF(1, 2);
129}
130#define WPS_DEBUG_MSG(M) libwps::printDebugMsg M
131#else
132#define WPS_DEBUG_MSG(M)
133#endif
134
135/* ---------- exception ------------ */
136namespace libwps
137{
138// Various exceptions
140{
141 // needless to say, we could flesh this class out a bit
142};
143
145{
146 // needless to say, we could flesh this class out a bit
147};
148
150{
151 // needless to say, we could flesh this class out a bit
152};
153
155{
156 // needless to say, we could flesh this class out a bit
157};
158
160{
161 // needless to say, we could flesh this class out a bit
162};
163}
164
165/* ---------- input ----------------- */
166namespace libwps
167{
168uint8_t readU8(librevenge::RVNGInputStream *input);
169uint16_t readU16(librevenge::RVNGInputStream *input);
170uint32_t readU32(librevenge::RVNGInputStream *input);
171
172int8_t read8(librevenge::RVNGInputStream *input);
173int16_t read16(librevenge::RVNGInputStream *input);
174int32_t read32(librevenge::RVNGInputStream *input);
175
176inline uint8_t readU8(RVNGInputStreamPtr &input)
177{
178 return readU8(input.get());
179}
180inline uint16_t readU16(RVNGInputStreamPtr &input)
181{
182 return readU16(input.get());
183}
184inline uint32_t readU32(RVNGInputStreamPtr &input)
185{
186 return readU32(input.get());
187}
188
189inline int8_t read8(RVNGInputStreamPtr &input)
190{
191 return read8(input.get());
192}
193inline int16_t read16(RVNGInputStreamPtr &input)
194{
195 return read16(input.get());
196}
197inline int32_t read32(RVNGInputStreamPtr &input)
198{
199 return read32(input.get());
200}
201
203bool readDouble4(RVNGInputStreamPtr &input, double &res, bool &isNaN);
205bool readDouble8(RVNGInputStreamPtr &input, double &res, bool &isNaN);
207bool readDouble10(RVNGInputStreamPtr &input, double &res, bool &isNaN);
209bool readDouble2Inv(RVNGInputStreamPtr &input, double &res, bool &isNaN);
211bool readDouble4Inv(RVNGInputStreamPtr &input, double &res, bool &isNaN);
212
214bool readData(RVNGInputStreamPtr &input, unsigned long sz, librevenge::RVNGBinaryData &data);
216bool readDataToEnd(RVNGInputStreamPtr &input, librevenge::RVNGBinaryData &data);
218void appendUnicode(uint32_t val, librevenge::RVNGString &buffer);
219}
220
221#define WPS_LE_GET_GUINT16(p) \
222 (uint16_t)((((uint8_t const *)(p))[0] << 0) | \
223 (((uint8_t const *)(p))[1] << 8))
224#define WPS_LE_GET_GUINT32(p) \
225 (uint32_t)((((uint8_t const *)(p))[0] << 0) | \
226 (((uint8_t const *)(p))[1] << 8) | \
227 (((uint8_t const *)(p))[2] << 16) | \
228 (((uint8_t const *)(p))[3] << 24))
229
230#define WPS_LE_PUT_GUINT16(p, v) \
231 *((uint8_t*)(p)) = uint8_t(v); \
232 *(((uint8_t*)(p)) + 1) = uint8_t((v) >> 8)
233
234#define WPS_LE_PUT_GUINT32(p, v) \
235 *((uint8_t*)(p)) = uint8_t(v); \
236 *(((uint8_t*)(p)) + 1) = uint8_t((v) >> 8); \
237 *(((uint8_t*)(p)) + 2) = uint8_t((v) >> 16); \
238 *(((uint8_t*)(p)) + 3) = uint8_t((v) >> 24)
239
240// Various helper structures for the parser..
241/* ---------- small enum/class ------------- */
242namespace libwps
243{
245std::string numberingTypeToString(NumberingType type);
251}
252
262
271
274{
276 explicit WPSColor(uint32_t argb=0) : m_value(argb)
277 {
278 }
280 WPSColor(unsigned char r, unsigned char g, unsigned char b, unsigned char a=255) :
281 m_value(uint32_t((a<<24)+(r<<16)+(g<<8)+b))
282 {
283 }
285 WPSColor &operator=(uint32_t argb)
286 {
287 m_value = argb;
288 return *this;
289 }
292 {
293 return WPSColor(0,0,0);
294 }
297 {
298 return WPSColor(255,255,255);
299 }
300
302 static WPSColor barycenter(float alpha, WPSColor const &colA,
303 float beta, WPSColor const &colB);
305 uint32_t value() const
306 {
307 return m_value;
308 }
310 unsigned char getAlpha() const
311 {
312 return (unsigned char)((m_value>>24)&0xFF);
313 }
315 unsigned char getBlue() const
316 {
317 return (unsigned char)(m_value&0xFF);
318 }
320 unsigned char getRed() const
321 {
322 return (unsigned char)((m_value>>16)&0xFF);
323 }
325 unsigned char getGreen() const
326 {
327 return (unsigned char)((m_value>>8)&0xFF);
328 }
330 bool isBlack() const
331 {
332 return (m_value&0xFFFFFF)==0;
333 }
335 bool isWhite() const
336 {
337 return (m_value&0xFFFFFF)==0xFFFFFF;
338 }
340 bool operator==(WPSColor const &c) const
341 {
342 return (c.m_value&0xFFFFFF)==(m_value&0xFFFFFF);
343 }
345 bool operator!=(WPSColor const &c) const
346 {
347 return !operator==(c);
348 }
350 bool operator<(WPSColor const &c) const
351 {
352 return (c.m_value&0xFFFFFF)<(m_value&0xFFFFFF);
353 }
355 bool operator<=(WPSColor const &c) const
356 {
357 return (c.m_value&0xFFFFFF)<=(m_value&0xFFFFFF);
358 }
360 bool operator>(WPSColor const &c) const
361 {
362 return !operator<=(c);
363 }
365 bool operator>=(WPSColor const &c) const
366 {
367 return !operator<(c);
368 }
370 friend std::ostream &operator<< (std::ostream &o, WPSColor const &c);
372 std::string str() const;
373protected:
375 uint32_t m_value;
376};
377
380{
385 enum Pos { Left = 0, Right = 1, Top = 2, Bottom = 3 };
386 enum { LeftBit = 0x01, RightBit = 0x02, TopBit=0x4, BottomBit = 0x08 };
387
393 bool addTo(librevenge::RVNGPropertyList &propList, std::string which="") const;
395 bool isEmpty() const
396 {
397 return m_style==None || m_width <= 0;
398 }
399
401 bool operator==(WPSBorder const &orig) const
402 {
403 return m_style == orig.m_style && m_type == orig.m_type && m_width == orig.m_width
404 && m_color == orig.m_color;
405 }
407 bool operator!=(WPSBorder const &orig) const
408 {
409 return !operator==(orig);
410 }
412 int compare(WPSBorder const &orig) const;
413
415 friend std::ostream &operator<< (std::ostream &o, WPSBorder const &border);
417 friend std::ostream &operator<< (std::ostream &o, WPSBorder::Style const &style);
427 std::vector<double> m_widthsList;
431 std::string m_extra;
432};
433
439{
445 WPSEmbeddedObject(librevenge::RVNGBinaryData const &binaryData,
446 std::string type="image/pict") : m_dataList(), m_typeList()
447 {
448 add(binaryData, type);
449 }
452 {
453 }
455 bool isEmpty() const
456 {
457 for (size_t i=0; i<m_dataList.size(); ++i)
458 {
459 if (!m_dataList[i].empty())
460 return false;
461 }
462 return true;
463 }
465 void add(librevenge::RVNGBinaryData const &binaryData, std::string type="image/pict")
466 {
467 size_t pos=m_dataList.size();
468 if (pos<m_typeList.size()) pos=m_typeList.size();
469 m_dataList.resize(pos+1);
470 m_dataList[pos]=binaryData;
471 m_typeList.resize(pos+1);
472 m_typeList[pos]=type;
473 }
475 bool addTo(librevenge::RVNGPropertyList &propList) const;
477 friend std::ostream &operator<<(std::ostream &o, WPSEmbeddedObject const &pict);
478
480 std::vector<librevenge::RVNGBinaryData> m_dataList;
482 std::vector<std::string> m_typeList;
483};
484
487{
490
492 explicit WPSField(Type type) : m_type(type), m_DTFormat(""), m_numberingType(libwps::ARABIC), m_data("")
493 {
494 }
496 bool addTo(librevenge::RVNGPropertyList &propList) const;
498 librevenge::RVNGString getString() const;
502 std::string m_DTFormat;
506 std::string m_data;
507};
508
509// ATTRIBUTE bits
510#define WPS_EXTRA_LARGE_BIT 1
511#define WPS_VERY_LARGE_BIT 2
512#define WPS_LARGE_BIT 4
513#define WPS_SMALL_PRINT_BIT 8
514#define WPS_FINE_PRINT_BIT 0x10
515#define WPS_SUPERSCRIPT_BIT 0x20
516#define WPS_SUBSCRIPT_BIT 0x40
517#define WPS_OUTLINE_BIT 0x80
518#define WPS_ITALICS_BIT 0x100
519#define WPS_SHADOW_BIT 0x200
520#define WPS_REDLINE_BIT 0x400
521#define WPS_DOUBLE_UNDERLINE_BIT 0x800
522#define WPS_BOLD_BIT 0x1000
523#define WPS_STRIKEOUT_BIT 0x2000
524#define WPS_UNDERLINE_BIT 0x4000
525#define WPS_SMALL_CAPS_BIT 0x8000
526#define WPS_BLINK_BIT 0x10000L
527#define WPS_REVERSEVIDEO_BIT 0x20000L
528#define WPS_ALL_CAPS_BIT 0x40000L
529#define WPS_EMBOSS_BIT 0x80000L
530#define WPS_ENGRAVE_BIT 0x100000L
531#define WPS_OVERLINE_BIT 0x400000L
532#define WPS_HIDDEN_BIT 0x800000L
533
534// BREAK bits
535#define WPS_PAGE_BREAK 0x00
536#define WPS_SOFT_PAGE_BREAK 0x01
537#define WPS_COLUMN_BREAK 0x02
538
539// Generic bits
540#define WPS_LEFT 0x00
541#define WPS_RIGHT 0x01
542#define WPS_CENTER 0x02
543#define WPS_TOP 0x03
544#define WPS_BOTTOM 0x04
545
546/* ---------- vec2/box2f ------------- */
550template <class T> class Vec2
551{
552public:
554 Vec2(T xx=0,T yy=0) : m_x(xx), m_y(yy) { }
556 template <class U> Vec2(Vec2<U> const &p) : m_x(T(p.x())), m_y(T(p.y())) {}
557
559 T x() const
560 {
561 return m_x;
562 }
564 T y() const
565 {
566 return m_y;
567 }
569 T operator[](int c) const
570 {
571 if (c<0 || c>1) throw libwps::GenericException();
572 return (c==0) ? m_x : m_y;
573 }
575 T &operator[](int c)
576 {
577 if (c<0 || c>1) throw libwps::GenericException();
578 return (c==0) ? m_x : m_y;
579 }
580
582 void set(T xx, T yy)
583 {
584 m_x = xx;
585 m_y = yy;
586 }
588 void setX(T xx)
589 {
590 m_x = xx;
591 }
593 void setY(T yy)
594 {
595 m_y = yy;
596 }
597
599 void add(T dx, T dy)
600 {
601 m_x += dx;
602 m_y += dy;
603 }
604
607 {
608 m_x += p.m_x;
609 m_y += p.m_y;
610 return *this;
611 }
614 {
615 m_x -= p.m_x;
616 m_y -= p.m_y;
617 return *this;
618 }
620 template <class U>
622 {
623 m_x = T(m_x*scale);
624 m_y = T(m_y*scale);
625 return *this;
626 }
627
629 friend Vec2<T> operator+(Vec2<T> const &p1, Vec2<T> const &p2)
630 {
631 Vec2<T> p(p1);
632 return p+=p2;
633 }
635 friend Vec2<T> operator-(Vec2<T> const &p1, Vec2<T> const &p2)
636 {
637 Vec2<T> p(p1);
638 return p-=p2;
639 }
641 template <class U>
642 friend Vec2<T> operator*(U scale, Vec2<T> const &p1)
643 {
644 Vec2<T> p(p1);
645 return p *= scale;
646 }
647
649 bool operator==(Vec2<T> const &p) const
650 {
651 return cmpY(p) == 0;
652 }
654 bool operator!=(Vec2<T> const &p) const
655 {
656 return cmpY(p) != 0;
657 }
659 bool operator<(Vec2<T> const &p) const
660 {
661 return cmpY(p) < 0;
662 }
664 int cmp(Vec2<T> const &p) const
665 {
666 if (m_x<p.m_x) return -1;
667 if (m_x>p.m_x) return 1;
668 if (m_y<p.m_y) return -1;
669 if (m_y>p.m_y) return 1;
670 return 0;
671 }
673 int cmpY(Vec2<T> const &p) const
674 {
675 if (m_y<p.m_y) return -1;
676 if (m_y>p.m_y) return 1;
677 if (m_x<p.m_x) return -1;
678 if (m_x>p.m_x) return 1;
679 return 0;
680 }
681
683 friend std::ostream &operator<< (std::ostream &o, Vec2<T> const &f)
684 {
685 o << f.m_x << "x" << f.m_y;
686 return o;
687 }
688
693 {
695 bool operator()(Vec2<T> const &s1, Vec2<T> const &s2) const
696 {
697 return s1.cmp(s2) < 0;
698 }
699 };
700
705 {
707 bool operator()(Vec2<T> const &s1, Vec2<T> const &s2) const
708 {
709 return s1.cmpY(s2) < 0;
710 }
711 };
712protected:
714};
715
722
726template <class T> class WPSBox2
727{
728public:
731 {
732 m_pt[0] = minPt;
733 m_pt[1] = maxPt;
734 }
736 template <class U> WPSBox2(WPSBox2<U> const &p)
737 {
738 for (int c=0; c < 2; c++) m_pt[c] = p[c];
739 }
740
742 Vec2<T> const &min() const
743 {
744 return m_pt[0];
745 }
747 Vec2<T> const &max() const
748 {
749 return m_pt[1];
750 }
753 {
754 return m_pt[0];
755 }
758 {
759 return m_pt[1];
760 }
761
765 Vec2<T> const &operator[](int c) const
766 {
767 if (c<0 || c>1) throw libwps::GenericException();
768 return m_pt[c];
769 }
771 Vec2<T> size() const
772 {
773 return m_pt[1]-m_pt[0];
774 }
777 {
778 return 0.5*(m_pt[0]+m_pt[1]);
779 }
780
782 void set(Vec2<T> const &x, Vec2<T> const &y)
783 {
784 m_pt[0] = x;
785 m_pt[1] = y;
786 }
788 void setMin(Vec2<T> const &x)
789 {
790 m_pt[0] = x;
791 }
793 void setMax(Vec2<T> const &y)
794 {
795 m_pt[1] = y;
796 }
797
799 void resizeFromMin(Vec2<T> const &sz)
800 {
801 m_pt[1] = m_pt[0]+sz;
802 }
804 void resizeFromMax(Vec2<T> const &sz)
805 {
806 m_pt[0] = m_pt[1]-sz;
807 }
809 void resizeFromCenter(Vec2<T> const &sz)
810 {
811 Vec2<T> ctr = 0.5*(m_pt[0]+m_pt[1]);
812 m_pt[0] = ctr - 0.5*sz;
813 m_pt[1] = ctr + (sz - 0.5*sz);
814 }
815
817 template <class U> void scale(U factor)
818 {
819 m_pt[0] *= factor;
820 m_pt[1] *= factor;
821 }
822
824 void extend(T val)
825 {
826 m_pt[0] -= Vec2<T>(val/2,val/2);
827 m_pt[1] += Vec2<T>(val-(val/2),val-(val/2));
828 }
831 {
832 WPSBox2<T> res;
833 res.m_pt[0]=Vec2<T>(m_pt[0][0]<box.m_pt[0][0]?m_pt[0][0] : box.m_pt[0][0],
834 m_pt[0][1]<box.m_pt[0][1]?m_pt[0][1] : box.m_pt[0][1]);
835 res.m_pt[1]=Vec2<T>(m_pt[1][0]>box.m_pt[1][0]?m_pt[1][0] : box.m_pt[1][0],
836 m_pt[1][1]>box.m_pt[1][1]?m_pt[1][1] : box.m_pt[1][1]);
837 return res;
838 }
841 {
842 WPSBox2<T> res;
843 res.m_pt[0]=Vec2<T>(m_pt[0][0]>box.m_pt[0][0]?m_pt[0][0] : box.m_pt[0][0],
844 m_pt[0][1]>box.m_pt[0][1]?m_pt[0][1] : box.m_pt[0][1]);
845 res.m_pt[1]=Vec2<T>(m_pt[1][0]<box.m_pt[1][0]?m_pt[1][0] : box.m_pt[1][0],
846 m_pt[1][1]<box.m_pt[1][1]?m_pt[1][1] : box.m_pt[1][1]);
847 return res;
848 }
849
851 bool operator==(WPSBox2<T> const &p) const
852 {
853 return cmp(p) == 0;
854 }
856 bool operator!=(WPSBox2<T> const &p) const
857 {
858 return cmp(p) != 0;
859 }
861 bool operator<(WPSBox2<T> const &p) const
862 {
863 return cmp(p) < 0;
864 }
865
867 int cmp(WPSBox2<T> const &p) const
868 {
869 int diff = m_pt[0].cmpY(p.m_pt[0]);
870 if (diff) return diff;
871 diff = m_pt[1].cmpY(p.m_pt[1]);
872 if (diff) return diff;
873 return 0;
874 }
875
877 friend std::ostream &operator<< (std::ostream &o, WPSBox2<T> const &f)
878 {
879 o << "(" << f.m_pt[0] << "<->" << f.m_pt[1] << ")";
880 return o;
881 }
882
887 {
889 bool operator()(WPSBox2<T> const &s1, WPSBox2<T> const &s2) const
890 {
891 return s1.cmp(s2) < 0;
892 }
893 };
897 typedef std::map<WPSBox2<T>, T,struct PosSizeLt> Map;
898
899protected:
902};
903
908
912template <class T> class WPSVec3
913{
914public:
916 explicit WPSVec3(T xx=0,T yy=0,T zz=0)
917 {
918 m_val[0] = xx;
919 m_val[1] = yy;
920 m_val[2] = zz;
921 }
923 template <class U> WPSVec3(WPSVec3<U> const &p)
924 {
925 for (int c = 0; c < 3; c++) m_val[c] = T(p[c]);
926 }
927
929 T x() const
930 {
931 return m_val[0];
932 }
934 T y() const
935 {
936 return m_val[1];
937 }
939 T z() const
940 {
941 return m_val[2];
942 }
944 T operator[](int c) const
945 {
946 if (c<0 || c>2) throw libwps::GenericException();
947 return m_val[c];
948 }
950 T &operator[](int c)
951 {
952 if (c<0 || c>2) throw libwps::GenericException();
953 return m_val[c];
954 }
955
957 void set(T xx, T yy, T zz)
958 {
959 m_val[0] = xx;
960 m_val[1] = yy;
961 m_val[2] = zz;
962 }
964 void setX(T xx)
965 {
966 m_val[0] = xx;
967 }
969 void setY(T yy)
970 {
971 m_val[1] = yy;
972 }
974 void setZ(T zz)
975 {
976 m_val[2] = zz;
977 }
978
980 void add(T dx, T dy, T dz)
981 {
982 m_val[0] += dx;
983 m_val[1] += dy;
984 m_val[2] += dz;
985 }
986
989 {
990 for (int c = 0; c < 3; c++) m_val[c] = T(m_val[c]+p.m_val[c]);
991 return *this;
992 }
995 {
996 for (int c = 0; c < 3; c++) m_val[c] = T(m_val[c]-p.m_val[c]);
997 return *this;
998 }
1000 template <class U>
1002 {
1003 for (int c = 0; c < 3; c++) m_val[c] = T(m_val[c]*scale);
1004 return *this;
1005 }
1006
1008 friend WPSVec3<T> operator+(WPSVec3<T> const &p1, WPSVec3<T> const &p2)
1009 {
1010 WPSVec3<T> p(p1);
1011 return p+=p2;
1012 }
1014 friend WPSVec3<T> operator-(WPSVec3<T> const &p1, WPSVec3<T> const &p2)
1015 {
1016 WPSVec3<T> p(p1);
1017 return p-=p2;
1018 }
1020 template <class U>
1021 friend WPSVec3<T> operator*(U scale, WPSVec3<T> const &p1)
1022 {
1023 WPSVec3<T> p(p1);
1024 return p *= scale;
1025 }
1026
1028 bool operator==(WPSVec3<T> const &p) const
1029 {
1030 return cmp(p) == 0;
1031 }
1033 bool operator!=(WPSVec3<T> const &p) const
1034 {
1035 return cmp(p) != 0;
1036 }
1038 bool operator<(WPSVec3<T> const &p) const
1039 {
1040 return cmp(p) < 0;
1041 }
1043 int cmp(WPSVec3<T> const &p) const
1044 {
1045 for (int c = 0; c < 3; c++)
1046 {
1047 if (m_val[c]<p.m_val[c]) return -1;
1048 if (m_val[c]>p.m_val[c]) return 1;
1049 }
1050 return 0;
1051 }
1052
1054 friend std::ostream &operator<< (std::ostream &o, WPSVec3<T> const &f)
1055 {
1056 o << f.m_val[0] << "x" << f.m_val[1] << "x" << f.m_val[2];
1057 return o;
1058 }
1059
1064 {
1066 bool operator()(WPSVec3<T> const &s1, WPSVec3<T> const &s2) const
1067 {
1068 return s1.cmp(s2) < 0;
1069 }
1070 };
1074 typedef std::map<WPSVec3<T>, T,struct PosSizeLt> Map;
1075
1076protected:
1078 T m_val[3];
1079};
1080
1087
1090{
1091public:
1093 explicit WPSTransformation(WPSVec3f const &xRow=WPSVec3f(1,0,0), WPSVec3f const &yRow=WPSVec3f(0,1,0)) : m_data(xRow, yRow), m_isIdentity(false)
1094 {
1095 checkIdentity();
1096 }
1098 bool isIdentity() const
1099 {
1100 return m_isIdentity;
1101 }
1103 void checkIdentity() const
1104 {
1105 m_isIdentity= m_data.first==WPSVec3f(1,0,0) && m_data.second==WPSVec3f(0,1,0);
1106 }
1110 WPSVec3f const &operator[](int c) const
1111 {
1112 if (c<0 || c>1) throw libwps::GenericException();
1113 return c==0 ? m_data.first : m_data.second;
1114 }
1116 Vec2f operator*(Vec2f const &pt) const
1117 {
1118 if (m_isIdentity) return pt;
1119 return multiplyDirection(pt)+Vec2f(m_data.first[2],m_data.second[2]);
1120 }
1123 {
1124 if (m_isIdentity) return dir;
1125 Vec2f res;
1126 for (int coord=0; coord<2; ++coord)
1127 {
1128 WPSVec3f const &row=coord==0 ? m_data.first : m_data.second;
1129 float value=0;
1130 for (int i=0; i<2; ++i)
1131 value+=row[i]*dir[i];
1132 res[coord]=value;
1133 }
1134 return res;
1135 }
1137 WPSBox2f operator*(WPSBox2f const &box) const
1138 {
1139 if (m_isIdentity) return box;
1140 return WPSBox2f(operator*(box.min()), operator*(box.max()));
1141 }
1144 {
1145 if (mat.m_isIdentity) return *this;
1147 for (int row=0; row<2; ++row)
1148 {
1149 WPSVec3f &resRow=row==0 ? res.m_data.first : res.m_data.second;
1150 for (int col=0; col<3; ++col)
1151 {
1152 float value=0;
1153 for (int i=0; i<3; ++i)
1154 value+=(*this)[row][i]*(i==2 ? (col==2 ? 1.f : 0.f) : mat[i][col]);
1155 resRow[col]=value;
1156 }
1157 }
1158 res.checkIdentity();
1159 return res;
1160 }
1163 {
1164 if (!mat.m_isIdentity)
1165 *this=(*this)*mat;
1166 return *this;
1167 }
1169 bool operator==(WPSTransformation const &mat) const
1170 {
1171 return m_data==mat.m_data;
1172 }
1174 bool operator!=(WPSTransformation const &mat) const
1175 {
1176 return m_data!=mat.m_data;
1177 }
1179 bool operator<(WPSTransformation const &mat) const
1180 {
1181 return m_data<mat.m_data;
1182 }
1184 bool operator<=(WPSTransformation const &mat) const
1185 {
1186 return m_data<=mat.m_data;
1187 }
1189 bool operator>(WPSTransformation const &mat) const
1190 {
1191 return m_data>mat.m_data;
1192 }
1194 bool operator>=(WPSTransformation const &mat) const
1195 {
1196 return m_data>=mat.m_data;
1197 }
1201 bool decompose(float &rotation, Vec2f &shearing, WPSTransformation &transform, Vec2f const &center) const;
1202
1205 {
1206 return WPSTransformation(WPSVec3f(1, 0, trans[0]), WPSVec3f(0, 1, trans[1]));
1207 }
1209 static WPSTransformation scale(Vec2f const &trans)
1210 {
1211 return WPSTransformation(WPSVec3f(trans[0], 0, 0), WPSVec3f(0, trans[1], 0));
1212 }
1216 static WPSTransformation rotation(float angle, Vec2f const &center=Vec2f(0,0));
1220 static WPSTransformation shear(Vec2f s, Vec2f const &center=Vec2f(0,0))
1221 {
1222 return WPSTransformation(WPSVec3f(1, s[0], -s[0]*center[1]), WPSVec3f(s[1], 1, -s[1]*center[0]));
1223 }
1224protected:
1226 std::pair<WPSVec3f, WPSVec3f > m_data;
1228 mutable bool m_isIdentity;
1229};
1230
1231//
1232// password utility
1233//
1234
1235namespace libwps
1236{
1238bool encodeLotusPassword(char const *password, uint16_t &key, std::vector<uint8_t> &keys, uint8_t const(&defValues)[16]);
1239}
1240#endif /* LIBWPS_INTERNAL_H */
1241/* vim:set shiftwidth=4 softtabstop=4 noexpandtab: */
small class which defines a vector with 2 elements
Definition libwps_internal.h:551
T x() const
first element
Definition libwps_internal.h:559
friend Vec2< T > operator*(U scale, Vec2< T > const &p1)
generic operator*
Definition libwps_internal.h:642
void setX(T xx)
resets the first element
Definition libwps_internal.h:588
int cmpY(Vec2< T > const &p) const
a comparison function: which first compares y then x
Definition libwps_internal.h:673
T m_x
first element
Definition libwps_internal.h:713
Vec2< T > & operator-=(Vec2< T > const &p)
operator-=
Definition libwps_internal.h:613
Vec2< T > & operator*=(U scale)
generic operator*=
Definition libwps_internal.h:621
T y() const
second element
Definition libwps_internal.h:564
Vec2(T xx=0, T yy=0)
constructor
Definition libwps_internal.h:554
bool operator!=(Vec2< T > const &p) const
comparison!=
Definition libwps_internal.h:654
void set(T xx, T yy)
resets the two elements
Definition libwps_internal.h:582
void add(T dx, T dy)
increases the actuals values by dx and dy
Definition libwps_internal.h:599
Vec2< T > & operator+=(Vec2< T > const &p)
operator+=
Definition libwps_internal.h:606
friend Vec2< T > operator+(Vec2< T > const &p1, Vec2< T > const &p2)
operator+
Definition libwps_internal.h:629
bool operator==(Vec2< T > const &p) const
comparison==
Definition libwps_internal.h:649
bool operator<(Vec2< T > const &p) const
comparison<: sort by y
Definition libwps_internal.h:659
int cmp(Vec2< T > const &p) const
a comparison function: which first compares x then y
Definition libwps_internal.h:664
T & operator[](int c)
operator[]
Definition libwps_internal.h:575
friend Vec2< T > operator-(Vec2< T > const &p1, Vec2< T > const &p2)
operator-
Definition libwps_internal.h:635
T operator[](int c) const
operator[]
Definition libwps_internal.h:569
Vec2(Vec2< U > const &p)
generic copy constructor
Definition libwps_internal.h:556
T m_y
second element
Definition libwps_internal.h:713
void setY(T yy)
resets the second element
Definition libwps_internal.h:593
friend std::ostream & operator<<(std::ostream &o, Vec2< T > const &f)
operator<<: prints data in form "XxY"
Definition libwps_internal.h:683
Definition WKSContentListener.h:53
Basic class used to store a spreadsheet sub document.
Definition WKSSubDocument.h:36
small class which defines a 2D WPSBox
Definition libwps_internal.h:727
WPSBox2< T > getUnion(WPSBox2< T > const &box) const
returns the union between this and box
Definition libwps_internal.h:830
Vec2< T > const & min() const
the minimum 2D point (in x and in y)
Definition libwps_internal.h:742
void scale(U factor)
scales all points of the box by factor
Definition libwps_internal.h:817
Vec2< T > m_pt[2]
the two extremities
Definition libwps_internal.h:901
Vec2< T > center() const
the box center
Definition libwps_internal.h:776
Vec2< T > const & max() const
the maximum 2D point (in x and in y)
Definition libwps_internal.h:747
int cmp(WPSBox2< T > const &p) const
comparison function : fist sorts min by Y,X values then max extremity
Definition libwps_internal.h:867
void resizeFromMax(Vec2< T > const &sz)
resize the box keeping the maximum
Definition libwps_internal.h:804
void set(Vec2< T > const &x, Vec2< T > const &y)
resets the data to minimum x and maximum y
Definition libwps_internal.h:782
WPSBox2(WPSBox2< U > const &p)
generic constructor
Definition libwps_internal.h:736
void resizeFromMin(Vec2< T > const &sz)
resize the box keeping the minimum
Definition libwps_internal.h:799
Vec2< T > & min()
the minimum 2D point (in x and in y)
Definition libwps_internal.h:752
void setMax(Vec2< T > const &y)
resets the maximum point
Definition libwps_internal.h:793
std::map< WPSBox2< T >, T, struct PosSizeLt > Map
map of WPSBox2
Definition libwps_internal.h:897
Vec2< T > size() const
the box size
Definition libwps_internal.h:771
WPSBox2< T > getIntersection(WPSBox2< T > const &box) const
returns the intersection between this and box
Definition libwps_internal.h:840
bool operator!=(WPSBox2< T > const &p) const
comparison operator!=
Definition libwps_internal.h:856
WPSBox2(Vec2< T > minPt=Vec2< T >(), Vec2< T > maxPt=Vec2< T >())
constructor
Definition libwps_internal.h:730
Vec2< T > & max()
the maximum 2D point (in x and in y)
Definition libwps_internal.h:757
friend std::ostream & operator<<(std::ostream &o, WPSBox2< T > const &f)
print data in form X0xY0<->X1xY1
Definition libwps_internal.h:877
bool operator==(WPSBox2< T > const &p) const
comparison operator==
Definition libwps_internal.h:851
void setMin(Vec2< T > const &x)
resets the minimum point
Definition libwps_internal.h:788
void resizeFromCenter(Vec2< T > const &sz)
resize the box keeping the center
Definition libwps_internal.h:809
void extend(T val)
extends the bdbox by (val, val) keeping the center
Definition libwps_internal.h:824
bool operator<(WPSBox2< T > const &p) const
comparison operator< : fist sorts min by Y,X values then max extremity
Definition libwps_internal.h:861
Vec2< T > const & operator[](int c) const
the two extremum points which defined the box
Definition libwps_internal.h:765
a structure used to defined the cell position, and a format
Definition WPSCell.h:278
Definition WPSContentListener.h:45
basic class to store an entry in a file This contained :
Definition WPSEntry.h:39
define the font properties
Definition WPSFont.h:37
Definition WPSHeader.h:32
virtual class for content listener
Definition WPSListener.h:37
Class to define the position of an object (textbox, picture, ..) in the document.
Definition WPSPosition.h:40
virtual class to define a sub document
Definition WPSSubDocument.h:34
a transformation which stored the first row of a 3x3 perspective matrix
Definition libwps_internal.h:1090
WPSTransformation & operator*=(WPSTransformation const &mat)
operator*=
Definition libwps_internal.h:1162
static WPSTransformation translation(Vec2f const &trans)
returns a translation transformation
Definition libwps_internal.h:1204
bool operator!=(WPSTransformation const &mat) const
operator!=
Definition libwps_internal.h:1174
bool operator>(WPSTransformation const &mat) const
operator>
Definition libwps_internal.h:1189
std::pair< WPSVec3f, WPSVec3f > m_data
the data
Definition libwps_internal.h:1226
static WPSTransformation rotation(float angle, Vec2f const &center=Vec2f(0, 0))
returns a rotation transformation around center.
Definition libwps_internal.cpp:772
bool operator<(WPSTransformation const &mat) const
operator<
Definition libwps_internal.h:1179
WPSTransformation(WPSVec3f const &xRow=WPSVec3f(1, 0, 0), WPSVec3f const &yRow=WPSVec3f(0, 1, 0))
constructor
Definition libwps_internal.h:1093
Vec2f multiplyDirection(Vec2f const &dir) const
operator* for direction
Definition libwps_internal.h:1122
bool decompose(float &rotation, Vec2f &shearing, WPSTransformation &transform, Vec2f const &center) const
try to decompose the matrix in a rotation + scaling/translation matrix.
Definition libwps_internal.cpp:781
Vec2f operator*(Vec2f const &pt) const
operator* for vec2f
Definition libwps_internal.h:1116
void checkIdentity() const
check if a matrix is the identity matrix
Definition libwps_internal.h:1103
bool operator>=(WPSTransformation const &mat) const
operator>=
Definition libwps_internal.h:1194
WPSVec3f const & operator[](int c) const
the two extremum points which defined the box
Definition libwps_internal.h:1110
WPSBox2f operator*(WPSBox2f const &box) const
operator* for box2f
Definition libwps_internal.h:1137
bool isIdentity() const
returns true if the matrix is an identity matrix
Definition libwps_internal.h:1098
bool m_isIdentity
flag to know if this matrix is an identity matrix
Definition libwps_internal.h:1228
WPSTransformation operator*(WPSTransformation const &mat) const
operator* for transform
Definition libwps_internal.h:1143
static WPSTransformation shear(Vec2f s, Vec2f const &center=Vec2f(0, 0))
returns a shear transformation letting center invariant, ie.
Definition libwps_internal.h:1220
bool operator<=(WPSTransformation const &mat) const
operator<=
Definition libwps_internal.h:1184
bool operator==(WPSTransformation const &mat) const
operator==
Definition libwps_internal.h:1169
static WPSTransformation scale(Vec2f const &trans)
returns a scaling transformation
Definition libwps_internal.h:1209
small class which defines a vector with 3 elements
Definition libwps_internal.h:913
std::map< WPSVec3< T >, T, struct PosSizeLt > Map
map of WPSVec3
Definition libwps_internal.h:1074
bool operator==(WPSVec3< T > const &p) const
comparison==
Definition libwps_internal.h:1028
friend WPSVec3< T > operator-(WPSVec3< T > const &p1, WPSVec3< T > const &p2)
operator-
Definition libwps_internal.h:1014
T y() const
second element
Definition libwps_internal.h:934
friend WPSVec3< T > operator*(U scale, WPSVec3< T > const &p1)
generic operator*
Definition libwps_internal.h:1021
WPSVec3< T > & operator*=(U scale)
generic operator*=
Definition libwps_internal.h:1001
WPSVec3< T > & operator+=(WPSVec3< T > const &p)
operator+=
Definition libwps_internal.h:988
WPSVec3(T xx=0, T yy=0, T zz=0)
constructor
Definition libwps_internal.h:916
friend WPSVec3< T > operator+(WPSVec3< T > const &p1, WPSVec3< T > const &p2)
operator+
Definition libwps_internal.h:1008
bool operator!=(WPSVec3< T > const &p) const
comparison!=
Definition libwps_internal.h:1033
T & operator[](int c)
operator[]
Definition libwps_internal.h:950
bool operator<(WPSVec3< T > const &p) const
comparison<: which first compares x values, then y values then z values.
Definition libwps_internal.h:1038
void setY(T yy)
resets the second element
Definition libwps_internal.h:969
T x() const
first element
Definition libwps_internal.h:929
void set(T xx, T yy, T zz)
resets the three elements
Definition libwps_internal.h:957
T m_val[3]
the values
Definition libwps_internal.h:1078
void setX(T xx)
resets the first element
Definition libwps_internal.h:964
WPSVec3(WPSVec3< U > const &p)
generic copy constructor
Definition libwps_internal.h:923
int cmp(WPSVec3< T > const &p) const
a comparison function: which first compares x values, then y values then z values.
Definition libwps_internal.h:1043
WPSVec3< T > & operator-=(WPSVec3< T > const &p)
operator-=
Definition libwps_internal.h:994
void add(T dx, T dy, T dz)
increases the actuals values by dx, dy, dz
Definition libwps_internal.h:980
void setZ(T zz)
resets the third element
Definition libwps_internal.h:974
friend std::ostream & operator<<(std::ostream &o, WPSVec3< T > const &f)
operator<<: prints data in form "XxYxZ"
Definition libwps_internal.h:1054
T z() const
third element
Definition libwps_internal.h:939
T operator[](int c) const
operator[]
Definition libwps_internal.h:944
Definition libwps_internal.h:145
Definition libwps_internal.h:160
Definition libwps_internal.h:150
Definition libwps_internal.h:155
Definition libwps_internal.h:140
WPSBox2< int > WPSBox2i
WPSBox2 of int.
Definition libwps_internal.h:905
shared_ptr< librevenge::RVNGInputStream > RVNGInputStreamPtr
shared pointer to librevenge::RVNGInputStream
Definition libwps_internal.h:88
WPSVec3< float > WPSVec3f
WPSVec3 of float.
Definition libwps_internal.h:1086
Vec2< int > Vec2i
Vec2 of int.
Definition libwps_internal.h:719
Vec2< float > Vec2f
Vec2 of float.
Definition libwps_internal.h:721
shared_ptr< WKSContentListener > WKSContentListenerPtr
shared pointer to WKSContentListener
Definition libwps_internal.h:115
WPSBox2< float > WPSBox2f
WPSBox2 of float.
Definition libwps_internal.h:907
Vec2< bool > Vec2b
Vec2 of bool.
Definition libwps_internal.h:717
#define WPS_ATTRIBUTE_PRINTF(fmt, arg)
Definition libwps_internal.h:122
shared_ptr< WKSSubDocument > WKSSubDocumentPtr
shared pointer to WKSSubDocument
Definition libwps_internal.h:117
shared_ptr< WPSListener > WPSListenerPtr
shared pointer to WPSListener
Definition libwps_internal.h:106
shared_ptr< WPSHeader > WPSHeaderPtr
shared pointer to WPSHeader
Definition libwps_internal.h:110
WPSVec3< unsigned char > WPSVec3uc
WPSVec3 of unsigned char.
Definition libwps_internal.h:1082
shared_ptr< WPSCell > WPSCellPtr
shared pointer to WPSCell
Definition libwps_internal.h:104
shared_ptr< WPSSubDocument > WPSSubDocumentPtr
shared pointer to WPSSubDocument
Definition libwps_internal.h:112
WPSVec3< int > WPSVec3i
WPSVec3 of int.
Definition libwps_internal.h:1084
shared_ptr< WPSContentListener > WPSContentListenerPtr
shared pointer to WPSContentListener
Definition libwps_internal.h:108
Definition libwps_internal.cpp:39
NumberingType
Definition libwps_internal.h:244
@ BULLET
Definition libwps_internal.h:244
@ LOWERCASE_ROMAN
Definition libwps_internal.h:244
@ NONE
Definition libwps_internal.h:244
@ LOWERCASE
Definition libwps_internal.h:244
@ UPPERCASE_ROMAN
Definition libwps_internal.h:244
@ UPPERCASE
Definition libwps_internal.h:244
@ ARABIC
Definition libwps_internal.h:244
uint16_t readU16(librevenge::RVNGInputStream *input)
Definition libwps_internal.cpp:64
bool readDataToEnd(RVNGInputStreamPtr &input, librevenge::RVNGBinaryData &data)
try to read the last bytes from input and store them in a librevenge::RVNGBinaryData
Definition libwps_internal.cpp:346
uint8_t readU8(librevenge::RVNGInputStream *input)
Definition libwps_internal.cpp:40
bool readDouble2Inv(RVNGInputStreamPtr &input, double &res, bool &isNaN)
read a double store with 2 bytes: exponent 1.5 bytes, kind of mantisse 0.5 bytes
Definition libwps_internal.cpp:273
int8_t read8(librevenge::RVNGInputStream *input)
Definition libwps_internal.cpp:59
uint32_t readU32(librevenge::RVNGInputStream *input)
Definition libwps_internal.cpp:76
std::string numberingTypeToString(NumberingType type)
Definition libwps_internal.cpp:357
bool readDouble4Inv(RVNGInputStreamPtr &input, double &res, bool &isNaN)
read a double store with 4 bytes: exponent 3.5 bytes, mantisse 0.5 bytes
Definition libwps_internal.cpp:303
bool readData(RVNGInputStreamPtr &input, unsigned long size, librevenge::RVNGBinaryData &data)
try to read sz bytes from input and store them in a librevenge::RVNGBinaryData
Definition libwps_internal.cpp:332
int16_t read16(librevenge::RVNGInputStream *input)
Definition libwps_internal.cpp:71
int32_t read32(librevenge::RVNGInputStream *input)
Definition libwps_internal.cpp:85
bool encodeLotusPassword(char const *password, uint16_t &key, std::vector< uint8_t > &keys, uint8_t const(&defValues)[16])
try to encode a lotus file
Definition libwps_internal.cpp:836
bool readDouble10(RVNGInputStreamPtr &input, double &res, bool &isNaN)
read a double store with 10 bytes: mantisse 8 bytes, exponent 2 bytes
Definition libwps_internal.cpp:224
bool readDouble8(RVNGInputStreamPtr &input, double &res, bool &isNaN)
read a double store with 8 bytes: mantisse 6.5 bytes, exponent 1.5 bytes
Definition libwps_internal.cpp:173
Justification
Definition libwps_internal.h:247
@ JustificationFull
Definition libwps_internal.h:247
@ JustificationCenter
Definition libwps_internal.h:247
@ JustificationRight
Definition libwps_internal.h:248
@ JustificationFullAllLines
Definition libwps_internal.h:248
@ JustificationLeft
Definition libwps_internal.h:247
void appendUnicode(uint32_t val, librevenge::RVNGString &buffer)
adds an unicode character to a string ( with correct encoding ).
Definition libwps_internal.cpp:718
@ NoBreakBit
Definition libwps_internal.h:250
@ NoBreakWithNextBit
Definition libwps_internal.h:250
bool readDouble4(RVNGInputStreamPtr &input, double &res, bool &isNaN)
read a double store with 4 bytes: mantisse 2.5 bytes, exponent 1.5 bytes
Definition libwps_internal.cpp:90
SubDocumentType
Definition libwps_internal.h:246
@ DOC_TEXT_BOX
Definition libwps_internal.h:246
@ DOC_NOTE
Definition libwps_internal.h:246
@ DOC_NONE
Definition libwps_internal.h:246
@ DOC_COMMENT_ANNOTATION
Definition libwps_internal.h:246
@ DOC_HEADER_FOOTER
Definition libwps_internal.h:246
@ DOC_TABLE
Definition libwps_internal.h:246
internal struct used to create sorted map, sorted by X
Definition libwps_internal.h:693
bool operator()(Vec2< T > const &s1, Vec2< T > const &s2) const
comparaison function
Definition libwps_internal.h:695
internal struct used to create sorted map, sorted by Y
Definition libwps_internal.h:705
bool operator()(Vec2< T > const &s1, Vec2< T > const &s2) const
comparaison function
Definition libwps_internal.h:707
a border list
Definition libwps_internal.h:380
Style
the line style
Definition libwps_internal.h:382
@ LargeDot
Definition libwps_internal.h:382
@ None
Definition libwps_internal.h:382
@ Simple
Definition libwps_internal.h:382
@ Dot
Definition libwps_internal.h:382
@ Dash
Definition libwps_internal.h:382
Pos
Definition libwps_internal.h:385
@ Bottom
Definition libwps_internal.h:385
@ Top
Definition libwps_internal.h:385
@ Left
Definition libwps_internal.h:385
@ Right
Definition libwps_internal.h:385
bool operator==(WPSBorder const &orig) const
operator==
Definition libwps_internal.h:401
std::string m_extra
extra data ( if needed)
Definition libwps_internal.h:431
bool operator!=(WPSBorder const &orig) const
operator!=
Definition libwps_internal.h:407
Style m_style
the border style
Definition libwps_internal.h:419
friend std::ostream & operator<<(std::ostream &o, WPSBorder const &border)
operator<<
Definition libwps_internal.cpp:631
Type
the line repetition
Definition libwps_internal.h:384
@ Double
Definition libwps_internal.h:384
@ Single
Definition libwps_internal.h:384
@ Triple
Definition libwps_internal.h:384
bool isEmpty() const
returns true if the border is empty
Definition libwps_internal.h:395
bool addTo(librevenge::RVNGPropertyList &propList, std::string which="") const
add the border property to proplist (if needed )
Definition libwps_internal.cpp:529
std::vector< double > m_widthsList
the different length used for each line/sep (if defined)
Definition libwps_internal.h:427
@ RightBit
Definition libwps_internal.h:386
@ BottomBit
Definition libwps_internal.h:386
@ TopBit
Definition libwps_internal.h:386
@ LeftBit
Definition libwps_internal.h:386
WPSBorder()
constructor
Definition libwps_internal.h:389
int m_width
the border width
Definition libwps_internal.h:423
Type m_type
the border repetition
Definition libwps_internal.h:421
int compare(WPSBorder const &orig) const
compare two cell
Definition libwps_internal.cpp:511
WPSColor m_color
the border color
Definition libwps_internal.h:429
internal struct used to create sorted map, sorted first min then max
Definition libwps_internal.h:887
bool operator()(WPSBox2< T > const &s1, WPSBox2< T > const &s2) const
comparaison function
Definition libwps_internal.h:889
the class to store a color
Definition libwps_internal.h:274
unsigned char getRed() const
returns the red value
Definition libwps_internal.h:320
static WPSColor white()
return the white color
Definition libwps_internal.h:296
WPSColor(unsigned char r, unsigned char g, unsigned char b, unsigned char a=255)
constructor from color
Definition libwps_internal.h:280
bool operator>=(WPSColor const &c) const
operator>=
Definition libwps_internal.h:365
std::string str() const
print the color in the form #rrggbb
Definition libwps_internal.cpp:413
unsigned char getGreen() const
returns the green value
Definition libwps_internal.h:325
bool operator>(WPSColor const &c) const
operator>
Definition libwps_internal.h:360
uint32_t value() const
return the rgba value
Definition libwps_internal.h:305
bool operator==(WPSColor const &c) const
operator==
Definition libwps_internal.h:340
WPSColor(uint32_t argb=0)
constructor
Definition libwps_internal.h:276
WPSColor & operator=(uint32_t argb)
operator=
Definition libwps_internal.h:285
uint32_t m_value
the argb color
Definition libwps_internal.h:375
bool isWhite() const
return true if the color is white
Definition libwps_internal.h:335
bool operator!=(WPSColor const &c) const
operator!=
Definition libwps_internal.h:345
unsigned char getBlue() const
returns the green value
Definition libwps_internal.h:315
static WPSColor barycenter(float alpha, WPSColor const &colA, float beta, WPSColor const &colB)
return alpha*colA+beta*colB
Definition libwps_internal.cpp:386
bool isBlack() const
return true if the color is black
Definition libwps_internal.h:330
unsigned char getAlpha() const
returns the alpha value
Definition libwps_internal.h:310
friend std::ostream & operator<<(std::ostream &o, WPSColor const &c)
operator<< in the form #rrggbb
Definition libwps_internal.cpp:401
bool operator<=(WPSColor const &c) const
operator<=
Definition libwps_internal.h:355
bool operator<(WPSColor const &c) const
operator<
Definition libwps_internal.h:350
static WPSColor black()
return the back color
Definition libwps_internal.h:291
Definition libwps_internal.h:254
double m_width
Definition libwps_internal.h:258
double m_rightGutter
Definition libwps_internal.h:260
WPSColumnDefinition()
Definition libwps_internal.h:255
double m_leftGutter
Definition libwps_internal.h:259
Definition libwps_internal.h:264
uint32_t m_attributes
Definition libwps_internal.h:268
WPSColumnProperties()
Definition libwps_internal.h:265
uint8_t m_alignment
Definition libwps_internal.h:269
small class use to define a embedded object
Definition libwps_internal.h:439
bool isEmpty() const
return true if the picture contains no data
Definition libwps_internal.h:455
WPSEmbeddedObject(librevenge::RVNGBinaryData const &binaryData, std::string type="image/pict")
constructor
Definition libwps_internal.h:445
WPSEmbeddedObject()
empty constructor
Definition libwps_internal.h:441
virtual ~WPSEmbeddedObject()
destructor
Definition libwps_internal.h:451
std::vector< librevenge::RVNGBinaryData > m_dataList
the picture content: one data by representation
Definition libwps_internal.h:480
bool addTo(librevenge::RVNGPropertyList &propList) const
add the link property to proplist
Definition libwps_internal.cpp:668
void add(librevenge::RVNGBinaryData const &binaryData, std::string type="image/pict")
add a picture
Definition libwps_internal.h:465
friend std::ostream & operator<<(std::ostream &o, WPSEmbeddedObject const &pict)
operator<<
Definition libwps_internal.cpp:698
std::vector< std::string > m_typeList
the picture type: one type by representation
Definition libwps_internal.h:482
a field
Definition libwps_internal.h:487
Type m_type
the type
Definition libwps_internal.h:500
std::string m_DTFormat
the date/time format using strftime format if defined (see strftime)
Definition libwps_internal.h:502
Type
Defines some basic type for field.
Definition libwps_internal.h:489
@ None
Definition libwps_internal.h:489
@ PageNumberNext
Definition libwps_internal.h:489
@ Link
Definition libwps_internal.h:489
@ Title
Definition libwps_internal.h:489
@ Date
Definition libwps_internal.h:489
@ PageCount
Definition libwps_internal.h:489
@ Database
Definition libwps_internal.h:489
@ PageNumber
Definition libwps_internal.h:489
@ Time
Definition libwps_internal.h:489
librevenge::RVNGString getString() const
returns a string corresponding to the field (if possible) *‍/
Definition libwps_internal.cpp:453
libwps::NumberingType m_numberingType
the number type ( for number field )
Definition libwps_internal.h:504
bool addTo(librevenge::RVNGPropertyList &propList) const
add the link property to proplist (if possible)
Definition libwps_internal.cpp:423
std::string m_data
the database/link field ( if defined )
Definition libwps_internal.h:506
WPSField(Type type)
basic constructor
Definition libwps_internal.h:492
small structure use to store a stream and it debug file
Definition WPSStream.h:30
internal struct used to create sorted map, sorted by X, Y, Z
Definition libwps_internal.h:1064
bool operator()(WPSVec3< T > const &s1, WPSVec3< T > const &s2) const
comparaison function
Definition libwps_internal.h:1066
a noop deleter used to transform a librevenge pointer in a false shared_ptr
Definition libwps_internal.h:82
void operator()(T *)
Definition libwps_internal.h:83

Generated on Wed Nov 29 2023 19:00:10 for libwps by doxygen 1.9.8