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
9aa3027c
Commit
9aa3027c
authored
Oct 31, 2011
by
Ivan Ilin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
implemented delegate() function for graphics objects
parent
2f34f5e5
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
50 additions
and
41 deletions
+50
-41
UBCFFSubsetAdaptor.cpp
src/adaptors/UBCFFSubsetAdaptor.cpp
+9
-10
UBCFFSubsetAdaptor.h
src/adaptors/UBCFFSubsetAdaptor.h
+3
-2
UBGraphicsAudioItem.h
src/domain/UBGraphicsAudioItem.h
+1
-0
UBGraphicsItemDelegate.h
src/domain/UBGraphicsItemDelegate.h
+8
-8
UBGraphicsPDFItem.h
src/domain/UBGraphicsPDFItem.h
+2
-1
UBGraphicsPixmapItem.h
src/domain/UBGraphicsPixmapItem.h
+5
-2
UBGraphicsProxyWidget.h
src/domain/UBGraphicsProxyWidget.h
+2
-2
UBGraphicsSvgItem.h
src/domain/UBGraphicsSvgItem.h
+2
-1
UBGraphicsTextItem.cpp
src/domain/UBGraphicsTextItem.cpp
+0
-1
UBGraphicsTextItem.h
src/domain/UBGraphicsTextItem.h
+2
-1
UBGraphicsVideoItem.h
src/domain/UBGraphicsVideoItem.h
+1
-0
UBItem.h
src/domain/UBItem.h
+14
-11
UBGraphicsCurtainItem.cpp
src/tools/UBGraphicsCurtainItem.cpp
+0
-1
UBGraphicsCurtainItem.h
src/tools/UBGraphicsCurtainItem.h
+1
-1
No files found.
src/adaptors/UBCFFSubsetAdaptor.cpp
View file @
9aa3027c
...
@@ -818,8 +818,8 @@ bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgImage(const QDomElement &ele
...
@@ -818,8 +818,8 @@ bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgImage(const QDomElement &ele
}
}
// repositionSvgItem(svgItem, rx * 2 + 10, ry * 2 + 10, cx - rx - 5, cy - ry -5, hastransform, transform);
// repositionSvgItem(svgItem, rx * 2 + 10, ry * 2 + 10, cx - rx - 5, cy - ry -5, hastransform, transform);
repositionPixmapItem
(
pixItem
,
width
,
height
,
x
,
y
,
hastransform
,
transform
);
repositionPixmapItem
(
pixItem
,
width
,
height
,
x
,
y
,
hastransform
,
transform
);
// hashSceneItem(element, pixItem->
);
hashSceneItem
(
element
,
pixItem
);
pixItem
->
Delegate
()
->
lock
(
true
);
return
true
;
return
true
;
}
}
...
@@ -852,13 +852,13 @@ bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseIwbGroup(QDomNode *group)
...
@@ -852,13 +852,13 @@ bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseIwbGroup(QDomNode *group)
return
true
;
return
true
;
}
}
//void UBCFFSubsetAdaptor::UBCFFSubsetReader::hashSceneItem(QDomNode &element, UBGraphicsItemDelegate
*item)
void
UBCFFSubsetAdaptor
::
UBCFFSubsetReader
::
hashSceneItem
(
const
QDomElement
&
element
,
UBGraphicsItem
*
item
)
//
{
{
//
//
adding element pointer to hash to refer if needed
// adding element pointer to hash to refer if needed
//
QString key = element.attribute(aId);
QString
key
=
element
.
attribute
(
aId
);
//
if (!key.isNull())
if
(
!
key
.
isNull
())
//
persistedItems.insert(key, item);
persistedItems
.
insert
(
key
,
item
);
//
}
}
bool
UBCFFSubsetAdaptor
::
UBCFFSubsetReader
::
parseSvgElement
(
const
QDomElement
&
parent
)
bool
UBCFFSubsetAdaptor
::
UBCFFSubsetReader
::
parseSvgElement
(
const
QDomElement
&
parent
)
{
{
...
@@ -868,7 +868,6 @@ bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgElement(const QDomElement &p
...
@@ -868,7 +868,6 @@ bool UBCFFSubsetAdaptor::UBCFFSubsetReader::parseSvgElement(const QDomElement &p
return
false
;
return
false
;
}
}
if
(
tagName
==
tRect
&&
!
parseSvgRect
(
parent
))
return
false
;
if
(
tagName
==
tRect
&&
!
parseSvgRect
(
parent
))
return
false
;
else
if
(
tagName
==
tEllipse
&&
!
parseSvgEllipse
(
parent
))
return
false
;
else
if
(
tagName
==
tEllipse
&&
!
parseSvgEllipse
(
parent
))
return
false
;
else
if
(
tagName
==
tPolygon
&&
!
parseSvgPolygon
(
parent
))
return
false
;
else
if
(
tagName
==
tPolygon
&&
!
parseSvgPolygon
(
parent
))
return
false
;
...
...
src/adaptors/UBCFFSubsetAdaptor.h
View file @
9aa3027c
...
@@ -30,6 +30,7 @@ class UBGraphicsPixmapItem;
...
@@ -30,6 +30,7 @@ class UBGraphicsPixmapItem;
class
UBGraphicsItemDelegate
;
class
UBGraphicsItemDelegate
;
class
QTransform
;
class
QTransform
;
class
QPainter
;
class
QPainter
;
class
UBGraphicsItem
;
struct
IwbExt
{
struct
IwbExt
{
IwbExt
()
{;}
IwbExt
()
{;}
...
@@ -87,7 +88,7 @@ private:
...
@@ -87,7 +88,7 @@ private:
QDomDocument
mDOMdoc
;
QDomDocument
mDOMdoc
;
QDomNode
mCurrentDOMElement
;
QDomNode
mCurrentDOMElement
;
QHash
<
QString
,
IwbExt
>
iwbExtProperties
;
QHash
<
QString
,
IwbExt
>
iwbExtProperties
;
QHash
<
QString
,
UBGraphicsItem
Delegate
*>
persistedItems
;
QHash
<
QString
,
UBGraphicsItem
*>
persistedItems
;
bool
hashElements
();
bool
hashElements
();
void
addExtentionsToHash
(
QDomElement
*
parent
,
QDomElement
*
topGroup
);
void
addExtentionsToHash
(
QDomElement
*
parent
,
QDomElement
*
topGroup
);
...
@@ -109,7 +110,7 @@ private:
...
@@ -109,7 +110,7 @@ private:
inline
bool
parseSvgImage
(
const
QDomElement
&
element
);
inline
bool
parseSvgImage
(
const
QDomElement
&
element
);
// inline bool parseSvgTSpan(const QDomElement)
// inline bool parseSvgTSpan(const QDomElement)
bool
parseIwbGroup
(
QDomNode
*
element
);
bool
parseIwbGroup
(
QDomNode
*
element
);
inline
void
hashSceneItem
(
QDomNode
*
element
,
UBGraphicsItemDelegate
*
item
);
inline
void
hashSceneItem
(
const
QDomElement
&
element
,
UBGraphicsItem
*
item
);
// to kill
// to kill
void
parseTextAttributes
(
const
QDomElement
&
element
,
qreal
&
fontSize
,
QColor
&
fontColor
,
void
parseTextAttributes
(
const
QDomElement
&
element
,
qreal
&
fontSize
,
QColor
&
fontColor
,
...
...
src/domain/UBGraphicsAudioItem.h
View file @
9aa3027c
...
@@ -37,6 +37,7 @@ public:
...
@@ -37,6 +37,7 @@ public:
}
}
virtual
UBItem
*
deepCopy
()
const
;
virtual
UBItem
*
deepCopy
()
const
;
virtual
UBGraphicsItemDelegate
*
Delegate
()
const
{
return
mDelegate
;}
private
slots
:
private
slots
:
...
...
src/domain/UBGraphicsItemDelegate.h
View file @
9aa3027c
...
@@ -30,7 +30,7 @@ class UBGraphicsWidgetItem;
...
@@ -30,7 +30,7 @@ class UBGraphicsWidgetItem;
class
DelegateButton
:
public
QGraphicsSvgItem
class
DelegateButton
:
public
QGraphicsSvgItem
{
{
Q_OBJECT
;
Q_OBJECT
public
:
public
:
DelegateButton
(
const
QString
&
fileName
,
QGraphicsItem
*
pDelegated
,
QGraphicsItem
*
parent
=
0
)
DelegateButton
(
const
QString
&
fileName
,
QGraphicsItem
*
pDelegated
,
QGraphicsItem
*
parent
=
0
)
...
@@ -90,7 +90,7 @@ class DelegateButton: public QGraphicsSvgItem
...
@@ -90,7 +90,7 @@ class DelegateButton: public QGraphicsSvgItem
class
UBGraphicsItemDelegate
:
public
QObject
class
UBGraphicsItemDelegate
:
public
QObject
{
{
Q_OBJECT
;
Q_OBJECT
public
:
public
:
UBGraphicsItemDelegate
(
QGraphicsItem
*
pDelegated
,
QObject
*
parent
=
0
,
bool
respectRatio
=
true
,
bool
canRotate
=
false
);
UBGraphicsItemDelegate
(
QGraphicsItem
*
pDelegated
,
QObject
*
parent
=
0
,
bool
respectRatio
=
true
,
bool
canRotate
=
false
);
...
@@ -129,17 +129,19 @@ class UBGraphicsItemDelegate : public QObject
...
@@ -129,17 +129,19 @@ class UBGraphicsItemDelegate : public QObject
void
setMimeData
(
QMimeData
*
mimeData
);
void
setMimeData
(
QMimeData
*
mimeData
);
signals
:
signals
:
void
showOnDisplayChanged
(
bool
shown
);
void
showOnDisplayChanged
(
bool
shown
);
void
lockChanged
(
bool
locked
);
void
lockChanged
(
bool
locked
);
public
slots
:
public
slots
:
virtual
void
remove
(
bool
canUndo
=
true
);
virtual
void
remove
(
bool
canUndo
=
true
);
void
showMenu
();
void
showMenu
();
virtual
void
showHide
(
bool
show
);
virtual
void
lock
(
bool
lock
);
virtual
void
duplicate
();
protected
:
protected
:
virtual
void
buildButtons
()
{
};
virtual
void
buildButtons
()
{
;}
virtual
void
decorateMenu
(
QMenu
*
menu
);
virtual
void
decorateMenu
(
QMenu
*
menu
);
virtual
void
updateMenuActionState
();
virtual
void
updateMenuActionState
();
...
@@ -164,9 +166,7 @@ class UBGraphicsItemDelegate : public QObject
...
@@ -164,9 +166,7 @@ class UBGraphicsItemDelegate : public QObject
protected
slots
:
protected
slots
:
virtual
void
gotoContentSource
(
bool
checked
);
virtual
void
gotoContentSource
(
bool
checked
);
virtual
void
showHide
(
bool
show
);
virtual
void
lock
(
bool
lock
);
virtual
void
duplicate
();
private
:
private
:
...
...
src/domain/UBGraphicsPDFItem.h
View file @
9aa3027c
...
@@ -48,6 +48,7 @@ class UBGraphicsPDFItem: public GraphicsPDFItem, public UBItem, public UBGraphic
...
@@ -48,6 +48,7 @@ class UBGraphicsPDFItem: public GraphicsPDFItem, public UBItem, public UBGraphic
virtual
void
remove
();
virtual
void
remove
();
virtual
UBGraphicsPixmapItem
*
toPixmapItem
()
const
;
virtual
UBGraphicsPixmapItem
*
toPixmapItem
()
const
;
virtual
UBGraphicsItemDelegate
*
Delegate
()
const
{
return
mDelegate
;}
protected
:
protected
:
...
@@ -57,7 +58,7 @@ class UBGraphicsPDFItem: public GraphicsPDFItem, public UBItem, public UBGraphic
...
@@ -57,7 +58,7 @@ class UBGraphicsPDFItem: public GraphicsPDFItem, public UBItem, public UBGraphic
virtual
QVariant
itemChange
(
GraphicsItemChange
change
,
const
QVariant
&
value
);
virtual
QVariant
itemChange
(
GraphicsItemChange
change
,
const
QVariant
&
value
);
UBGraphicsItemDelegate
*
mDelegate
;
//
UBGraphicsItemDelegate* mDelegate;
};
};
#endif
/* UBGRAPHICSPDFITEM_H_ */
#endif
/* UBGRAPHICSPDFITEM_H_ */
src/domain/UBGraphicsPixmapItem.h
View file @
9aa3027c
...
@@ -45,11 +45,13 @@ class UBGraphicsPixmapItem : public QObject, public QGraphicsPixmapItem, public
...
@@ -45,11 +45,13 @@ class UBGraphicsPixmapItem : public QObject, public QGraphicsPixmapItem, public
virtual
void
remove
();
virtual
void
remove
();
Q_PROPERTY
(
qreal
opacity
READ
opacity
WRITE
setOpacity
)
;
Q_PROPERTY
(
qreal
opacity
READ
opacity
WRITE
setOpacity
)
void
setOpacity
(
qreal
op
);
void
setOpacity
(
qreal
op
);
qreal
opacity
()
const
;
qreal
opacity
()
const
;
virtual
UBGraphicsItemDelegate
*
Delegate
()
const
{
return
mDelegate
;}
protected
:
protected
:
virtual
void
mousePressEvent
(
QGraphicsSceneMouseEvent
*
event
);
virtual
void
mousePressEvent
(
QGraphicsSceneMouseEvent
*
event
);
...
@@ -60,7 +62,8 @@ protected:
...
@@ -60,7 +62,8 @@ protected:
virtual
QVariant
itemChange
(
GraphicsItemChange
change
,
const
QVariant
&
value
);
virtual
QVariant
itemChange
(
GraphicsItemChange
change
,
const
QVariant
&
value
);
UBGraphicsItemDelegate
*
mDelegate
;
// UBGraphicsItemDelegate* mDelegate;
};
};
...
...
src/domain/UBGraphicsProxyWidget.h
View file @
9aa3027c
...
@@ -41,7 +41,7 @@ class UBGraphicsProxyWidget: public QGraphicsProxyWidget, public UBItem, public
...
@@ -41,7 +41,7 @@ class UBGraphicsProxyWidget: public QGraphicsProxyWidget, public UBItem, public
virtual
void
remove
();
virtual
void
remove
();
UBGraphicsItemDelegate
*
delegate
()
{
return
mDelegate
;}
virtual
UBGraphicsItemDelegate
*
delegate
()
const
{
return
mDelegate
;}
protected
:
protected
:
...
@@ -53,7 +53,7 @@ class UBGraphicsProxyWidget: public QGraphicsProxyWidget, public UBItem, public
...
@@ -53,7 +53,7 @@ class UBGraphicsProxyWidget: public QGraphicsProxyWidget, public UBItem, public
virtual
QVariant
itemChange
(
GraphicsItemChange
change
,
const
QVariant
&
value
);
virtual
QVariant
itemChange
(
GraphicsItemChange
change
,
const
QVariant
&
value
);
UBGraphicsItemDelegate
*
mDelegate
;
//
UBGraphicsItemDelegate* mDelegate;
};
};
#endif
/* UBGRAPHICSPROXYWIDGET_H_ */
#endif
/* UBGRAPHICSPROXYWIDGET_H_ */
src/domain/UBGraphicsSvgItem.h
View file @
9aa3027c
...
@@ -59,6 +59,7 @@ class UBGraphicsSvgItem: public QGraphicsSvgItem, public UBItem, public UBGraphi
...
@@ -59,6 +59,7 @@ class UBGraphicsSvgItem: public QGraphicsSvgItem, public UBItem, public UBGraphi
virtual
void
remove
();
virtual
void
remove
();
virtual
UBGraphicsPixmapItem
*
toPixmapItem
()
const
;
virtual
UBGraphicsPixmapItem
*
toPixmapItem
()
const
;
virtual
UBGraphicsItemDelegate
*
Delegate
()
const
{
return
mDelegate
;}
protected
:
protected
:
...
@@ -70,7 +71,7 @@ class UBGraphicsSvgItem: public QGraphicsSvgItem, public UBItem, public UBGraphi
...
@@ -70,7 +71,7 @@ class UBGraphicsSvgItem: public QGraphicsSvgItem, public UBItem, public UBGraphi
virtual
QVariant
itemChange
(
GraphicsItemChange
change
,
const
QVariant
&
value
);
virtual
QVariant
itemChange
(
GraphicsItemChange
change
,
const
QVariant
&
value
);
UBGraphicsItemDelegate
*
mDelegate
;
//
UBGraphicsItemDelegate* mDelegate;
QByteArray
mFileData
;
QByteArray
mFileData
;
};
};
...
...
src/domain/UBGraphicsTextItem.cpp
View file @
9aa3027c
...
@@ -30,7 +30,6 @@ QColor UBGraphicsTextItem::lastUsedTextColor;
...
@@ -30,7 +30,6 @@ QColor UBGraphicsTextItem::lastUsedTextColor;
UBGraphicsTextItem
::
UBGraphicsTextItem
(
QGraphicsItem
*
parent
)
UBGraphicsTextItem
::
UBGraphicsTextItem
(
QGraphicsItem
*
parent
)
:
QGraphicsTextItem
(
parent
)
:
QGraphicsTextItem
(
parent
)
,
mDelegate
(
0
)
,
mMultiClickState
(
0
)
,
mMultiClickState
(
0
)
,
mLastMousePressTime
(
QTime
::
currentTime
())
,
mLastMousePressTime
(
QTime
::
currentTime
())
{
{
...
...
src/domain/UBGraphicsTextItem.h
View file @
9aa3027c
...
@@ -78,6 +78,7 @@ class UBGraphicsTextItem : public QGraphicsTextItem, public UBItem, public UBRes
...
@@ -78,6 +78,7 @@ class UBGraphicsTextItem : public QGraphicsTextItem, public UBItem, public UBRes
{
{
mColorOnLightBackground
=
pColorOnLightBackground
;
mColorOnLightBackground
=
pColorOnLightBackground
;
}
}
virtual
UBGraphicsItemDelegate
*
Delegate
()
const
{
return
mDelegate
;}
signals
:
signals
:
void
textUndoCommandAdded
(
UBGraphicsTextItem
*
textItem
);
void
textUndoCommandAdded
(
UBGraphicsTextItem
*
textItem
);
...
@@ -96,7 +97,7 @@ class UBGraphicsTextItem : public QGraphicsTextItem, public UBItem, public UBRes
...
@@ -96,7 +97,7 @@ class UBGraphicsTextItem : public QGraphicsTextItem, public UBItem, public UBRes
virtual
QVariant
itemChange
(
GraphicsItemChange
change
,
const
QVariant
&
value
);
virtual
QVariant
itemChange
(
GraphicsItemChange
change
,
const
QVariant
&
value
);
private
:
private
:
UBGraphicsItemDelegate
*
mDelegate
;
//
UBGraphicsItemDelegate *mDelegate;
qreal
mTextHeight
;
qreal
mTextHeight
;
int
mMultiClickState
;
int
mMultiClickState
;
...
...
src/domain/UBGraphicsVideoItem.h
View file @
9aa3027c
...
@@ -40,6 +40,7 @@ public:
...
@@ -40,6 +40,7 @@ public:
{
{
return
mVideoWidget
;
return
mVideoWidget
;
}
}
virtual
UBGraphicsItemDelegate
*
Delegate
()
const
{
return
mDelegate
;}
public
slots
:
public
slots
:
...
...
src/domain/UBItem.h
View file @
9aa3027c
...
@@ -16,6 +16,7 @@
...
@@ -16,6 +16,7 @@
#define UBITEM_H
#define UBITEM_H
#include <QtGui>
#include <QtGui>
#include "domain/UBGraphicsItemDelegate.h"
class
UBGraphicsScene
;
class
UBGraphicsScene
;
...
@@ -84,21 +85,23 @@ class UBItem
...
@@ -84,21 +85,23 @@ class UBItem
class
UBGraphicsItem
class
UBGraphicsItem
{
{
protected
:
protected
:
UBGraphicsItem
()
UBGraphicsItem
()
:
mDelegate
(
0
)
{
{
// NOOP
// NOOP
}
}
UBGraphicsItemDelegate
*
mDelegate
;
virtual
~
UBGraphicsItem
()
virtual
~
UBGraphicsItem
()
{
{
// NOOP
// NOOP
}
}
public
:
public
:
virtual
UBGraphicsItemDelegate
*
Delegate
()
const
{
return
0
;}
virtual
void
remove
()
=
0
;
virtual
void
remove
()
=
0
;
};
};
#endif // UBITEM_H
#endif // UBITEM_H
src/tools/UBGraphicsCurtainItem.cpp
View file @
9aa3027c
...
@@ -36,7 +36,6 @@ const QColor UBGraphicsCurtainItem::sDarkBackgroundOpaqueControlColor = QColor(6
...
@@ -36,7 +36,6 @@ const QColor UBGraphicsCurtainItem::sDarkBackgroundOpaqueControlColor = QColor(6
UBGraphicsCurtainItem
::
UBGraphicsCurtainItem
(
QGraphicsItem
*
parent
)
UBGraphicsCurtainItem
::
UBGraphicsCurtainItem
(
QGraphicsItem
*
parent
)
:
QGraphicsRectItem
(
parent
)
:
QGraphicsRectItem
(
parent
)
,
mDelegate
(
0
)
{
{
mDelegate
=
new
UBGraphicsCurtainItemDelegate
(
this
,
0
);
mDelegate
=
new
UBGraphicsCurtainItemDelegate
(
this
,
0
);
mDelegate
->
init
();
mDelegate
->
init
();
...
...
src/tools/UBGraphicsCurtainItem.h
View file @
9aa3027c
...
@@ -65,7 +65,7 @@ class UBGraphicsCurtainItem : public QObject, public QGraphicsRectItem, public U
...
@@ -65,7 +65,7 @@ class UBGraphicsCurtainItem : public QObject, public QGraphicsRectItem, public U
QColor
drawColor
()
const
;
QColor
drawColor
()
const
;
QColor
opaqueControlColor
()
const
;
QColor
opaqueControlColor
()
const
;
UBGraphicsItemDelegate
*
mDelegate
;
//
UBGraphicsItemDelegate* mDelegate;
static
const
QColor
sDrawColor
;
static
const
QColor
sDrawColor
;
static
const
QColor
sDarkBackgroundDrawColor
;
static
const
QColor
sDarkBackgroundDrawColor
;
...
...
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