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
a3f2b08b
Commit
a3f2b08b
authored
Jul 27, 2012
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed issue 667
parent
54214ed9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
38 additions
and
10 deletions
+38
-10
UBActionPalette.cpp
src/gui/UBActionPalette.cpp
+0
-1
UBActionPalette.h
src/gui/UBActionPalette.h
+0
-1
UBTeacherGuideWidget.cpp
src/gui/UBTeacherGuideWidget.cpp
+33
-8
UBTeacherGuideWidget.h
src/gui/UBTeacherGuideWidget.h
+5
-0
No files found.
src/gui/UBActionPalette.cpp
View file @
a3f2b08b
...
@@ -231,7 +231,6 @@ void UBActionPalette::mouseReleaseEvent(QMouseEvent * event)
...
@@ -231,7 +231,6 @@ void UBActionPalette::mouseReleaseEvent(QMouseEvent * event)
void
UBActionPalette
::
actionChanged
()
void
UBActionPalette
::
actionChanged
()
{
{
emit
itemOnActionPaletteChanged
();
for
(
int
i
=
0
;
i
<
mActions
.
length
()
&&
i
<
mButtons
.
length
();
i
++
)
for
(
int
i
=
0
;
i
<
mActions
.
length
()
&&
i
<
mButtons
.
length
();
i
++
)
{
{
mButtons
.
at
(
i
)
->
setVisible
(
mActions
.
at
(
i
)
->
isVisible
());
mButtons
.
at
(
i
)
->
setVisible
(
mActions
.
at
(
i
)
->
isVisible
());
...
...
src/gui/UBActionPalette.h
View file @
a3f2b08b
...
@@ -61,7 +61,6 @@ class UBActionPalette : public UBFloatingPalette
...
@@ -61,7 +61,6 @@ class UBActionPalette : public UBFloatingPalette
void
closed
();
void
closed
();
void
buttonGroupClicked
(
int
id
);
void
buttonGroupClicked
(
int
id
);
void
customMouseReleased
();
void
customMouseReleased
();
void
itemOnActionPaletteChanged
();
protected
:
protected
:
virtual
void
paintEvent
(
QPaintEvent
*
event
);
virtual
void
paintEvent
(
QPaintEvent
*
event
);
...
...
src/gui/UBTeacherGuideWidget.cpp
View file @
a3f2b08b
...
@@ -1100,6 +1100,7 @@ UBTeacherGuideWidget::UBTeacherGuideWidget(QWidget* parent, const char* name) :
...
@@ -1100,6 +1100,7 @@ UBTeacherGuideWidget::UBTeacherGuideWidget(QWidget* parent, const char* name) :
,
mpPageZeroWidget
(
NULL
)
,
mpPageZeroWidget
(
NULL
)
,
mpEditionWidget
(
NULL
)
,
mpEditionWidget
(
NULL
)
,
mpPresentationWidget
(
NULL
)
,
mpPresentationWidget
(
NULL
)
,
mKeyboardActionFired
(
false
)
{
{
setObjectName
(
name
);
setObjectName
(
name
);
if
(
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
->
get
().
toBool
())
{
if
(
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
->
get
().
toBool
())
{
...
@@ -1113,11 +1114,9 @@ UBTeacherGuideWidget::UBTeacherGuideWidget(QWidget* parent, const char* name) :
...
@@ -1113,11 +1114,9 @@ UBTeacherGuideWidget::UBTeacherGuideWidget(QWidget* parent, const char* name) :
addWidget
(
mpPresentationWidget
);
addWidget
(
mpPresentationWidget
);
}
}
connect
(
UBApplication
::
boardController
->
controlView
(),
connect
(
UBApplication
::
boardController
->
controlView
(),
SIGNAL
(
clickOnBoard
()),
this
,
SLOT
(
showPresentationMode
()));
SIGNAL
(
clickOnBoard
()),
this
,
SLOT
(
showPresentationMode
()));
connectToStylusPalette
();
connectToStylusPalette
();
connect
(
UBApplication
::
boardController
,
SIGNAL
(
activeSceneChanged
()),
this
,
connect
(
UBApplication
::
boardController
,
SIGNAL
(
activeSceneChanged
()),
this
,
SLOT
(
onActiveSceneChanged
()));
SLOT
(
onActiveSceneChanged
()));
}
}
UBTeacherGuideWidget
::~
UBTeacherGuideWidget
()
UBTeacherGuideWidget
::~
UBTeacherGuideWidget
()
...
@@ -1138,12 +1137,38 @@ void UBTeacherGuideWidget::onActiveSceneChanged()
...
@@ -1138,12 +1137,38 @@ void UBTeacherGuideWidget::onActiveSceneChanged()
}
}
#include "core/UBApplication.h"
#include "gui/UBMainWindow.h"
void
UBTeacherGuideWidget
::
onTriggeredAction
(
bool
checked
)
{
Q_UNUSED
(
checked
);
if
(
!
mKeyboardActionFired
)
showPresentationMode
();
mKeyboardActionFired
=
false
;
}
void
UBTeacherGuideWidget
::
onTriggeredKeyboardAction
(
bool
checked
)
{
Q_UNUSED
(
checked
);
mKeyboardActionFired
=
true
;
}
void
UBTeacherGuideWidget
::
connectToStylusPalette
()
void
UBTeacherGuideWidget
::
connectToStylusPalette
()
{
{
if
(
UBApplication
::
boardController
->
paletteManager
())
connect
(
UBApplication
::
mainWindow
->
actionPen
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredAction
(
bool
)));
connect
(
UBApplication
::
boardController
->
paletteManager
()
->
stylusPalette
(),
SIGNAL
(
itemOnActionPaletteChanged
()),
this
,
SLOT
(
showPresentationMode
()));
connect
(
UBApplication
::
mainWindow
->
actionEraser
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredAction
(
bool
)));
else
connect
(
UBApplication
::
mainWindow
->
actionMarker
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredAction
(
bool
)));
QTimer
::
singleShot
(
100
,
this
,
SLOT
(
connectToStylusPalette
()));
connect
(
UBApplication
::
mainWindow
->
actionPointer
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredAction
(
bool
)));
connect
(
UBApplication
::
mainWindow
->
actionPlay
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredAction
(
bool
)));
connect
(
UBApplication
::
mainWindow
->
actionZoomIn
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredAction
(
bool
)));
connect
(
UBApplication
::
mainWindow
->
actionZoomOut
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredAction
(
bool
)));
connect
(
UBApplication
::
mainWindow
->
actionCapture
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredAction
(
bool
)));
connect
(
UBApplication
::
mainWindow
->
actionHand
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredAction
(
bool
)));
connect
(
UBApplication
::
mainWindow
->
actionLine
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredAction
(
bool
)));
connect
(
UBApplication
::
mainWindow
->
actionText
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredAction
(
bool
)));
connect
(
UBApplication
::
mainWindow
->
actionSelector
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredAction
(
bool
)));
connect
(
UBApplication
::
mainWindow
->
actionVirtualKeyboard
,
SIGNAL
(
triggered
(
bool
)),
this
,
SLOT
(
onTriggeredKeyboardAction
(
bool
)));
}
}
void
UBTeacherGuideWidget
::
showPresentationMode
()
void
UBTeacherGuideWidget
::
showPresentationMode
()
...
...
src/gui/UBTeacherGuideWidget.h
View file @
a3f2b08b
...
@@ -214,6 +214,11 @@ private:
...
@@ -214,6 +214,11 @@ private:
UBTeacherGuideEditionWidget
*
mpEditionWidget
;
UBTeacherGuideEditionWidget
*
mpEditionWidget
;
UBTeacherGuidePresentationWidget
*
mpPresentationWidget
;
UBTeacherGuidePresentationWidget
*
mpPresentationWidget
;
QVector
<
tUBGEElementNode
*>
mCurrentData
;
QVector
<
tUBGEElementNode
*>
mCurrentData
;
bool
mKeyboardActionFired
;
private
slots
:
void
onTriggeredAction
(
bool
checked
);
void
onTriggeredKeyboardAction
(
bool
checked
);
};
};
#endif // UBTEACHERGUIDEWIDGET_H
#endif // UBTEACHERGUIDEWIDGET_H
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