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
e0324211
Commit
e0324211
authored
Aug 20, 2012
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed issue 882
parent
523d2852
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
26 additions
and
2 deletions
+26
-2
UBDockPalette.cpp
src/gui/UBDockPalette.cpp
+12
-1
UBDockPalette.h
src/gui/UBDockPalette.h
+3
-0
UBLeftPalette.cpp
src/gui/UBLeftPalette.cpp
+8
-0
UBLeftPalette.h
src/gui/UBLeftPalette.h
+3
-0
UBTeacherGuideWidget.cpp
src/gui/UBTeacherGuideWidget.cpp
+0
-1
No files found.
src/gui/UBDockPalette.cpp
View file @
e0324211
...
...
@@ -17,12 +17,16 @@
#include <QPainterPath>
#include "UBDockPalette.h"
#include "core/UBSettings.h"
#include "frameworks/UBPlatformUtils.h"
#include "core/UBSettings.h"
#include "core/UBApplication.h"
#include "core/UBPreferencesController.h"
#include "core/UBDownloadManager.h"
#include "board/UBBoardController.h"
#include "core/memcheck.h"
/**
...
...
@@ -79,6 +83,8 @@ UBDockPalette::UBDockPalette(eUBDockPaletteType paletteType, QWidget *parent, co
onToolbarPosUpdated
();
connect
(
UBSettings
::
settings
()
->
appToolBarPositionedAtTop
,
SIGNAL
(
changed
(
QVariant
)),
this
,
SLOT
(
onToolbarPosUpdated
()));
connect
(
UBDownloadManager
::
downloadManager
(),
SIGNAL
(
allDownloadsFinished
()),
this
,
SLOT
(
onAllDownloadsFinished
()));
connect
(
UBApplication
::
boardController
,
SIGNAL
(
documentSet
(
UBDocumentProxy
*
)),
this
,
SLOT
(
onDocumentSet
(
UBDocumentProxy
*
)));
}
/**
...
...
@@ -98,6 +104,11 @@ UBDockPalette::~UBDockPalette()
}
}
void
UBDockPalette
::
onDocumentSet
(
UBDocumentProxy
*
documentProxy
)
{
Q_UNUSED
(
documentProxy
);
}
/**
* \brief Get the current orientation
* @return the current orientation
...
...
src/gui/UBDockPalette.h
View file @
e0324211
...
...
@@ -15,6 +15,8 @@
#ifndef UBDOCKPALETTE_H
#define UBDOCKPALETTE_H
class
UBDocumentProxy
;
#include <QWidget>
#include <QMouseEvent>
#include <QBrush>
...
...
@@ -131,6 +133,7 @@ public slots:
void
onShowTabWidget
(
UBDockPaletteWidget
*
widget
);
void
onHideTabWidget
(
UBDockPaletteWidget
*
widget
);
void
onAllDownloadsFinished
();
virtual
void
onDocumentSet
(
UBDocumentProxy
*
documentProxy
);
protected
:
virtual
int
border
();
...
...
src/gui/UBLeftPalette.cpp
View file @
e0324211
...
...
@@ -51,6 +51,14 @@ UBLeftPalette::~UBLeftPalette()
}
void
UBLeftPalette
::
onDocumentSet
(
UBDocumentProxy
*
documentProxy
)
{
//This is necessary to force the teacher guide to be showed in priority each time a document is set
if
(
documentProxy
&&
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
->
get
().
toBool
())
mLastOpenedTabForMode
.
insert
(
eUBDockPaletteWidget_BOARD
,
1
);
}
/**
* \brief Update the maximum width
*/
...
...
src/gui/UBLeftPalette.h
View file @
e0324211
...
...
@@ -25,6 +25,9 @@ public:
bool
switchMode
(
eUBDockPaletteWidgetMode
mode
);
public
slots
:
void
onDocumentSet
(
UBDocumentProxy
*
documentProxy
);
protected
:
void
updateMaxWidth
();
void
resizeEvent
(
QResizeEvent
*
event
);
...
...
src/gui/UBTeacherGuideWidget.cpp
View file @
e0324211
...
...
@@ -1149,7 +1149,6 @@ void UBTeacherGuideWidget::onActiveSceneChanged()
mpPageZeroWidget
->
switchToMode
(
tUBTGZeroPageMode_EDITION
);
setCurrentWidget
(
mpPageZeroWidget
);
}
else
{
if
(
mpEditionWidget
->
isModified
()){
...
...
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