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
0707f90a
Commit
0707f90a
authored
Aug 14, 2012
by
shibakaneki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issue 558
parent
5bdeae56
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
UBGraphicsWidgetItem.cpp
src/domain/UBGraphicsWidgetItem.cpp
+7
-1
UBGraphicsWidgetItem.h
src/domain/UBGraphicsWidgetItem.h
+3
-0
UBWebController.cpp
src/web/UBWebController.cpp
+1
-1
No files found.
src/domain/UBGraphicsWidgetItem.cpp
View file @
0707f90a
...
...
@@ -106,11 +106,17 @@ void UBGraphicsWidgetItem::initialize()
QPalette
palette
=
page
()
->
palette
();
palette
.
setBrush
(
QPalette
::
Base
,
QBrush
(
Qt
::
transparent
));
page
()
->
setPalette
(
palette
);
page
()
->
setPalette
(
palette
);
page
()
->
setLinkDelegationPolicy
(
QWebPage
::
DelegateAllLinks
);
connect
(
page
()
->
mainFrame
(),
SIGNAL
(
javaScriptWindowObjectCleared
()),
this
,
SLOT
(
javaScriptWindowObjectCleared
()));
connect
(
page
(),
SIGNAL
(
geometryChangeRequested
(
const
QRect
&
)),
this
,
SLOT
(
geometryChangeRequested
(
const
QRect
&
)));
connect
(
this
,
SIGNAL
(
loadFinished
(
bool
)),
this
,
SLOT
(
mainFrameLoadFinished
(
bool
)));
connect
(
page
(),
SIGNAL
(
linkClicked
(
const
QUrl
&
)),
this
,
SLOT
(
onLinkClicked
(
const
QUrl
&
)));
}
void
UBGraphicsWidgetItem
::
onLinkClicked
(
const
QUrl
&
url
){
UBApplication
::
webController
->
loadUrl
(
url
);
}
QUrl
UBGraphicsWidgetItem
::
mainHtml
()
...
...
src/domain/UBGraphicsWidgetItem.h
View file @
0707f90a
...
...
@@ -152,6 +152,9 @@ class UBGraphicsWidgetItem : public UBGraphicsWebView
virtual
void
javaScriptWindowObjectCleared
();
void
mainFrameLoadFinished
(
bool
ok
);
private
slots
:
void
onLinkClicked
(
const
QUrl
&
url
);
private
:
bool
mIsFrozen
;
bool
mIsTakingSnapshot
;
...
...
src/web/UBWebController.cpp
View file @
0707f90a
...
...
@@ -719,6 +719,7 @@ bool UBWebController::isEduMedia(const QUrl& pUrl)
void
UBWebController
::
loadUrl
(
const
QUrl
&
url
)
{
UBApplication
::
applicationController
->
showInternet
();
if
(
UBSettings
::
settings
()
->
webUseExternalBrowser
->
get
().
toBool
())
{
QDesktopServices
::
openUrl
(
url
);
...
...
@@ -726,7 +727,6 @@ void UBWebController::loadUrl(const QUrl& url)
else
{
bool
webBrowserAlreadyInstanciated
=
mStackedWidget
->
widget
(
WebBrowser
)
!=
NULL
;
UBApplication
::
applicationController
->
showInternet
();
if
(
!
webBrowserAlreadyInstanciated
)
{
(
*
mCurrentWebBrowser
)
->
loadUrl
(
url
);
...
...
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