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
39fcd97b
Commit
39fcd97b
authored
Apr 10, 2012
by
Anatoly Mihalchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SANKORE-483
Web History
parent
80bfc86a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
137 additions
and
0 deletions
+137
-0
UBSettings.cpp
src/core/UBSettings.cpp
+1
-0
UBSettings.h
src/core/UBSettings.h
+1
-0
WBBrowserWindow.cpp
src/web/browser/WBBrowserWindow.cpp
+128
-0
WBBrowserWindow.h
src/web/browser/WBBrowserWindow.h
+7
-0
No files found.
src/core/UBSettings.cpp
View file @
39fcd97b
...
...
@@ -379,6 +379,7 @@ void UBSettings::init()
swapControlAndDisplayScreens
=
new
UBSetting
(
this
,
"App"
,
"SwapControlAndDisplayScreens"
,
false
);
angleTolerance
=
new
UBSetting
(
this
,
"App"
,
"AngleTolerance"
,
4
);
historyLimit
=
new
UBSetting
(
this
,
"Web"
,
"HistoryLimit"
,
15
);
}
...
...
src/core/UBSettings.h
View file @
39fcd97b
...
...
@@ -326,6 +326,7 @@ class UBSettings : public QObject
UBSetting
*
swapControlAndDisplayScreens
;
UBSetting
*
angleTolerance
;
UBSetting
*
historyLimit
;
public
slots
:
...
...
src/web/browser/WBBrowserWindow.cpp
View file @
39fcd97b
...
...
@@ -196,6 +196,36 @@ void WBBrowserWindow::setupToolBar()
mTabWidget
->
addWebAction
(
mUniboardMainWindow
->
actionWebReload
,
QWebPage
::
Reload
);
mTabWidget
->
addWebAction
(
mUniboardMainWindow
->
actionStopLoading
,
QWebPage
::
Stop
);
mHistoryBackMenu
=
new
QMenu
(
this
);
connect
(
mHistoryBackMenu
,
SIGNAL
(
aboutToShow
()),
this
,
SLOT
(
aboutToShowBackMenu
()));
connect
(
mHistoryBackMenu
,
SIGNAL
(
triggered
(
QAction
*
)),
this
,
SLOT
(
openActionUrl
(
QAction
*
)));
foreach
(
QWidget
*
menuWidget
,
mUniboardMainWindow
->
actionWebBack
->
associatedWidgets
())
{
QToolButton
*
tb
=
qobject_cast
<
QToolButton
*>
(
menuWidget
);
if
(
tb
&&
!
tb
->
menu
())
{
tb
->
setMenu
(
mHistoryBackMenu
);
tb
->
setStyleSheet
(
"QToolButton::menu-indicator { subcontrol-position: bottom left; }"
);
}
}
mHistoryForwardMenu
=
new
QMenu
(
this
);
connect
(
mHistoryForwardMenu
,
SIGNAL
(
aboutToShow
()),
this
,
SLOT
(
aboutToShowForwardMenu
()));
connect
(
mHistoryForwardMenu
,
SIGNAL
(
triggered
(
QAction
*
)),
this
,
SLOT
(
openActionUrl
(
QAction
*
)));
foreach
(
QWidget
*
menuWidget
,
mUniboardMainWindow
->
actionWebForward
->
associatedWidgets
())
{
QToolButton
*
tb
=
qobject_cast
<
QToolButton
*>
(
menuWidget
);
if
(
tb
&&
!
tb
->
menu
())
{
tb
->
setMenu
(
mHistoryForwardMenu
);
tb
->
setStyleSheet
(
"QToolButton { padding-right: 8px; }"
);
}
}
mWebToolBar
->
insertWidget
(
mUniboardMainWindow
->
actionWebBigger
,
mTabWidget
->
lineEditStack
());
mSearchToolBar
=
new
WBToolbarSearch
(
mWebToolBar
);
...
...
@@ -224,6 +254,22 @@ void WBBrowserWindow::setupToolBarForTutorial()
mTabWidget
->
addWebAction
(
mUniboardMainWindow
->
actionWebBack
,
QWebPage
::
Back
);
mTabWidget
->
addWebAction
(
mUniboardMainWindow
->
actionWebForward
,
QWebPage
::
Forward
);
foreach
(
QWidget
*
menuWidget
,
mUniboardMainWindow
->
actionWebBack
->
associatedWidgets
())
{
QToolButton
*
tb
=
qobject_cast
<
QToolButton
*>
(
menuWidget
);
if
(
tb
&&
tb
->
menu
())
tb
->
setMenu
(
NULL
);
}
foreach
(
QWidget
*
menuWidget
,
mUniboardMainWindow
->
actionWebForward
->
associatedWidgets
())
{
QToolButton
*
tb
=
qobject_cast
<
QToolButton
*>
(
menuWidget
);
if
(
tb
&&
tb
->
menu
())
tb
->
setMenu
(
NULL
);
}
// mTabWidget->addWebAction(mUniboardMainWindow->actionWebReload, QWebPage::Reload);
// mTabWidget->addWebAction(mUniboardMainWindow->actionStopLoading, QWebPage::Stop);
...
...
@@ -534,4 +580,86 @@ void WBBrowserWindow::showTabAtTop(bool attop)
mTabWidget
->
setTabPosition
(
QTabWidget
::
South
);
}
void
WBBrowserWindow
::
aboutToShowBackMenu
()
{
mHistoryBackMenu
->
clear
();
if
(
!
currentTabWebView
())
return
;
QWebHistory
*
history
=
currentTabWebView
()
->
history
();
int
historyCount
=
history
->
count
();
int
historyLimit
=
history
->
backItems
(
historyCount
).
count
()
-
UBSettings
::
settings
()
->
historyLimit
->
get
().
toReal
();
if
(
historyLimit
<
0
)
historyLimit
=
0
;
for
(
int
i
=
history
->
backItems
(
historyCount
).
count
()
-
1
;
i
>=
historyLimit
;
--
i
)
{
QWebHistoryItem
item
=
history
->
backItems
(
historyCount
).
at
(
i
);
QAction
*
action
=
new
QAction
(
this
);
action
->
setData
(
-
1
*
(
historyCount
-
i
-
1
));
if
(
!
QWebSettings
::
iconForUrl
(
item
.
originalUrl
()).
isNull
())
action
->
setIcon
(
item
.
icon
());
action
->
setText
(
item
.
title
().
isEmpty
()
?
item
.
url
().
toString
()
:
item
.
title
());
mHistoryBackMenu
->
addAction
(
action
);
}
mHistoryBackMenu
->
addSeparator
();
QAction
*
action
=
new
QAction
(
this
);
action
->
setData
(
"clear"
);
action
->
setText
(
"Clear history"
);
mHistoryBackMenu
->
addAction
(
action
);
}
void
WBBrowserWindow
::
aboutToShowForwardMenu
()
{
mHistoryForwardMenu
->
clear
();
if
(
!
currentTabWebView
())
return
;
QWebHistory
*
history
=
currentTabWebView
()
->
history
();
int
historyCount
=
history
->
count
();
int
historyLimit
=
history
->
forwardItems
(
historyCount
).
count
();
if
(
historyLimit
>
UBSettings
::
settings
()
->
historyLimit
->
get
().
toReal
())
historyLimit
=
UBSettings
::
settings
()
->
historyLimit
->
get
().
toReal
();
for
(
int
i
=
0
;
i
<
historyLimit
;
++
i
)
{
QWebHistoryItem
item
=
history
->
forwardItems
(
historyCount
).
at
(
i
);
QAction
*
action
=
new
QAction
(
this
);
action
->
setData
(
historyCount
-
i
);
if
(
!
QWebSettings
::
iconForUrl
(
item
.
originalUrl
()).
isNull
())
action
->
setIcon
(
item
.
icon
());
action
->
setText
(
item
.
title
().
isEmpty
()
?
item
.
url
().
toString
()
:
item
.
title
());
mHistoryForwardMenu
->
addAction
(
action
);
}
mHistoryForwardMenu
->
addSeparator
();
QAction
*
action
=
new
QAction
(
this
);
action
->
setData
(
"clear"
);
action
->
setText
(
"Clear history"
);
mHistoryForwardMenu
->
addAction
(
action
);
}
void
WBBrowserWindow
::
openActionUrl
(
QAction
*
action
)
{
QWebHistory
*
history
=
currentTabWebView
()
->
history
();
if
(
action
->
data
()
==
"clear"
)
{
history
->
clear
();
return
;
}
int
offset
=
action
->
data
().
toInt
();
if
(
offset
<
0
)
history
->
goToItem
(
history
->
backItems
(
-
1
*
offset
).
first
());
else
if
(
offset
>
0
)
history
->
goToItem
(
history
->
forwardItems
(
history
->
count
()
-
offset
+
1
).
back
());
}
\ No newline at end of file
src/web/browser/WBBrowserWindow.h
View file @
39fcd97b
...
...
@@ -112,6 +112,10 @@ class WBBrowserWindow : public QWidget
void
showTabAtTop
(
bool
attop
);
void
aboutToShowBackMenu
();
void
aboutToShowForwardMenu
();
void
openActionUrl
(
QAction
*
action
);
signals
:
void
activeViewPageChanged
();
void
activeViewChange
(
QWidget
*
);
...
...
@@ -160,6 +164,9 @@ class WBBrowserWindow : public QWidget
QString
mLastSearch
;
Ui
::
MainWindow
*
mUniboardMainWindow
;
QMenu
*
mHistoryBackMenu
;
QMenu
*
mHistoryForwardMenu
;
};
#endif // WBBROWSERMAINWINDOW_H
...
...
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