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
75bced41
Commit
75bced41
authored
Aug 27, 2012
by
Ilia Ryabokon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sankore 851 access to web instances
parent
f2252033
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
13 deletions
+27
-13
UBWebController.cpp
src/web/UBWebController.cpp
+26
-12
UBWebController.h
src/web/UBWebController.h
+1
-1
No files found.
src/web/UBWebController.cpp
View file @
75bced41
...
...
@@ -64,6 +64,11 @@ UBWebController::UBWebController(UBMainWindow* mainWindow)
{
connect
(
mMainWindow
->
actionWebTools
,
SIGNAL
(
toggled
(
bool
)),
this
,
SLOT
(
toggleWebToolsPalette
(
bool
)));
mStackedWidget
=
new
QStackedWidget
();
mStackedWidget
->
addWidget
(
new
QWidget
(
mStackedWidget
));
mStackedWidget
->
addWidget
(
new
QWidget
(
mStackedWidget
));
mStackedWidget
->
addWidget
(
new
QWidget
(
mStackedWidget
));
mMainWindow
->
addWebWidget
(
mStackedWidget
);
for
(
int
i
=
0
;
i
<
TotalNumberOfWebInstances
;
i
+=
1
){
...
...
@@ -76,13 +81,15 @@ UBWebController::UBWebController(UBMainWindow* mainWindow)
// TODO : Comment the next line to continue the Youtube button bugfix
initialiazemOEmbedProviders
();
}
UBWebController
::~
UBWebController
()
{
// NOOP
if
(
mStackedWidget
)
{
delete
mStackedWidget
;
}
}
void
UBWebController
::
initialiazemOEmbedProviders
()
...
...
@@ -119,6 +126,7 @@ void UBWebController::webBrowserInstance()
mCurrentWebBrowser
=
&
mWebBrowserList
[
WebBrowser
];
mToolsCurrentPalette
=
&
mToolsPaletteList
[
WebBrowser
];
mToolsPalettePositionned
=
mToolsPalettePositionnedList
[
WebBrowser
];
if
(
!
(
*
mCurrentWebBrowser
))
{
(
*
mCurrentWebBrowser
)
=
new
WBBrowserWindow
(
mMainWindow
->
centralWidget
(),
mMainWindow
);
...
...
@@ -134,6 +142,10 @@ void UBWebController::webBrowserInstance()
mMainWindow
->
actionBookmarks
->
setVisible
(
showAddBookmarkButtons
);
mMainWindow
->
actionAddBookmark
->
setVisible
(
showAddBookmarkButtons
);
mStackedWidget
->
setCurrentIndex
(
WebBrowser
);
if
(
mStackedWidget
->
currentWidget
())
{
mStackedWidget
->
removeWidget
(
mStackedWidget
->
currentWidget
());
}
mStackedWidget
->
insertWidget
(
WebBrowser
,
(
*
mCurrentWebBrowser
));
showTabAtTop
(
UBSettings
::
settings
()
->
appToolBarPositionedAtTop
->
get
().
toBool
());
...
...
@@ -150,9 +162,8 @@ void UBWebController::webBrowserInstance()
(
*
mCurrentWebBrowser
)
->
tabWidget
()
->
lineEdits
()
->
show
();
}
UBApplication
::
applicationController
->
setMirrorSourceWidget
((
*
mCurrentWebBrowser
)
->
paintWidget
());
mStackedWidget
->
setCurrentIndex
(
WebBrowser
);
UBApplication
::
applicationController
->
setMirrorSourceWidget
((
*
mCurrentWebBrowser
)
->
paintWidget
());
mMainWindow
->
switchToWebWidget
();
setupPalettes
();
...
...
@@ -165,7 +176,6 @@ void UBWebController::webBrowserInstance()
if
(
mDownloadViewIsVisible
)
WBBrowserWindow
::
downloadManager
()
->
show
();
}
void
UBWebController
::
tutorialWebInstance
()
...
...
@@ -191,13 +201,17 @@ void UBWebController::tutorialWebInstance()
{
mCurrentWebBrowser
=
&
mWebBrowserList
[
Tutorial
];
mToolsPalettePositionned
=
&
mToolsPalettePositionnedList
[
Tutorial
];
if
(
!
(
*
mCurrentWebBrowser
))
{
(
*
mCurrentWebBrowser
)
=
new
WBBrowserWindow
(
mMainWindow
->
centralWidget
(),
mMainWindow
,
true
);
connect
((
*
mCurrentWebBrowser
),
SIGNAL
(
activeViewChange
(
QWidget
*
)),
this
,
SLOT
(
setSourceWidget
(
QWidget
*
)));
mStackedWidget
->
setCurrentIndex
(
Tutorial
);
if
(
mStackedWidget
->
currentWidget
())
{
mStackedWidget
->
removeWidget
(
mStackedWidget
->
currentWidget
());
}
mStackedWidget
->
insertWidget
(
Tutorial
,
(
*
mCurrentWebBrowser
));
adaptToolBar
();
mTrapFlashController
=
new
UBTrapFlashController
((
*
mCurrentWebBrowser
));
...
...
@@ -212,12 +226,9 @@ void UBWebController::tutorialWebInstance()
else
(
*
mCurrentWebBrowser
)
->
loadUrl
(
currentUrl
);
UBApplication
::
applicationController
->
setMirrorSourceWidget
((
*
mCurrentWebBrowser
)
->
paintWidget
());
mStackedWidget
->
setCurrentIndex
(
Tutorial
);
UBApplication
::
applicationController
->
setMirrorSourceWidget
((
*
mCurrentWebBrowser
)
->
paintWidget
());
mMainWindow
->
switchToWebWidget
();
screenLayoutChanged
();
bool
mirroring
=
UBSettings
::
settings
()
->
webShowPageImmediatelyOnMirroredScreen
->
get
().
toBool
();
...
...
@@ -246,6 +257,7 @@ void UBWebController::paraschoolWebInstance()
if
(
UBSettings
::
settings
()
->
webUseExternalBrowser
->
get
().
toBool
()){
QDesktopServices
::
openUrl
(
currentUrl
);
}
else
{
mCurrentWebBrowser
=
&
mWebBrowserList
[
Paraschool
];
mToolsCurrentPalette
=
&
mToolsPaletteList
[
Paraschool
];
...
...
@@ -254,6 +266,10 @@ void UBWebController::paraschoolWebInstance()
(
*
mCurrentWebBrowser
)
=
new
WBBrowserWindow
(
mMainWindow
->
centralWidget
(),
mMainWindow
,
true
);
connect
((
*
mCurrentWebBrowser
),
SIGNAL
(
activeViewChange
(
QWidget
*
)),
this
,
SLOT
(
setSourceWidget
(
QWidget
*
)));
mStackedWidget
->
setCurrentIndex
(
Paraschool
);
if
(
mStackedWidget
->
currentWidget
())
{
mStackedWidget
->
removeWidget
(
mStackedWidget
->
currentWidget
());
}
mStackedWidget
->
insertWidget
(
Paraschool
,
(
*
mCurrentWebBrowser
));
adaptToolBar
();
...
...
@@ -267,11 +283,9 @@ void UBWebController::paraschoolWebInstance()
}
UBApplication
::
applicationController
->
setMirrorSourceWidget
((
*
mCurrentWebBrowser
)
->
paintWidget
());
mStackedWidget
->
setCurrentIndex
(
Paraschool
);
UBApplication
::
applicationController
->
setMirrorSourceWidget
((
*
mCurrentWebBrowser
)
->
paintWidget
());
mMainWindow
->
switchToWebWidget
();
screenLayoutChanged
();
bool
mirroring
=
UBSettings
::
settings
()
->
webShowPageImmediatelyOnMirroredScreen
->
get
().
toBool
();
...
...
src/web/UBWebController.h
View file @
75bced41
...
...
@@ -104,7 +104,7 @@ class UBWebController : public QObject
void
lookForEmbedContent
(
QString
*
pHtml
,
QString
tag
,
QString
attribute
,
QList
<
QUrl
>*
pList
);
void
checkForOEmbed
(
QString
*
pHtml
);
QStackedWidget
mStackedWidget
[
TotalNumberOfWebInstances
]
;
QStackedWidget
*
mStackedWidget
;
UBMainWindow
*
mMainWindow
;
...
...
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