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
e38b2454
Commit
e38b2454
authored
Jul 30, 2012
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed issue 505
parent
ce160bf3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
15 deletions
+19
-15
UBApplicationController.cpp
src/core/UBApplicationController.cpp
+18
-12
UBWebController.cpp
src/web/UBWebController.cpp
+1
-3
No files found.
src/core/UBApplicationController.cpp
View file @
e38b2454
...
@@ -473,23 +473,30 @@ void UBApplicationController::showTutorial()
...
@@ -473,23 +473,30 @@ void UBApplicationController::showTutorial()
UBApplication
::
boardController
->
hide
();
UBApplication
::
boardController
->
hide
();
}
}
// it's needed not to duplicate webbrowser search in web mode. If I've breaked smbd's code let Ivan know
if
(
UBSettings
::
settings
()
->
webUseExternalBrowser
->
get
().
toBool
())
UBApplication
::
webController
->
show
(
UBWebController
::
Tutorial
);
{
showDesktop
(
true
);
UBApplication
::
webController
->
show
(
UBWebController
::
Tutorial
);
mMainWindow
->
webToolBar
->
hide
();
}
mMainWindow
->
boardToolBar
->
hide
();
else
{
mMainWindow
->
documentToolBar
->
hide
();
mMainWindow
->
webToolBar
->
hide
();
mMainWindow
->
tutorialToolBar
->
show
();
mMainWindow
->
boardToolBar
->
hide
();
mMainWindow
->
documentToolBar
->
hide
();
mMainWindow
->
tutorialToolBar
->
show
();
mMainMode
=
Tutorial
;
mMainMode
=
Tutorial
;
adaptToolBar
();
adaptToolBar
();
mUninoteController
->
hideWindow
();
mUninoteController
->
hideWindow
();
mirroringEnabled
(
false
);
UBApplication
::
webController
->
show
(
UBWebController
::
Tutorial
);
emit
mainModeChanged
(
mMainMode
);
mirroringEnabled
(
false
);
emit
mainModeChanged
(
mMainMode
);
}
}
}
...
@@ -539,7 +546,6 @@ void UBApplicationController::updateRequestFinished(int id, bool error)
...
@@ -539,7 +546,6 @@ void UBApplicationController::updateRequestFinished(int id, bool error)
}
}
else
{
else
{
QString
responseString
=
QString
(
mHttp
->
readAll
());
QString
responseString
=
QString
(
mHttp
->
readAll
());
qDebug
()
<<
responseString
;
if
(
!
responseString
.
isEmpty
()
&&
responseString
.
contains
(
"version"
)
&&
responseString
.
contains
(
"url"
)){
if
(
!
responseString
.
isEmpty
()
&&
responseString
.
contains
(
"version"
)
&&
responseString
.
contains
(
"url"
)){
mHttp
->
close
();
mHttp
->
close
();
downloadJsonFinished
(
responseString
);
downloadJsonFinished
(
responseString
);
...
...
src/web/UBWebController.cpp
View file @
e38b2454
...
@@ -177,10 +177,8 @@ void UBWebController::tutorialWebInstance()
...
@@ -177,10 +177,8 @@ void UBWebController::tutorialWebInstance()
QString
tutorialPath
=
"/etc/Tutorial/tutorial"
+
language
+
"/index.html"
;
QString
tutorialPath
=
"/etc/Tutorial/tutorial"
+
language
+
"/index.html"
;
#if defined(Q_WS_MAC)
#if defined(Q_WS_MAC)
tutorialHtmlIndexFile
=
QApplication
::
applicationDirPath
()
+
"/../Resources"
+
tutorialPath
;
tutorialHtmlIndexFile
=
QApplication
::
applicationDirPath
()
+
"/../Resources"
+
tutorialPath
;
#elif defined(Q_WS_WIN)
tutorialHtmlIndexFile
=
QApplication
::
applicationDirPath
()
+
tutorialPath
;
#else
#else
tutorialHtmlIndexFile
=
QApplication
::
applicationDirPath
()
+
tutorialPath
;
tutorialHtmlIndexFile
=
QApplication
::
applicationDirPath
()
+
tutorialPath
;
#endif
#endif
QUrl
currentUrl
=
QUrl
::
fromLocalFile
(
tutorialHtmlIndexFile
);
QUrl
currentUrl
=
QUrl
::
fromLocalFile
(
tutorialHtmlIndexFile
);
...
...
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