summaryrefslogtreecommitdiff
path: root/src/bookmarks
Commit message (Collapse)AuthorAgeFilesLines
* Change Bookmark MIME Type and CentralizeDavid E. Narváez2012-03-193-9/+14
| | | | | | | | As discussed in the mailing list, this changes the MIME type to x-rekonq-bookmark and centralizes all references to that MIME type in one static method. REVIEW: 104197
* Get sure mainbar is restored on restart after fullscreen closeAndrea Diamantini2012-02-211-2/+6
| | | | Also take care about updating actions panels state
* Krazy fixesAndrea Diamantini2012-02-163-5/+5
| | | | | - doublequote_chars - normalize
* Krazy fixesAndrea Diamantini2012-01-1910-29/+29
| | | | | | | - QL1S/QL1C - single-char QString efficiency - explicit ctors - normalized signals & slots
* Rebase fixAndrea Diamantini2011-12-121-1/+1
|
* On the road to the sync feature...Andrea Diamantini2011-12-122-0/+6
|
* BookmarkProvider --> BookmarkManagerAndrea Diamantini2011-12-127-65/+104
| | | | | We have 7 managers and 1 provider... finally fixing this strange thing!
* let history, bookmarks and passwords sync on change (first bits)Andrea Diamantini2011-12-122-3/+7
|
* Unifies macro styleJohannes Troscher2011-11-273-6/+6
| | | | | REVIEW: 103242 REVIEWED-BY: adjam
* GCI Task: Middle Click a Bookmark Folder to Open Folder in New TabsYoann Laissus2011-11-261-8/+16
| | | | | | | Made by Hüseyin Zengin, GCI student. Thanks ! REVIEW: 103206 REVIEWED-BY: me
* Fix my previous commitYoann Laissus2011-10-191-1/+1
|
* Disable bookmark dragging with middle click in the bookmark toolbar.Yoann Laissus2011-10-171-1/+3
| | | | It's now easier to open bookmark in new tab with a quick mid click
* Fix the checked state of a toolbar's bookmark folder which is dropped on itself.Yoann Laissus2011-10-101-0/+6
|
* Remove "Ad Bk" and "New Bk Folder" actions from the bk folders menuFurkan Uzumcu2011-08-271-4/+0
| | | | | | | They take up too many space and they aren't really necessary there. REVIEW: 102397 REVIEWED-BY: adjam
* Introducing ASSERT_NOT_REACHEDPierre Rossi2011-07-281-0/+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
* clean upAndrea Diamantini2011-07-256-159/+159
| | | | | | - QL1S - one stupid kDebug less - codingstyle
* Calm down kDebug messagesAndrea Diamantini2011-07-193-5/+2
|
* A round of the "new" astyle 2.01...Andrea Diamantini2011-07-176-372/+372
|
* Don't close Bookmark Toolbar's subfolders on a clickYoann Laissus2011-06-091-6/+5
| | | | BUG: 275155
* - Bookmark can now be dropped inside folders :Yoann Laissus2011-06-042-24/+92
| | | | - Correctly hide a folder menu if there is a click outside
* Merge branch 'rekonqKonquerorBkConflict'Yoann Laissus2011-05-182-23/+41
|\
| * - Fix bookmark conflict between Rekonq and KonquerorYoann Laissus2011-05-152-23/+41
| | | | | | | | | | - New way to copy rekonq default bookmarks so no problem with konqueror anymore BUG: 273134
* | Add "comment" bookmark field in the bookmark panelYoann Laissus2011-05-151-0/+7
| |
* | Null action for root bk folder in the barYoann Laissus2011-05-153-9/+19
|/
* - A new option to set/unset the current bookmark bar folder in the context menuAndrea Diamantini2011-04-284-40/+102
| | | | | | | - Fix drag and drop with a custom folder - Fix a regression which affects BK bar drag and drop (5a53d2bf91dd) Patch by Yoann Laissus, reviewed by me :)
* Add bookmarks by dropping inside the bk toolbar.Andrea Diamantini2011-04-081-18/+59
| | | | | | | | | | This patch, based on Furkan's work on this, is quite different from the original for the following reasons: first, the "need" to not modify a lot actual code in the urlbar (disabling dragging and reenabling by code. What are the implications? Who really knows this?) Second, the problem of showing "as urls" (showing their icon) TEXT mimeData: not a good choice, IMHO. Actual code is cleaner and works with every drop inside the bk toolbar (In case of text, checking if the derivated url is valid)
* Untrack the bookmarks menu list and set a parent to automagicallyAndrea Diamantini2011-03-272-10/+8
| | | | | | delete it as object child CCBUG:269490
* Check if mainWindow and currentab really exist before using in ↵Andrea Diamantini2011-03-191-2/+2
| | | | | | | | bookmarksprovider. In fact now this is NOT automagically ensured there (as in any non widget rekonq class) BUG:268838
* Clean up all d-tors to fix an eventual crash on exitAndrea Diamantini2011-02-285-10/+1
|
* cppcheck round...Andrea Diamantini2011-02-251-0/+2
|
* Coding styleAndrea Diamantini2011-02-259-49/+67
|
* Finally found time to update copyrights... ;)Andrea Diamantini2011-02-2410-10/+10
|
* No more static members in the Application class,Pierre Rossi2011-02-245-37/+37
| | | | | | | an rApp shortcut for Application::instance, clean up code switching to use the new shortcut Reviewed by: adjam
* Calm down kDebug messagesAndrea Diamantini2011-02-161-12/+0
|
* Fix issues as pointed out by KrazyRohan Garg2011-01-131-1/+1
| | | | | | * Fix spelling issues * Wrap Strings in QL1S * Use Q_OBJECT macro in a class that derives from QObject
* Automatically refreshing bookmarks when editing them.Furkan Uzumcu2011-01-111-0/+6
| | | | | | Suboptimal solution. We probably need bk management model/view based to improve. Reviewed by adjam :)
* "Open folder in Tabs" featureFurkan Uzumcu2011-01-102-3/+4
| | | | Reviewed by: Benjamin Poulain
* - Bookmark folders can now be dragged and dropped in the toolbar.Yoann Laissus2010-12-202-23/+40
| | | | | | | | - Drop a bookmark folder in the WebView no longer crash rekonq but open this folder in new tabs - Fix some crash when a single bookmark is dropped in the WebView (incorrect URL) - Port the drag icon to IconManager CCBUG: 226479
* Don't change the BK folder in the BK bar when the mouse is under the current ↵Yoann2010-12-091-1/+1
| | | | | | menu BUG: 259244
* Bug when a bookmark contains a '&' fixed in some casesJon Ander Peñalba2010-11-073-7/+6
|
* Variable renamedJon Ander Peñalba2010-11-072-3/+3
|
* BookmarksContextMenu's destructor moved to the header fileJon Ander Peñalba2010-11-072-6/+1
|
* BookmarksPanel API improvedJon Ander Peñalba2010-11-073-52/+36
|
* Function renamedJon Ander Peñalba2010-11-074-25/+25
|
* BookmarkOwner clean-up and minor bug fixedJon Ander Peñalba2010-11-072-76/+38
|
* Fix forward declarationMontel Laurent2010-11-031-2/+0
|
* Merge branch 'bkmenuleak'Andrea Diamantini2010-10-134-6/+15
|\
| * Fix mem leak, due to kbookmarkmenu class.Andrea Diamantini2010-10-134-6/+15
| | | | | | | | Please, see http://svn.reviewboard.kde.org/r/5606/ about.
* | - get rid of the selected bookmark in BookmarkOwnerYoann Laissus2010-10-134-154/+166
|/ | | | | | we can now create actions as we want and not only in a context menu - an important cleanup - validOpenUrl() is now useless
* - Bookmarklet supportYoann Laissus2010-09-152-26/+33
| | | | | | | | - text/uri-list drops in the BK toolbar - Don't allow other drag than bookmarks in the BK panel (for the moment) - A little cleanup BUG: 250623