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
7ca82a1e
Commit
7ca82a1e
authored
Sep 30, 2011
by
Ivan Ilin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
protractor symbol fixed
parent
f2ebb625
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
26 additions
and
55 deletions
+26
-55
UBLibraryController.cpp
src/board/UBLibraryController.cpp
+0
-1
UBGraphicsAudioItemDelegate.cpp
src/domain/UBGraphicsAudioItemDelegate.cpp
+9
-21
UBGraphicsVideoItemDelegate.cpp
src/domain/UBGraphicsVideoItemDelegate.cpp
+11
-26
UBPlatformUtils_linux.cpp
src/frameworks/UBPlatformUtils_linux.cpp
+0
-1
UBKeyboardPalette.cpp
src/gui/UBKeyboardPalette.cpp
+5
-5
UBGraphicsProtractor.cpp
src/tools/UBGraphicsProtractor.cpp
+1
-1
No files found.
src/board/UBLibraryController.cpp
View file @
7ca82a1e
...
...
@@ -91,7 +91,6 @@ void UBLibraryController::createInternalWidgetItems()
mInternalLibElements
<<
newTool
;
}
}
void
UBLibraryController
::
createNewFolder
(
QString
name
,
UBLibElement
*
parentElem
)
...
...
src/domain/UBGraphicsAudioItemDelegate.cpp
View file @
7ca82a1e
...
...
@@ -66,39 +66,27 @@ void UBGraphicsAudioItemDelegate::togglePlayPause()
{
Phonon
::
MediaObject
*
media
=
mDelegated
->
mediaObject
();
if
(
media
->
state
()
==
Phonon
::
StoppedState
)
{
if
(
media
->
state
()
==
Phonon
::
StoppedState
)
{
media
->
play
();
}
else
if
(
media
->
state
()
==
Phonon
::
PlayingState
)
{
if
(
media
->
remainingTime
()
<=
0
)
{
}
else
if
(
media
->
state
()
==
Phonon
::
PlayingState
)
{
if
(
media
->
remainingTime
()
<=
0
)
{
media
->
stop
();
media
->
play
();
}
else
{
}
else
{
media
->
pause
();
if
(
mDelegated
->
scene
()
)
mDelegated
->
scene
()
->
setModified
(
true
);
}
}
else
if
(
media
->
state
()
==
Phonon
::
PausedState
)
{
if
(
media
->
remainingTime
()
<=
0
)
{
}
else
if
(
media
->
state
()
==
Phonon
::
PausedState
)
{
if
(
media
->
remainingTime
()
<=
0
)
{
media
->
stop
();
}
media
->
play
();
}
else
if
(
media
->
state
()
==
Phonon
::
LoadingState
){
}
else
if
(
media
->
state
()
==
Phonon
::
LoadingState
)
{
mDelegated
->
mediaObject
()
->
setCurrentSource
(
mDelegated
->
mediaFileUrl
());
media
->
play
();
}
else
{
qDebug
()
<<
"Media state "
<<
media
->
state
()
<<
" not supported"
;
}
else
if
(
media
->
state
()
==
Phonon
::
ErrorState
){
qDebug
()
<<
"Error appeared."
<<
media
->
errorString
();
}
}
}
...
...
src/domain/UBGraphicsVideoItemDelegate.cpp
View file @
7ca82a1e
...
...
@@ -145,48 +145,34 @@ UBGraphicsVideoItem* UBGraphicsVideoItemDelegate::delegated()
void
UBGraphicsVideoItemDelegate
::
togglePlayPause
()
{
if
(
delegated
()
&&
delegated
()
->
mediaObject
())
{
Phonon
::
MediaObject
*
media
=
delegated
()
->
mediaObject
();
if
(
delegated
()
&&
delegated
()
->
mediaObject
())
{
if
(
media
->
state
()
==
Phonon
::
StoppedState
)
{
Phonon
::
MediaObject
*
media
=
delegated
()
->
mediaObject
();
if
(
media
->
state
()
==
Phonon
::
StoppedState
)
{
media
->
play
();
}
else
if
(
media
->
state
()
==
Phonon
::
PlayingState
)
{
if
(
media
->
remainingTime
()
<=
0
)
{
}
else
if
(
media
->
state
()
==
Phonon
::
PlayingState
)
{
if
(
media
->
remainingTime
()
<=
0
)
{
media
->
stop
();
media
->
play
();
}
else
{
}
else
{
media
->
pause
();
if
(
delegated
()
->
scene
())
delegated
()
->
scene
()
->
setModified
(
true
);
}
}
else
if
(
media
->
state
()
==
Phonon
::
PausedState
)
{
if
(
media
->
remainingTime
()
<=
0
)
{
}
else
if
(
media
->
state
()
==
Phonon
::
PausedState
)
{
if
(
media
->
remainingTime
()
<=
0
)
{
media
->
stop
();
}
media
->
play
();
}
else
if
(
media
->
state
()
==
Phonon
::
LoadingState
){
}
else
if
(
media
->
state
()
==
Phonon
::
LoadingState
)
{
delegated
()
->
mediaObject
()
->
setCurrentSource
(
delegated
()
->
mediaFileUrl
());
media
->
play
();
}
else
{
qDebug
()
<<
"Media state "
<<
media
->
state
()
<<
" not supported"
;
}
else
if
(
media
->
state
()
==
Phonon
::
ErrorState
){
qDebug
()
<<
"Error appeared."
<<
media
->
errorString
();
}
}
}
void
UBGraphicsVideoItemDelegate
::
mediaStateChanged
(
Phonon
::
State
newstate
,
Phonon
::
State
oldstate
)
{
Q_UNUSED
(
newstate
);
...
...
@@ -338,7 +324,6 @@ void DelegateVideoControl::seekToMousePos(QPointF mousePos)
}
}
void
DelegateVideoControl
::
mouseReleaseEvent
(
QGraphicsSceneMouseEvent
*
event
)
{
mDisplayCurrentTime
=
false
;
...
...
src/frameworks/UBPlatformUtils_linux.cpp
View file @
7ca82a1e
...
...
@@ -26,7 +26,6 @@ void UBPlatformUtils::init()
initializeKeyboardLayouts
();
}
QString
UBPlatformUtils
::
applicationResourcesDirectory
()
{
return
QApplication
::
applicationDirPath
();
...
...
src/gui/UBKeyboardPalette.cpp
View file @
7ca82a1e
...
...
@@ -86,7 +86,7 @@ UBKeyboardPalette* UBKeyboardPalette::create(QWidget *parent)
instance
->
move
(
firstKeyboard
->
m_pos
);
connect
(
UBSettings
::
settings
()
->
boardKeyboardPaletteKeyBtnSize
,
SIGNAL
(
changed
(
QVariant
)),
instance
,
SLOT
(
keyboardPaletteButtonSizeChanged
(
QVariant
)));
connect
(
UBApplication
::
mainWindow
->
actionVirtualKeyboard
,
SIGNAL
(
triggered
(
bool
)),
instance
,
SLOT
(
showKeyboard
(
bool
)));
connect
(
UBApplication
::
mainWindow
->
actionVirtualKeyboard
,
SIGNAL
(
triggered
(
bool
)),
instance
,
SLOT
(
showKeyboard
(
bool
)));
// connect(instance, SIGNAL(moved(const QPoint&)), instance, SLOT(syncPosition(const QPoint&)));
connect
(
instance
,
SIGNAL
(
closed
()),
instance
,
SLOT
(
hideKeyboard
()));
...
...
@@ -109,10 +109,10 @@ UBKeyboardPalette* UBKeyboardPalette::create(QWidget *parent)
return
instance
;
}
void
UBKeyboardPalette
::
showKeyboard
(
bool
show
)
{
m_isVisible
=
show
;
}
void
UBKeyboardPalette
::
showKeyboard
(
bool
show
)
{
m_isVisible
=
show
;
}
void
UBKeyboardPalette
::
hideKeyboard
()
...
...
src/tools/UBGraphicsProtractor.cpp
View file @
7ca82a1e
...
...
@@ -508,7 +508,7 @@ void UBGraphicsProtractor::paintAngleMarker(QPainter *painter)
if
(
angle
!=
0
)
{
QString
ang
=
QString
(
"%1
?
"
).
arg
(
angle
,
0
,
'f'
,
1
);
QString
ang
=
QString
(
"%1
°
"
).
arg
(
angle
,
0
,
'f'
,
1
);
QFont
font2
=
painter
->
font
();
font2
.
setBold
(
true
);
QFontMetricsF
fm2
(
font2
);
...
...
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