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
e9885cf4
Commit
e9885cf4
authored
Jul 27, 2012
by
Aleksei Kanash
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UBMedia items improved:
toolBar size depends on zoom. audio items has title and borders.
parent
4d00fc55
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
88 additions
and
18 deletions
+88
-18
UBGraphicsItemDelegate.cpp
src/domain/UBGraphicsItemDelegate.cpp
+4
-3
UBGraphicsItemDelegate.h
src/domain/UBGraphicsItemDelegate.h
+3
-0
UBGraphicsMediaItem.cpp
src/domain/UBGraphicsMediaItem.cpp
+10
-5
UBGraphicsMediaItem.h
src/domain/UBGraphicsMediaItem.h
+32
-2
UBGraphicsMediaItemDelegate.cpp
src/domain/UBGraphicsMediaItemDelegate.cpp
+36
-8
UBGraphicsMediaItemDelegate.h
src/domain/UBGraphicsMediaItemDelegate.h
+3
-0
No files found.
src/domain/UBGraphicsItemDelegate.cpp
View file @
e9885cf4
...
...
@@ -672,7 +672,8 @@ UBGraphicsToolBarItem::UBGraphicsToolBarItem(QGraphicsItem * parent) :
mShifting
(
true
),
mVisible
(
false
),
mMinWidth
(
200
),
mInitialHeight
(
26
)
mInitialHeight
(
26
),
mElementsPadding
(
2
)
{
QRectF
rect
=
this
->
rect
();
rect
.
setHeight
(
mInitialHeight
);
...
...
@@ -693,7 +694,7 @@ void UBGraphicsToolBarItem::positionHandles()
foreach
(
QGraphicsItem
*
item
,
mItemsOnToolBar
)
{
item
->
setPos
(
itemXOffset
,
0
);
itemXOffset
+=
(
item
->
boundingRect
().
width
());
itemXOffset
+=
(
item
->
boundingRect
().
width
()
+
mElementsPadding
);
item
->
show
();
}
}
...
...
@@ -1150,7 +1151,7 @@ void DelegateMediaControl::paint(QPainter *painter,
mLCDTimerArea
.
setWidth
(
rect
().
height
());
mSeecArea
=
rect
();
mSeecArea
.
setWidth
(
rect
().
width
()
-
mLCDTimerArea
.
width
());
mSeecArea
.
setWidth
(
rect
().
width
()
-
mLCDTimerArea
.
width
()
-
2
);
path
.
addRoundedRect
(
mSeecArea
,
mSeecArea
.
height
()
/
2
,
mSeecArea
.
height
()
/
2
);
painter
->
fillPath
(
path
,
brush
());
...
...
src/domain/UBGraphicsItemDelegate.h
View file @
e9885cf4
...
...
@@ -128,6 +128,7 @@ class DelegateMediaControl: public QObject, public QGraphicsRectItem
void
positionHandles
();
void
updateTicker
(
qint64
time
);
void
totalTimeChanged
(
qint64
newTotalTime
);
QSizeF
lcdAreaSize
(){
return
mLCDTimerArea
.
size
();}
signals
:
void
used
();
...
...
@@ -165,6 +166,7 @@ class UBGraphicsToolBarItem : public QGraphicsRectItem, public QObject
int
minWidth
()
{
return
mMinWidth
;
}
void
positionHandles
();
void
update
();
int
getElementsPadding
(){
return
mElementsPadding
;}
private
:
void
paint
(
QPainter
*
painter
,
const
QStyleOptionGraphicsItem
*
option
,
...
...
@@ -175,6 +177,7 @@ class UBGraphicsToolBarItem : public QGraphicsRectItem, public QObject
bool
mVisible
;
int
mMinWidth
;
int
mInitialHeight
;
int
mElementsPadding
;
QList
<
QGraphicsItem
*>
mItemsOnToolBar
;
};
...
...
src/domain/UBGraphicsMediaItem.cpp
View file @
e9885cf4
...
...
@@ -21,7 +21,6 @@
#include "document/UBDocumentProxy.h"
#include "core/UBApplication.h"
#include "board/UBBoardController.h"
#include "frameworks/UBFileSystemUtils.h"
#include "core/memcheck.h"
bool
UBGraphicsMediaItem
::
sIsMutedByDefault
=
false
;
...
...
@@ -56,7 +55,7 @@ UBGraphicsMediaItem::UBGraphicsMediaItem(const QUrl& pMediaFileUrl, QGraphicsIte
if
(
mVideoWidget
->
sizeHint
()
==
QSize
(
1
,
1
)){
mVideoWidget
->
resize
(
320
,
240
);
mVideoWidget
->
setMinimumSize
(
1
31
,
26
);
mVideoWidget
->
setMinimumSize
(
1
40
,
26
);
}
setWidget
(
mVideoWidget
);
haveLinkedImage
=
true
;
...
...
@@ -69,9 +68,15 @@ UBGraphicsMediaItem::UBGraphicsMediaItem(const QUrl& pMediaFileUrl, QGraphicsIte
mMediaObject
->
setTickInterval
(
1000
);
mAudioWidget
=
new
UBGraphicsMediaItem
::
UBAudioPresentationWidget
();
int
borderSize
=
dynamic_cast
<
UBGraphicsMediaItem
::
UBAudioPresentationWidget
*>
(
mAudioWidget
)
->
borderSize
();
mAudioWidget
->
resize
(
320
+
2
*
borderSize
,
26
+
2
*
borderSize
);
mAudioWidget
->
setMinimumSize
(
147
,
26
+
2
*
borderSize
);
int
borderSize
=
0
;
UBGraphicsMediaItem
::
UBAudioPresentationWidget
*
pAudioWidget
=
dynamic_cast
<
UBGraphicsMediaItem
::
UBAudioPresentationWidget
*>
(
mAudioWidget
);
if
(
pAudioWidget
)
{
borderSize
=
pAudioWidget
->
borderSize
();
}
mAudioWidget
->
resize
(
320
,
26
+
3
*
borderSize
);
mAudioWidget
->
setMinimumSize
(
150
,
26
+
borderSize
);
setWidget
(
mAudioWidget
);
haveLinkedImage
=
false
;
}
...
...
src/domain/UBGraphicsMediaItem.h
View file @
e9885cf4
...
...
@@ -21,6 +21,7 @@
#include <phonon/VideoWidget>
#include "core/UBApplication.h"
#include "board/UBBoardController.h"
#include "frameworks/UBFileSystemUtils.h"
class
UBGraphicsMediaItem
:
public
UBGraphicsProxyWidget
...
...
@@ -33,10 +34,16 @@ public:
public
:
UBAudioPresentationWidget
::
UBAudioPresentationWidget
(
QWidget
*
parent
=
NULL
)
:
QWidget
(
parent
)
,
mBorderSize
(
7
)
,
mBorderSize
(
10
)
,
mTitleSize
(
10
)
{}
int
borderSize
(){
return
mBorderSize
;}
int
borderSize
()
{
return
mBorderSize
;
}
void
setTitle
(
QString
title
=
QString
()){
mTitle
=
title
;}
QString
getTitle
(){
return
mTitle
;}
private
:
virtual
void
paintEvent
(
QPaintEvent
*
event
)
...
...
@@ -44,10 +51,22 @@ public:
QPainter
painter
(
this
);
painter
.
fillRect
(
rect
(),
QBrush
(
Qt
::
black
));
if
(
QString
()
!=
mTitle
)
{
painter
.
setPen
(
QPen
(
Qt
::
white
));
QRect
titleRect
=
rect
();
titleRect
.
setX
(
mBorderSize
);
titleRect
.
setY
(
2
);
titleRect
.
setHeight
(
15
);
painter
.
drawText
(
titleRect
,
mTitle
);
}
QWidget
::
paintEvent
(
event
);
}
int
mBorderSize
;
int
mTitleSize
;
QString
mTitle
;
};
public
:
...
...
@@ -104,6 +123,17 @@ public:
virtual
UBItem
*
deepCopy
()
const
;
virtual
void
setSourceUrl
(
const
QUrl
&
pSourceUrl
)
{
UBGraphicsMediaItem
::
UBAudioPresentationWidget
*
pAudioWidget
=
dynamic_cast
<
UBGraphicsMediaItem
::
UBAudioPresentationWidget
*>
(
mAudioWidget
);
if
(
pAudioWidget
)
{
pAudioWidget
->
setTitle
(
UBFileSystemUtils
::
lastPathComponent
(
pSourceUrl
.
toLocalFile
()));
}
UBItem
::
setSourceUrl
(
pSourceUrl
);
}
public
slots
:
void
toggleMute
();
...
...
src/domain/UBGraphicsMediaItemDelegate.cpp
View file @
e9885cf4
...
...
@@ -36,6 +36,7 @@ UBGraphicsMediaItemDelegate::UBGraphicsMediaItemDelegate(UBGraphicsMediaItem* pD
,
mMedia
(
pMedia
)
,
mToolBarShowTimer
(
NULL
)
,
m_iToolBarShowingInterval
(
5000
)
,
mToolBarIsShown
(
false
)
{
QPalette
palette
;
palette
.
setBrush
(
QPalette
::
Light
,
Qt
::
darkGray
);
...
...
@@ -52,12 +53,18 @@ UBGraphicsMediaItemDelegate::UBGraphicsMediaItemDelegate(UBGraphicsMediaItem* pD
connect
(
mToolBarShowTimer
,
SIGNAL
(
timeout
()),
this
,
SLOT
(
hideToolBar
()));
mToolBarShowTimer
->
setInterval
(
m_iToolBarShowingInterval
);
}
if
(
delegated
()
->
getMediaType
()
==
UBGraphicsMediaItem
::
mediaType_Video
)
{
connect
(
UBApplication
::
boardController
,
SIGNAL
(
zoomChanged
(
qreal
)),
this
,
SLOT
(
onZoomChanged
()));
}
}
bool
UBGraphicsMediaItemDelegate
::
mousePressEvent
(
QGraphicsSceneMouseEvent
*
event
)
{
Q_UNUSED
(
event
);
mToolBarItem
->
show
();
mToolBarIsShown
=
true
;
if
(
mToolBarShowTimer
)
mToolBarShowTimer
->
start
();
...
...
@@ -68,6 +75,14 @@ bool UBGraphicsMediaItemDelegate::mousePressEvent(QGraphicsSceneMouseEvent *even
void
UBGraphicsMediaItemDelegate
::
hideToolBar
()
{
mToolBarItem
->
hide
();
mToolBarIsShown
=
false
;
}
void
UBGraphicsMediaItemDelegate
::
onZoomChanged
()
{
positionHandles
();
if
(
!
mToolBarIsShown
)
hideToolBar
();
}
void
UBGraphicsMediaItemDelegate
::
buildButtons
()
...
...
@@ -126,32 +141,45 @@ void UBGraphicsMediaItemDelegate::positionHandles()
UBGraphicsMediaItem
*
mediaItem
=
dynamic_cast
<
UBGraphicsMediaItem
*>
(
mDelegated
);
if
(
mediaItem
)
{
mToolBarItem
->
setPos
(
0
,
delegated
()
->
boundingRect
().
height
()
-
mToolBarItem
->
rect
().
height
()
*
AntiScaleRatio
);
mToolBarItem
->
setScale
(
AntiScaleRatio
);
QRectF
toolBarRect
=
mToolBarItem
->
rect
();
toolBarRect
.
setWidth
(
delegated
()
->
boundingRect
().
width
()
/
AntiScaleRatio
);
if
(
mediaItem
->
getMediaType
()
==
UBGraphicsMediaItem
::
mediaType_Video
)
{
mToolBarItem
->
setPos
(
0
,
delegated
()
->
boundingRect
().
height
()
-
mToolBarItem
->
rect
().
height
());
//*AntiScaleRatio);
// mToolBarItem->setScale(AntiScaleRatio);
if
(
mediaItem
->
getMediaType
()
==
UBGraphicsMediaItem
::
mediaType_Audio
)
toolBarRect
.
setWidth
(
delegated
()
->
boundingRect
().
width
());
//AntiScaleRatio);
}
else
if
(
mediaItem
->
getMediaType
()
==
UBGraphicsMediaItem
::
mediaType_Audio
)
{
int
borderSize
=
0
;
UBGraphicsMediaItem
::
UBAudioPresentationWidget
*
audioWidget
=
dynamic_cast
<
UBGraphicsMediaItem
::
UBAudioPresentationWidget
*>
(
delegated
()
->
widget
());
if
(
audioWidget
)
borderSize
=
audioWidget
->
borderSize
();
toolBarRect
.
setWidth
(
delegated
()
->
boundingRect
().
width
()
/
AntiScaleRatio
-
2
*
borderSize
);
mToolBarItem
->
setPos
(
borderSize
,
borderSize
);
mToolBarItem
->
setPos
(
borderSize
,
delegated
()
->
boundingRect
().
height
()
-
(
mToolBarItem
->
rect
().
height
()
+
borderSize
));
//*AntiScaleRatio
);
toolBarRect
.
setWidth
((
delegated
()
->
boundingRect
().
width
()
-
2
*
borderSize
));
///AntiScaleRatio
);
mToolBarItem
->
show
();
}
mToolBarItem
->
setRect
(
toolBarRect
);
}
int
toolBarMinimumWidth
=
0
;
int
mediaItemWidth
=
mToolBarItem
->
boundingRect
().
width
();
foreach
(
DelegateButton
*
button
,
mButtons
)
{
if
(
button
->
getSection
()
==
Qt
::
TitleBarArea
)
mediaItemWidth
-=
button
->
boundingRect
().
width
();
{
mediaItemWidth
-=
button
->
boundingRect
().
width
()
+
mToolBarItem
->
getElementsPadding
();
toolBarMinimumWidth
+=
button
->
boundingRect
().
width
()
+
mToolBarItem
->
getElementsPadding
();
}
}
toolBarMinimumWidth
+=
mToolBarItem
->
boundingRect
().
height
();
UBGraphicsMediaItem
::
UBAudioPresentationWidget
*
pAudioWidget
=
dynamic_cast
<
UBGraphicsMediaItem
::
UBAudioPresentationWidget
*>
(
delegated
()
->
widget
());
if
(
pAudioWidget
)
{
pAudioWidget
->
setMinimumSize
(
toolBarMinimumWidth
+
(
int
)
mMediaControl
->
lcdAreaSize
().
width
()
+
(
int
)
mMediaControl
->
rect
().
height
(),
26
+
pAudioWidget
->
borderSize
());
}
QRectF
mediaItemRect
=
mMediaControl
->
rect
();
...
...
src/domain/UBGraphicsMediaItemDelegate.h
View file @
e9885cf4
...
...
@@ -57,6 +57,8 @@ class UBGraphicsMediaItemDelegate : public UBGraphicsItemDelegate
void
hideToolBar
();
void
onZoomChanged
();
protected
:
virtual
void
buildButtons
();
...
...
@@ -71,6 +73,7 @@ class UBGraphicsMediaItemDelegate : public UBGraphicsItemDelegate
QTimer
*
mToolBarShowTimer
;
int
m_iToolBarShowingInterval
;
bool
mToolBarIsShown
;
};
#endif
/* UBGRAPHICSMEDIAITEMDELEGATE_H_ */
\ No newline at end of file
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