summaryrefslogtreecommitdiff
path: root/src/application.cpp
Commit message (Collapse)AuthorAgeFilesLines
...
* Insert back HistoryManagerAndrea Diamantini2012-12-101-3/+7
| | | | | | There are a few notable changes here: - rekonq_defines.h clean up, removing the enums from there - let HistoryManager be accessible by a self function
* Class Application Import, first (important) partAndrea Diamantini2012-12-101-0/+520
|
* WARNING COMMIT --> FIRST REKONQ 2 IMPORTAndrea Diamantini2012-12-101-883/+0
| | | | Preparing repo to merge rekonq2 code...
* Make sure to add all MainWindow before a new tab.Yoann Laissus2012-08-161-1/+2
| | | | It fixes some issue for slot which use this list before/during the call of newWebTab (eg: zoomBar)
* * Split updateTabBar() into two separate methodsYoann Laissus2012-08-141-1/+1
| | | | | | | | | | | | | - updateTabBarVisibility(): used to react only on "alwaysShowTabBar" settings - updateAddTabButton(): used to react only on tabbar changes * Improve handling of the add tab button. updateAddTabButton() is now called on any tab layout changed instead of being called in any function which manipulate tabs. * Use a tab height computed with KTabBar instead of the add tab button height with a magical number. It fixes some issues with the Bespin theme. BUG: 304325
* Correctly handle session restoreAndrea Diamantini2012-07-311-75/+78
| | | | | | | | | | The problem here is that the app is considered "session restored" for all its life cycle. Checking it just when launched without arguments and with isFirstLoad = true Should work, im my tests do, needs more testing... CCBUG: 304312
* This should fix local files launch by console when rekonq is just loadedAndrea Diamantini2012-07-261-2/+0
|
* Let user customize shortcut name & description.Giuseppe Calà2012-07-261-3/+4
| | | | | | | | PS: Grazie per il lavoro, Giuseppe ;) CCMAIL: gcala@gmail.com REVIEW: 105708 REVIEWED-BY: adjam
* Fix session restore codeAndrea Diamantini2012-07-091-86/+81
| | | | | | | This let bookmark manager code properly load :) BUG: 296388 BUG: 298051
* Ensure rekonq will close when deleting last window.Andrea Diamantini2012-07-081-0/+4
| | | | BUG: 303149
* Remember to restore all tabs (when needed) also with external argumentsAndrea Diamantini2012-06-201-3/+7
| | | | | | | | calls (eg: open link with rekonq in konqueror) WARNING: Needs testing BUG: 299625
* Minor clean up in App ctorAndrea Diamantini2012-06-131-9/+7
|
* Cleans upAndrea Diamantini2012-06-121-2/+0
| | | | | | - set initial icon to have properly dimensions set - properly calculate needed icon's height - calm down some kDebug messages
* Kitchen sink clean upAndrea Diamantini2012-05-271-5/+5
| | | | | | - astyle - copyrights - (some) includes
* ASSERT_NOT_REACHED macro parameter cannot be empty on MSVC.Andrius da Costa Ribas2012-05-271-1/+1
|
* Application shortcut clean upAndrea Diamantini2012-05-271-2/+5
| | | | | | - no .desktop extension in desktop files - set permissions bits as needed - clean up setting UI
* Fix a regression from previous commitAndrea Diamantini2012-04-251-9/+9
| | | | (crashbar exiting on external calls)
* Do not show "closed tabs" page after crash when directly opening an URLAndrea Diamantini2012-04-241-23/+26
| | | | BUG: 283178
* Clean up headers && fix compilation with (the upcoming) qt 4.8.2Andrea Diamantini2012-04-201-0/+3
|
* Add loadUrl API to mainwindowAndrea Diamantini2012-03-251-84/+14
| | | | | | | | | - Get rid of unused NewBackTab enum - move loading url code to MainWindow class - Remove ThreadWeaver API. (And take it easy...) - Changed logic: calculate url BEFORE creating a tab... REVIEW:104326
* Check if user has a default search engine set and eventuallyAndrea Diamantini2012-03-251-0/+4
| | | | | | show a messagewidget to inform and let him set it. REVIEW:104290
* Safe one bool check :DAndrea Diamantini2012-03-251-1/+1
| | | | Everytime a new window is called externally
* Fix rekonq exit values, returning ZERO on successAndrea Diamantini2012-03-251-2/+4
| | | | BUG:271442
* Include Tab History when Cloning a TabDavid E. Narváez2012-03-081-4/+21
| | | | | | | | | | Implemented through a new loadUrl method that allows for the caller to specify the QWebHistory pointer from where to copy the history. Redirected the original loadUrl slot to use this new method internally. The method returns the WebTab * just in case we need to maninpulate the created tab in the future. REVIEW: 104082
* Krazy fixesAndrea Diamantini2012-02-161-3/+3
| | | | | - doublequote_chars - normalize
* Delay showMessageBar creation to get sure it is created after windowAndrea Diamantini2012-02-151-1/+1
| | | | | | | This should fix Yoann's problem with bar and let us have a little bit clean API in webtab REVIEW:103905
* Get SURE window existsAndrea Diamantini2012-02-091-0/+4
|
* Use UrlResolver in application class to uniform rekonq url resolutionAndrea Diamantini2012-01-291-1/+15
| | | | BUG:290271
* Krazy fixesAndrea Diamantini2012-01-191-2/+2
| | | | | | | - QL1S/QL1C - single-char QString efficiency - explicit ctors - normalized signals & slots
* Implement (User) Session RestoreDavid E. Narváez2012-01-121-1/+10
| | | | | | | | 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
* Finally fix problems with unset backgroundAndrea Diamantini2012-01-041-6/+3
| | | | | | WARNING: This fix works just with qtwebkit 2.2.x!!! BUG: 287782
* Clean up rekonq.kcfgAndrea Diamantini2012-01-021-4/+4
| | | | | | It was really a mess before. I also found 2 settings never used... WARNING: This will cost users to reset some settings. Sorry for that
* Session Management clean upAndrea Diamantini2011-12-281-9/+4
| | | | PS: ignore about urls in the session manager
* icon management fix/improvements/cleanupAndrea Diamantini2011-12-241-4/+4
|
* Tabs opened from outside receive are focusedAndrea Diamantini2011-12-201-2/+2
| | | | BUG: 276273
* Option to open links from external apps in new windowAndrea Diamantini2011-12-121-8/+20
| | | | | | | Initial patch by Pali Rohar. Thanks :D REVIEW: 102330 REVIEWED-BY: adjam
* BookmarkProvider --> BookmarkManagerAndrea Diamantini2011-12-121-10/+10
| | | | | We have 7 managers and 1 provider... finally fixing this strange thing!
* Sync feature, first bitsAndrea Diamantini2011-12-121-0/+18
|
* Fix bk toolbar initializationAndrea Diamantini2011-12-011-1/+1
|
* GCI Task : Don't open useless tabs or windows for actions in the new tab pageYoann Laissus2011-11-281-2/+9
| | | | | Patch by Hüseyin Zengin. Thanks ! REVIEW: 103257
* Moving UA management code to a new UserAgentManagerAndrea Diamantini2011-11-261-0/+18
|
* Properly handle window/app closeAndrea Diamantini2011-11-241-7/+1
| | | | BUG: 286831
* Clean up MainView::webViewUrlChanged() codeFurkan Uzumcu2011-11-201-1/+1
| | | | | REVIEW:102818 REVIEWED-BY: adjam
* Use title instead of URL when adding application shortcutsFurkan Uzumcu2011-11-201-5/+6
| | | | | REVIEW: 103086 REVIEWED-BY: adjam,fritz_van_tom
* Remove postLaunch callsAndrea Diamantini2011-11-141-26/+18
| | | | | | | | | | | | | | This will help a lot in having a clean/easy startup, also a bit less fast. Let's see if this helps stability... PS: To the bug reporter. I pushed a "NoPostLaunch" in rekonq git repo. Can you please try compiling and testing if this fixes your troubles on startup?? Many thanks for any help. Andrea. CCBUG:284356
* Fix BUG:280627 Force QApplication to quit when no more available windowCedric Bellegarde2011-11-101-0/+7
|
* Application Shortcut, last commitAndrea Diamantini2011-11-081-17/+70
| | | | | | Config dialog, settings REVIEW:103010
* Application ShortcutAndrea Diamantini2011-11-081-0/+32
| | | | | | Added an action to manage it in the tools menu, added initial code to manage icons, added kwebapp application
* Fix WebGl settingJohannes Tröscher2011-10-301-0/+4
| | | | REVIEWED-BY: trustMe
* Improve rekonq WebKit settingsAndrea Diamantini2011-10-261-5/+4
| | | | | | | | | | | | This patch changes WebKit Settings window removing the "unuseful" stuffs and adding some news like WebGL or Frame Flattening (probably useful also on netbook). It also redesign/clean up the settings widget Let us require QtWebKit 2.2.x, hence Qt 4.8.0 at least until someone will explain me how I can check QtWebKit version number with cmake... REVIEW:102920