summaryrefslogtreecommitdiff
path: root/src/sessionmanager.h
Commit message (Collapse)AuthorAgeFilesLines
* Add a "session" startup optionAndrea Diamantini2013-04-021-2/+2
| | | | BUG: 249462
* Implement session saving, inspired from kate session managementAndrea Diamantini2013-04-021-2/+4
| | | | | (or at least, for what I see...) Added session manager widget and ability to load/save/rename sessions
* Managing sessions, first bitsAndrea Diamantini2013-04-021-3/+3
| | | | | | | This code is based on the patch from mayank jha about session saving. Will be used as "first part" of the session saving support in rekonq. CCMAIL: mjnovice@gmail.com
* Remove the "AutoSaver" attempt :(Andrea Diamantini2013-03-181-4/+0
| | | | | | | | I tried to save disk writes. But everytime people is finding some saved (or just delayed) saves that are NOT ok. We'll see to find another way to... BUG: 316938
* Supporting panel (again) :)Andrea Diamantini2013-03-101-3/+4
| | | | | | | | | - Move to a pure QWidget base window (instead of TabWidget one) (this to properly store panels position) - Restoring && rewamping panels code - Restoring actions to activate/deactivate them BUG: 312354
* Closed tabs page, last bits (?)Andrea Diamantini2013-02-171-1/+1
| | | | Restore closed tabs on restart
* Krazy Fixes, first shotAndrea Diamantini2012-12-281-1/+1
|
* Restoring pinned tabs, yeah!!!! :DAndrea Diamantini2012-12-101-5/+6
|
* Integrated spell checking for rekonq2 (lindsay's work imported)Andrea Diamantini2012-12-101-2/+2
| | | | | | | | | | | | | - 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... :)
* IconManager restoreAndrea Diamantini2012-12-101-0/+104
| | | | | Just 3 lines fixes ;) Also clean up in the dir structure...
* WARNING COMMIT --> FIRST REKONQ 2 IMPORTAndrea Diamantini2012-12-101-87/+0
| | | | Preparing repo to merge rekonq2 code...
* Clean up headers && fix compilation with (the upcoming) qt 4.8.2Andrea Diamantini2012-04-201-2/+2
|
* Move icon manager download system to QNAMAndrea Diamantini2012-01-151-1/+1
| | | | | | | | | & Search also for favicon.ico files This seems to be the unique method to surely workaround this bug rekonq encounters when tries to load an unextant favicon with KIO (see BUG:289029 )
* Implement (User) Session RestoreDavid E. Narváez2012-01-121-1/+4
| | | | | | | | This patch implements session management. Most of the ideas are taken from Konsole, which is also a KUniqueApplication but manages session restoring correctly. REVIEW: 103658
* Fix crash on private mode store/restoreAndrea Diamantini2011-10-131-2/+13
| | | | | | | | | | | | This commit, while does not perfectly fix the issue, "workaround" it a lot to fix crashes on private mode enter/exit - improve session store/restore - improve session manager code - calm down kDebug messages - applies code style CCBUG: 268328
* Fix session manager restoreAndrea Diamantini2011-09-271-3/+4
| | | | | I think we need to consider the two cases (normal restore vs restore from crash) in different ways.
* Restore tab's history when restoring a tab/sessionAnton Kreuzkamp2011-08-211-1/+2
| | | | | | | | We finally have it :D CCMAIL: akreuzkamp@web.de REVIEW: 100604 REVIEWED-BY: adjam, elproxy
* Clean up all d-tors to fix an eventual crash on exitAndrea Diamantini2011-02-281-1/+1
|
* Coding styleAndrea Diamantini2011-02-251-1/+4
|
* Finally found time to update copyrights... ;)Andrea Diamantini2011-02-241-2/+2
|
* Prompt user before restoring session after a crash.Pierre Rossi2010-10-081-1/+4
| | | | | | Shows the about:closedTabs page in the background. Task: https://bugs.kde.org/show_bug.cgi?id=249228
* Include clean-up in the big src directoryJon Ander Peñalba2010-09-031-2/+4
|
* Load old closed tabs from session manager.Andrea Diamantini2010-05-111-0/+2
| | | | | | | | | This let me think about the need of reimplementing it and all History to support more infos (eg: zoom) closing one bug and opening another :) BUG:228480
* New rekonq_defines.hAndrea Diamantini2010-04-301-2/+2
| | | | Speed up compilation & linking on Win, Lin & Mac. Step 1
* A coding style roundAndrea Diamantini2010-04-301-1/+1
|
* tests support for every Qt derived rekonq classAndrea Diamantini2010-02-261-1/+4
|
* Fix copyright for 0.4 beta releaseAndrea Diamantini2010-02-101-2/+2
|
* Cleaning headers and so on...Andrea Diamantini2009-10-061-1/+1
|
* moving from about: protocol to rekonq: protocol :DAndrea Diamantini2009-10-021-1/+0
| | | | | This fix some issues, about some "stupid" sites whose js sends strange "about:blank" requests (just found 2!!)
* Fixing sessionmanager (at least I hope so):Andrea Diamantini2009-09-261-2/+5
| | | | | | - moved from DataStream to TextStream (we use strings..) - implemented a semaphore (m_safe) - closing every time file
* Session Management (restore on crash)Andrea Diamantini2009-09-101-0/+56
This is HEAVILY based on code from Lionel and Yoram branches. But this code behaves differently: it restores rekonq tabs (just) on crash. Thanks to Lionel suggestions, it seems "better" than my initial idea :) It is quite extensible. We need just to fix it better as possible and then manage its behaviour in newInstance code.. ;)