summaryrefslogtreecommitdiff
path: root/src/findbar.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Clean up headers && fix compilation with (the upcoming) qt 4.8.2Andrea Diamantini2012-04-201-6/+6
|
* Krazy fixesAndrea Diamantini2012-01-191-2/+2
| | | | | | | - QL1S/QL1C - single-char QString efficiency - explicit ctors - normalized signals & slots
* clean upAndrea Diamantini2011-07-251-9/+9
| | | | | | - QL1S - one stupid kDebug less - codingstyle
* A round of the "new" astyle 2.01...Andrea Diamantini2011-07-171-15/+15
|
* Better color integration for the urlbar and the findbarFelix Rohrbach2011-03-211-3/+5
| | | | BUG:256535
* Clean up all d-tors to fix an eventual crash on exitAndrea Diamantini2011-02-281-5/+0
|
* cppcheck round...Andrea Diamantini2011-02-251-4/+0
|
* Coding styleAndrea Diamantini2011-02-251-6/+6
|
* Finally found time to update copyrights... ;)Andrea Diamantini2011-02-241-2/+2
|
* Print && Find actions for the parts :)Andrea Diamantini2010-11-191-0/+9
| | | | | - handle print & find with different signals in mainwindow - show right tab title (moving titleChanged signal from view to tab)
* Include all .moc files removed in the previous commitJon Ander Peñalba2010-09-031-0/+1
|
* Include clean-up in the big src directoryJon Ander Peñalba2010-09-031-10/+8
|
* - Follow pano's suggestion : Shift + Enter -> findPrevious()Yoann Laissus2010-09-021-15/+39
| | | | | | - Don't call findNext() if Ctrl + F is pressed with an existing selection - Correctly update highlights with the timer - A little cleanup
* Use the selected text as the default search string of the FindBarBenjamin Poulain2010-08-221-5/+9
| | | | | | | The common behavior of the Find action is to start a search with the current selected text if any. This patch implement this behavior for Rekonq.
* Change the Find action to show() instead of toggle()Benjamin Poulain2010-08-221-5/+0
| | | | | | | The find actions generally show a find bar, and is not a toggle action. A general pattern of use is to press "/" or Ctrl+F to show the find bar with the currently selected text, and press escape to hide the bar.
* Make the FindBar a bit more robustBenjamin Poulain2010-08-221-23/+15
| | | | | | | | The FindBar was slots show() and hide() instead of the virtual method QWidget::setVisible(). This can lead to subtle bugs, because the behavior is different depending on the type of call (signal-slot connection VS direct call on a pointer to QWidget) and the function called (hide() is != than setVisible(false)).
* Fixed focus regression.Andrea Diamantini2010-08-141-8/+3
| | | | | | As show slot calls setVisible(true) in QWidget code, we cannot override show() AND setVisible(bool). The best thing is IMHO inheriting show() && hide() slots
* Set the hide timer of FindBar to single shotBenjamin Poulain2010-08-111-0/+1
| | | | We don't need a timeout every minute after the bar has been hidden.
* - Checkable action for the zoom and find barsYoann Laissus2010-08-101-0/+13
|
* inlined some of the most used get functionsAndrea Diamantini2010-05-211-6/+0
| | | | to speed up a bit
* Memory leaks fixesAndrea Diamantini2010-05-041-0/+4
| | | | first bunch
* A coding style roundAndrea Diamantini2010-04-301-10/+10
|
* Remove trailing spaceYoann Laissus2010-04-091-1/+1
|
* Focus again the line edit of the find bar when Ctrl + F is pressed and the ↵Yoann Laissus2010-04-081-8/+7
| | | | | | find bar is already shown. Fix bug 233706
* Fix capitalisation of "Highlight All"Yoann Laissus2010-03-151-1/+1
|
* Implement the highlight all feature for the find bar (enabled by default)Yoann Laissus2010-03-151-6/+20
|
* Fix compile :/Andrea Diamantini2010-03-031-1/+1
|
* * Added continue search by <Enter> key (similar to Firefox, enter theDarjus Loktevic2010-03-021-0/+1
| | | | | | | | | | search term and press <Enter> for next result). * Removed focusNextPrevChild if the search fails as it does not seem to make sense. It's the same as you would press <Tab> to focus the next item on the page. Why "Search" should do that? Some context: found that when searching some websites, when the match is not found, the page would suddenly scroll to some location and focus a link or search edit. Hope this makes sense.
* Changing Findbar parentAndrea Diamantini2010-02-281-7/+12
|
* Clean and optimize the findBar code.Yoann Laissus2010-02-211-29/+7
| | | | | Use the searchString signal. Fix the selection of the lineEdit text when the findBar is reopen.
* Get rid of the selection of the next found expression when the checkbox ↵Yoann Laissus2010-02-191-1/+1
| | | | matchCase is toggled
* The text is now instantly checked when the checkbox match case is toggledYoann Laissus2010-02-191-2/+3
| | | | Fix the selected text when the findBar is closed and open
* Workaround the bug of qtwebkit in the function findText(). An empty string ↵Yoann Laissus2010-02-191-0/+6
| | | | doesn't clear the selection.
* Fix copyright for 0.4 beta releaseAndrea Diamantini2010-02-101-2/+2
|
* FIx focus on browsing (FIRST STEP) and on findbar hidingAndrea Diamantini2010-02-061-6/+9
|
* Hide findBar after one minutemegabigbug2009-12-061-3/+9
|
* (BIG commit) API changeAndrea Diamantini2009-11-101-3/+3
| | | | | I fixed rekonq API removing all slotName call switching to a proper getter call (so, name() functions)
* Removed an unnecessary white spacePanagiotis Papadopoulos2009-09-301-1/+1
|
* Removed MenuBar. First steps..Andrea Diamantini2009-08-221-2/+2
|
* Fixing Licensing issueAndrea Diamantini2009-08-051-6/+13
|
* Fix IncludeAndrea Diamantini2009-08-051-1/+0
| | | | Imported commit from KDE svn. Thanks to mlaurent for this..
* Fixing codestyle and changing a bit red colorAndrea Diamantini2009-07-251-8/+10
|
* Remove notification for search textmegabigbug2009-07-251-0/+24
| | | | Notify matching by changing the background color of the text field
* Fixing findbar focus on find request.Andrea Diamantini2009-07-231-4/+4
| | | | | Also hiding it with ESC key when it has no focus. Courtesy patch from Johannes Zellner. Many Thanks!
* Fixing GPL3 header filesAndrea Diamantini2009-06-071-1/+1
|
* Using my own FindBar, for now..Andrea Diamantini2009-05-281-5/+6
|
* Fixing forgotten merging issues..adjam2009-05-061-0/+1
| | | | git-svn-id: svn+ssh://svn.kde.org/home/kde/trunk/playground/network/rekonq@964617 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
* Fixing conflicts merging masteradjam2009-05-061-1/+6
|\ | | | | | | git-svn-id: svn+ssh://svn.kde.org/home/kde/trunk/playground/network/rekonq@964593 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
| * EBN Krazy fixes. 1st round..Andrea Diamantini2009-05-061-2/+7
| |
| * astyleAndrea Diamantini2009-04-291-1/+1
| |