summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix close & sessionAndrea Diamantini2011-09-131-43/+14
| | | | | | | | | | First, I'm really sorry for this bad commit ('git' talking..). The fact is that the 3 bugs fixed here were found chained playing with close code. Here it is the report: - fix close window (it now really appears on multiple window closing) - fix saveSession (saving one call for each site loaded and storing better information): saveSession is now called on loadFinished - clean up some compilation warnings
* Revert "Revert "This commit, available just for"Andrea Diamantini2011-09-081-10/+7
| | | | | | "the master branch cause of the string changes,"" This reverts commit e00fb6a48ca506990e86ada7c2fbfd57f65b2fa1.
* Revert "Revert "Fix quit action""Andrea Diamantini2011-09-081-1/+1
| | | | | | This reverts commit c3f9448a94baa423eed5977c9e66cd7be9b73a76. Let the quit action really work
* Corrected casing for 'Set Editable' action, also added an icon to itTirtha Chatterjee2011-08-221-1/+1
|
* detect zoom - and searchBar size in notifyMessage REVIEW:102338Johannes Tröscher2011-08-171-1/+3
|
* Revert "This commit, available just for the master branch cause of the ↵Thomas Zander2011-08-171-7/+10
| | | | | | | | | | string changes," This reverts commit d4d034967f12b31f5a6b9274ec42d4e4fe27571c. Conflicts: src/mainwindow.cpp
* Revert "Fix quit action"Thomas Zander2011-08-171-1/+1
| | | | This reverts commit 725724b15d739233c4a8fc0cd416bf602288d4b2.
* Use KXMLGui to create rekonq menuJohannes Troscher2011-08-121-74/+42
| | | | | | | Easier and (hopefully) safer (less code to manage) REVIEW: 102209 REVIEWED-BY: adjam
* notify popup improvementsJohannes Troscher2011-08-111-45/+24
| | | | | | | | | | Use a QLabel instead of a KPassivePopup (letting popups available also on inactive windows). Limits preview size to half of the browser screen size. Letting code easier to read :) REVIEW: 102105 REVIEWED-BY: adjam
* Update session file before last window is closedTirtha Chatterjee2011-08-111-0/+5
| | | | | | | | Having 2 (or more) windows open and closing one did NOT update the session file. Now it is :) REVIEW: 101346 REVIEWED-BY: adjam
* Tools Action MenuAndrea Diamantini2011-08-041-34/+42
| | | | | | | | | | | - Removed showDeveloperTools action - Moved adblock GUI to adblock part - renamed toolsMenu and developerMenu to reflect their real/new roles - Added UserAgent action to the tools menu REVIEW:102170 REVIEWED-BY: fritz_van_tom
* detect srollbar extent in notifyMessage REVIEW:102182Johannes Tröscher2011-08-021-3/+3
|
* Introducing ASSERT_NOT_REACHEDPierre Rossi2011-07-281-5/+1
| | | | | | | | | In a similar fashion as WebKit, this might make those cases where we don't expect to go more obvious in debug builds. I also took the liberty to revisit a lot of switch statements but it could potentially be used elsewhere Reviewed-by: andrea
* use KParts to view page source REVIEW:102085Johannes Tröscher2011-07-261-1/+14
|
* use KTemporaryFile for tempfile in viewPageSource action. REVIEW:102087Johannes Tröscher2011-07-261-15/+9
|
* clean upAndrea Diamantini2011-07-251-100/+100
| | | | | | - QL1S - one stupid kDebug less - codingstyle
* Calm down kDebug messagesAndrea Diamantini2011-07-191-3/+0
|
* A round of the "new" astyle 2.01...Andrea Diamantini2011-07-171-131/+131
|
* Make it compiles with "-DQT_USE_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS"Montel Laurent2011-06-091-3/+3
|
* Adding DownloadManager class, following Pierre and Benjamin code changes.Andrea Diamantini2011-05-261-1/+2
| | | | First step in the introduction of the new rekonq pages
* Open source code by loading the page HTML instead of requesting (another ↵Andrea Diamantini2011-05-131-3/+36
| | | | | | time) the site url. This will let also the "set content editable" feature works well on save
* Developer tool: set content editable.Andrea Diamantini2011-05-111-0/+12
|
* Use of QSignalMapper for switchToTab() method in terms of code unificationAndrea Diamantini2011-05-091-7/+8
| | | | | | Patch by Thomas Murach, thanks ;) RB:101246
* Imported Opera feature to load favorite page with number 1..9 by pressing ↵Andrea Diamantini2011-04-281-0/+15
| | | | | | | | | | | | | | | CTRL + 1..9 Courtesy patch by Thomas Murach. Thanks :) Reviewed by Pierre, Felix... and me! RB: 101043 PS: Thomas, I see one corner problem with your patch: Opera has clearly indicated favorites preview number, while rekonq hasn't. Any idea to fill the gap?
* Letting rekonq URL popup behaves as Chrome's and Firefox4 onesAndrea Diamantini2011-04-231-19/+19
| | | | (i.e. moving on right on pointer sovrapposition)
* This commit, available just for the master branch cause of the string changes,Andrea Diamantini2011-04-041-13/+10
| | | | | | | | modifies rekonq behavior on closing multiple tabs. Nothing is more asked on that, while a confirmation dialog is triggered when the user tries to close a window. Depending on the windows number, the user is requested if he likes to close the whole app or (just) the current window PS: sorry, my English sucks today...
* Fix quit actionFelix Rohrbach2011-04-041-1/+1
| | | | | | | | | | The quit action in the action collection did just close the current rekonq window instead of quitting the application. Reviewed by Andrea Diamantini. BUG: 268578 REVIEW: 101019
* Elide notifyPopup text if it would be longer than window's widthAndrea Diamantini2011-04-031-1/+5
| | | | | Johannes Troscher's patch Reviewed by me ;)
* Stop timers before deleting objects.Andrea Diamantini2011-03-231-0/+2
| | | | | CCBUG:268328 CCBUG:266937
* Really hiding the tabbar...Andrea Diamantini2011-03-201-2/+2
|
* Delete url popup on resize/moveAndrea Diamantini2011-03-161-5/+27
|
* Disable help menu creation via createGUI as we create it on our own...Andrea Diamantini2011-03-091-1/+3
| | | | BUG:268071
* Clean up all d-tors to fix an eventual crash on exitAndrea Diamantini2011-02-281-17/+0
|
* Coding styleAndrea Diamantini2011-02-251-84/+86
|
* Finally found time to update copyrights... ;)Andrea Diamantini2011-02-241-2/+2
|
* No more static members in the Application class,Pierre Rossi2011-02-241-30/+29
| | | | | | | an rApp shortcut for Application::instance, clean up code switching to use the new shortcut Reviewed by: adjam
* Cleans up "tab switch" management and expecially the use of signalsAndrea Diamantini2011-02-171-2/+3
| | | | | | | on that. This, expecially to avoid double calls on functions to manage tab switching and info updating. Reviewed by NOBODY (oops...)
* Calm down kDebug messagesAndrea Diamantini2011-02-161-8/+0
|
* This patch cleans up encoding management, moving code toAndrea Diamantini2011-02-141-86/+0
| | | | | | | its real position: The appearance settings widget. In fact our code is actually changing "default" text encoding, not the page one "on the fly"
* Fix issue 258901: disable stop button while not loadingCedric Bellegarde2011-02-101-1/+2
|
* Fix issue 264223: Use mapToGlobal() for main window as geometry.x() seems to ↵Cedric Bellegarde2011-02-101-1/+1
| | | | sometimes return wrong values
* Hide bars on ESC key pressed:Yoann Laissus2011-02-081-8/+31
| | | | | | | | zoombar first, findbar second. Reviewed by adjam BUG:264929
* Added an option to show current website favicon as rekonq window iconFurkan Uzumcu2011-02-051-1/+12
| | | | Reviewed by adjam
* Added pulldown menu for multiple steps to the "Forward History" buttonFurkan Uzumcu2011-02-011-9/+54
|
* User Agent Switcher.Andrea Diamantini2011-02-011-0/+90
| | | | | | | | | | This patch should implement the UA switcher ability for rekonq. This is a first implementation, but it seems working quite well. It is based on KDE UA management and should be fully compatible with konqueror's one i.e. it should be possible using alternatively rekonq and konqueror sharing the same setting. Anyway, this is a different implementation from the konqueror's one. Simpler and based on the idea of a future moving to a plugin.
* If showDeveloperTools is disabled, hide the development entries in the ↵Felix Rohrbach2011-01-221-43/+47
| | | | | | | | rekonq menu, too. With this patch, the menu will be created the first time the user opens the menu. RB: 100374
* Remember selections in the "clear private data" dialog.Furkan Uzumcu2011-01-171-1/+14
| | | | Reviewed (and merged) by me :)
* This commit contains the changes to the context menu which we decided in our ↵Felix Rohrbach2011-01-151-0/+6
| | | | | | | | | | meeting: 1. Hide new tab entry if it is not necessary. 2. Print and Search action: I removed the print action. The search action is now in the "search with" submenu if some text is selected. 3. Hide the development menu entries and add an option to show them. RB: 100374
* Revert "Use Escape shortcut to stop web loading"Andrea Diamantini2011-01-091-1/+1
| | | | | | This reverts commit de39729f4e3864aec6c0366ac72ca5f1228d60d1. It actually has problems with urlbar behavior. Needs a little more work..
* Use Escape shortcut to stop web loadingRohan Garg2011-01-091-1/+1
| | | | | Thanks to Furkan Üzümcü Review Board request : http://git.reviewboard.kde.org/r/100322/