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
b5f0e0c5
Commit
b5f0e0c5
authored
May 23, 2011
by
shibakaneki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issue Sankore-24
parent
be6de520
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
0 deletions
+21
-0
UBDocumentController.cpp
src/document/UBDocumentController.cpp
+2
-0
UBDocumentController.h
src/document/UBDocumentController.h
+1
-0
UBMainWindow.cpp
src/gui/UBMainWindow.cpp
+14
-0
UBMainWindow.h
src/gui/UBMainWindow.h
+4
-0
No files found.
src/document/UBDocumentController.cpp
View file @
b5f0e0c5
...
...
@@ -55,6 +55,7 @@ UBDocumentController::UBDocumentController(UBMainWindow* mainWindow)
{
setupViews
();
setupToolbar
();
connect
(
this
,
SIGNAL
(
exportDone
()),
mMainWindow
,
SLOT
(
onExportDone
()));
}
...
...
@@ -818,6 +819,7 @@ void UBDocumentController::exportDocument()
if
(
proxy
)
{
selectedExportAdaptor
->
persist
(
proxy
);
emit
exportDone
();
}
else
{
...
...
src/document/UBDocumentController.h
View file @
b5f0e0c5
...
...
@@ -37,6 +37,7 @@ class UBDocumentController : public QObject
signals
:
void
refreshThumbnails
();
void
exportDone
();
public
slots
:
void
createNewDocument
();
...
...
src/gui/UBMainWindow.cpp
View file @
b5f0e0c5
...
...
@@ -102,3 +102,17 @@ void UBMainWindow::keyPressEvent(QKeyEvent *event)
}
*/
}
void
UBMainWindow
::
onExportDone
()
{
// HACK : When opening the file save dialog during the document exportation,
// some buttons of the toolbar become disabled without any reason. We
// re-enable them here.
actionExport
->
setEnabled
(
true
);
actionNewDocument
->
setEnabled
(
true
);
actionRename
->
setEnabled
(
true
);
actionDuplicate
->
setEnabled
(
true
);
actionDelete
->
setEnabled
(
true
);
actionOpen
->
setEnabled
(
true
);
actionDocumentAdd
->
setEnabled
(
true
);
}
src/gui/UBMainWindow.h
View file @
b5f0e0c5
...
...
@@ -12,6 +12,7 @@ class QStackedLayout;
class
UBMainWindow
:
public
QMainWindow
,
public
Ui
::
MainWindow
{
Q_OBJECT
public
:
UBMainWindow
(
QWidget
*
parent
=
0
,
Qt
::
WindowFlags
flags
=
0
);
...
...
@@ -26,6 +27,9 @@ class UBMainWindow : public QMainWindow, public Ui::MainWindow
void
addDocumentsWidget
(
QWidget
*
pWidget
);
void
switchToDocumentsWidget
();
public
slots
:
void
onExportDone
();
protected
:
virtual
void
keyPressEvent
(
QKeyEvent
*
event
);
...
...
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