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
1933f3c2
Commit
1933f3c2
authored
Dec 13, 2013
by
Ilia Ryabokon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed "setText()" from the paint event of the UBGraphicsTextItem
parent
035685d4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
7 deletions
+14
-7
UBGraphicsTextItem.cpp
src/domain/UBGraphicsTextItem.cpp
+5
-6
UBGraphicsTextItem.h
src/domain/UBGraphicsTextItem.h
+3
-1
UBGraphicsTextItemDelegate.cpp
src/domain/UBGraphicsTextItemDelegate.cpp
+6
-0
No files found.
src/domain/UBGraphicsTextItem.cpp
View file @
1933f3c2
...
...
@@ -39,7 +39,6 @@
#include "core/UBSettings.h"
#include "core/memcheck.h"
QColor
UBGraphicsTextItem
::
lastUsedTextColor
;
UBGraphicsTextItem
::
UBGraphicsTextItem
(
QGraphicsItem
*
parent
)
:
...
...
@@ -47,7 +46,9 @@ UBGraphicsTextItem::UBGraphicsTextItem(QGraphicsItem * parent) :
,
UBGraphicsItem
()
,
mMultiClickState
(
0
)
,
mLastMousePressTime
(
QTime
::
currentTime
())
,
mTypeTextHereLabel
(
tr
(
"<Type Text Here>"
))
{
mEmptyTextWidth
=
QFontMetrics
(
font
()).
width
(
mTypeTextHereLabel
);
setDelegate
(
new
UBGraphicsTextItemDelegate
(
this
,
0
));
// TODO claudio remove this because in contrast with the fact the frame should be created on demand.
...
...
@@ -56,8 +57,6 @@ UBGraphicsTextItem::UBGraphicsTextItem(QGraphicsItem * parent) :
Delegate
()
->
setUBFlag
(
GF_FLIPPABLE_ALL_AXIS
,
false
);
Delegate
()
->
setUBFlag
(
GF_REVOLVABLE
,
true
);
mTypeTextHereLabel
=
tr
(
"<Type Text Here>"
);
setData
(
UBGraphicsItemData
::
ItemLayerType
,
UBItemLayerType
::
Object
);
setData
(
UBGraphicsItemData
::
itemLayerType
,
QVariant
(
itemLayerType
::
ObjectItem
));
//Necessary to set if we want z value to be assigned correctly
...
...
@@ -247,8 +246,9 @@ void UBGraphicsTextItem::paint(QPainter *painter, const QStyleOptionGraphicsItem
if
(
widget
==
UBApplication
::
boardController
->
controlView
()
->
viewport
()
&&
!
isSelected
()
&&
toPlainText
().
isEmpty
())
{
QFontMetrics
fm
(
font
());
setTextWidth
(
fm
.
width
(
mTypeTextHereLabel
));
// QFontMetrics fm(font());
// setTextWidth(fm.width(mTypeTextHereLabel));
painter
->
setFont
(
font
());
painter
->
setPen
(
UBSettings
::
paletteColor
);
painter
->
drawText
(
boundingRect
(),
Qt
::
AlignCenter
,
mTypeTextHereLabel
);
...
...
@@ -307,7 +307,6 @@ QPainterPath UBGraphicsTextItem::shape() const
void
UBGraphicsTextItem
::
setTextWidth
(
qreal
width
)
{
QFontMetrics
fm
(
font
());
qreal
strictMin
=
155
;
// the size of the font customization panel
qreal
newWidth
=
qMax
(
strictMin
,
width
);
...
...
src/domain/UBGraphicsTextItem.h
View file @
1933f3c2
...
...
@@ -98,6 +98,9 @@ class UBGraphicsTextItem : public QGraphicsTextItem, public UBItem, public UBRes
void
setSelected
(
bool
selected
);
QString
mTypeTextHereLabel
;
int
mEmptyTextWidth
;
signals
:
void
textUndoCommandAdded
(
UBGraphicsTextItem
*
textItem
);
...
...
@@ -121,7 +124,6 @@ class UBGraphicsTextItem : public QGraphicsTextItem, public UBItem, public UBRes
int
mMultiClickState
;
QTime
mLastMousePressTime
;
QString
mTypeTextHereLabel
;
QColor
mColorOnDarkBackground
;
QColor
mColorOnLightBackground
;
...
...
src/domain/UBGraphicsTextItemDelegate.cpp
View file @
1933f3c2
...
...
@@ -726,5 +726,11 @@ QVariant UBGraphicsTextItemDelegate::itemChange(QGraphicsItem::GraphicsItemChang
}
}
}
if
(
value
.
toBool
()
==
false
&&
delegated
()
->
document
()
->
toPlainText
().
isEmpty
())
{
int
wdth
=
QFontMetrics
(
delegated
()
->
font
()).
width
(
delegated
()
->
mTypeTextHereLabel
);
delegated
()
->
setTextWidth
(
qMax
(
wdth
,
(
int
)(
delegated
()
->
textWidth
())));
}
return
UBGraphicsItemDelegate
::
itemChange
(
change
,
value
);
}
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