summaryrefslogtreecommitdiff
path: root/src/tabwindow/rekonqwindow.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Added option for opening new tabs next to current (default to true). ↵Lindsay Mathieson2013-01-241-0/+5
| | | | Otherwise tabs created at end of list.
* Restore Tab Windows when Restoring the SessionDavid E. Narváez2013-01-081-1/+1
| | | | | | | | Modified the restore method so that it returns true in case something is actually restored, and then use that return value to call the restoreTabWindow method of the session manager REVIEW: 108077
* - Code style check (codestyle script round)Andrea Diamantini2012-12-121-3/+3
| | | | | | | | | - restored CTRL + ENTER code - applied Vedant's patch about (thanks!!!) CCMAIL: vedant.kota@gmail.com REVIEW: 107662 REVIEWED-BY: Tirtha and me
* Fix RekonqWindow behaviour while opening new windowsAndrea Diamantini2012-12-101-11/+52
|
* Do not lock UI when add/insert tabsAndrea Diamantini2012-12-101-0/+46
| | | | See qt:qtabwidget#insertTab about.
* WARNING: BIG COMMITAndrea Diamantini2012-12-101-1/+2
| | | | | | | | | | | | | This commit reviews and partially fix the Q/K action mess in rekonq code. We now store actions in different actioncollections (one for each tab && one for each window). Related to this code review, you can find also fixes for some triggered actions NOT working (well) before: - fullscreen - bookmark all tabs - new (clean) tab
* Add sizeHint code from rekonqAndrea Diamantini2012-12-101-3/+7
| | | | | | | oops... by accident (-a) added here also the easy fix for tabs: - shown "Loading..." string while loading - use IconManager to properly show tab icon on load finished
* setting a decent minimum size...Andrea Diamantini2012-12-101-1/+4
|
* Integrated spell checking for rekonq2 (lindsay's work imported)Andrea Diamantini2012-12-101-41/+49
| | | | | | | | | | | | | - inline spell highlighter. This requires WebKit 2.3 to work. - Addition of a suggested replacement word list to the context menu, for the word right clicked on - A standard modeless spell check dialog that works on the current editable text (or selection). Heavily cribbed from Dawit's work on kdewebkitpart. oops... also a codingstyle script round here... :)
* Implement RekonqWindowAndrea Diamantini2012-12-101-0/+340
Now, all the "KMainWindow" logic is moved to this new class. "Restored" session management. NOTE: Probably needs some fixes yet, but seems going in the right direction...