Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
6f205698
Commit
6f205698
authored
Oct 27, 2011
by
Ivan Ilin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
images for CFF implementation
parent
023fddb6
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
790 additions
and
90 deletions
+790
-90
UBCFFSubsetAdaptor.cpp
src/adaptors/UBCFFSubsetAdaptor.cpp
+757
-86
UBCFFSubsetAdaptor.h
src/adaptors/UBCFFSubsetAdaptor.h
+33
-4
UBBoardPaletteManager.cpp
src/board/UBBoardPaletteManager.cpp
+0
-0
No files found.
src/adaptors/UBCFFSubsetAdaptor.cpp
View file @
6f205698
This diff is collapsed.
Click to expand it.
src/adaptors/UBCFFSubsetAdaptor.h
View file @
6f205698
...
...
@@ -26,7 +26,9 @@ class UBDocumentProxy;
class
UBGraphicsScene
;
class
QSvgGenerator
;
class
UBGraphicsSvgItem
;
class
UBGraphicsPixmapItem
;
class
QTransform
;
class
QPainter
;
struct
IwbExt
{
IwbExt
()
{;}
...
...
@@ -36,7 +38,7 @@ struct IwbExt {
QDomNode
element
;
QVector
<
QDomNode
>
extAttr
;
QHash
<
QString
,
QString
>
textAttributes
;
operator
bool
()
const
{
return
group
.
isNull
()
||
!
element
.
isNull
();}
operator
bool
()
const
{
return
!
group
.
isNull
()
||
!
element
.
isNull
();}
};
class
UBCFFSubsetAdaptor
...
...
@@ -62,10 +64,11 @@ private:
};
public
:
UBCFFSubsetReader
(
UBDocumentProxy
*
proxy
,
Q
ByteArray
&
content
);
UBCFFSubsetReader
(
UBDocumentProxy
*
proxy
,
Q
File
*
content
);
QXmlStreamReader
mReader
;
UBDocumentProxy
*
mProxy
;
QString
pwdContent
;
bool
parse
();
...
...
@@ -79,14 +82,38 @@ private:
QSize
mSize
;
private
:
// to kill
QDomDocument
mDOMdoc
;
QHash
<
QString
,
IwbExt
>
extProperties
;
QDomNode
mCurrentDOMElement
;
QHash
<
QString
,
IwbExt
>
iwbExtProperties
;
bool
hashElements
();
void
addExtentionsToHash
(
QDomElement
*
parent
);
void
addExtentionsToHash
(
QDomElement
*
parent
,
QDomElement
*
topGroup
);
void
hashSvg
(
QDomNode
*
parent
,
QString
prefix
=
""
);
void
hashSiblingIwbElements
(
QDomElement
*
parent
,
QDomElement
*
topGroup
=
0
);
inline
void
parseSvgSectionAttr
(
const
QDomElement
&
);
bool
parseSvgPage
(
const
QDomElement
&
parent
);
bool
parseSvgPageset
(
const
QDomElement
&
parent
);
bool
parseSvgElement
(
const
QDomElement
&
parent
);
inline
bool
parseSvgRect
(
const
QDomElement
&
element
);
inline
bool
parseSvgEllipse
(
const
QDomElement
&
element
);
inline
bool
parseSvgPolygon
(
const
QDomElement
&
element
);
inline
bool
parseSvgPolyline
(
const
QDomElement
&
element
);
inline
bool
parseSvgText
(
const
QDomElement
&
element
);
inline
bool
parseSvgTextarea
(
const
QDomElement
&
element
);
inline
bool
parseSvgImage
(
const
QDomElement
&
element
);
// inline bool parseSvgTSpan(const QDomElement)
bool
parseIwbGroup
(
QDomNode
*
element
);
// to kill
void
parseTextAttributes
(
const
QDomElement
&
element
,
qreal
&
fontSize
,
QColor
&
fontColor
,
QString
&
fontFamily
,
QString
&
fontStretch
,
bool
&
italic
,
int
&
fontWeight
,
int
&
textAlign
,
QTransform
&
fontTransform
);
//methods to store current xml parse state
int
PopState
();
...
...
@@ -123,6 +150,8 @@ private:
//helper methods
bool
getCurElementTransorm
(
QTransform
&
transform
);
void
repositionSvgItem
(
UBGraphicsSvgItem
*
item
,
qreal
width
,
qreal
height
,
qreal
x
,
qreal
y
,
bool
useTransform
,
QTransform
&
transform
);
void
repositionPixmapItem
(
UBGraphicsPixmapItem
*
item
,
qreal
width
,
qreal
height
,
qreal
x
,
qreal
y
,
bool
useTransform
,
QTransform
&
transform
);
QColor
colorFromString
(
const
QString
&
clrString
);
QTransform
transformFromString
(
const
QString
trString
);
bool
getViewBoxDimenstions
(
const
QString
&
viewBox
);
...
...
src/board/UBBoardPaletteManager.cpp
100755 → 100644
View file @
6f205698
File mode changed from 100755 to 100644
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment