Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | cppcheck round... | Andrea Diamantini | 2011-02-25 | 1 | -4/+0 |
| | |||||
* | Coding style | Andrea Diamantini | 2011-02-25 | 1 | -6/+6 |
| | |||||
* | Finally found time to update copyrights... ;) | Andrea Diamantini | 2011-02-24 | 1 | -2/+2 |
| | |||||
* | Print && Find actions for the parts :) | Andrea Diamantini | 2010-11-19 | 1 | -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 commit | Jon Ander Peñalba | 2010-09-03 | 1 | -0/+1 |
| | |||||
* | Include clean-up in the big src directory | Jon Ander Peñalba | 2010-09-03 | 1 | -10/+8 |
| | |||||
* | - Follow pano's suggestion : Shift + Enter -> findPrevious() | Yoann Laissus | 2010-09-02 | 1 | -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 FindBar | Benjamin Poulain | 2010-08-22 | 1 | -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 Poulain | 2010-08-22 | 1 | -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 robust | Benjamin Poulain | 2010-08-22 | 1 | -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 Diamantini | 2010-08-14 | 1 | -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 shot | Benjamin Poulain | 2010-08-11 | 1 | -0/+1 |
| | | | | We don't need a timeout every minute after the bar has been hidden. | ||||
* | - Checkable action for the zoom and find bars | Yoann Laissus | 2010-08-10 | 1 | -0/+13 |
| | |||||
* | inlined some of the most used get functions | Andrea Diamantini | 2010-05-21 | 1 | -6/+0 |
| | | | | to speed up a bit | ||||
* | Memory leaks fixes | Andrea Diamantini | 2010-05-04 | 1 | -0/+4 |
| | | | | first bunch | ||||
* | A coding style round | Andrea Diamantini | 2010-04-30 | 1 | -10/+10 |
| | |||||
* | Remove trailing space | Yoann Laissus | 2010-04-09 | 1 | -1/+1 |
| | |||||
* | Focus again the line edit of the find bar when Ctrl + F is pressed and the ↵ | Yoann Laissus | 2010-04-08 | 1 | -8/+7 |
| | | | | | | find bar is already shown. Fix bug 233706 | ||||
* | Fix capitalisation of "Highlight All" | Yoann Laissus | 2010-03-15 | 1 | -1/+1 |
| | |||||
* | Implement the highlight all feature for the find bar (enabled by default) | Yoann Laissus | 2010-03-15 | 1 | -6/+20 |
| | |||||
* | Fix compile :/ | Andrea Diamantini | 2010-03-03 | 1 | -1/+1 |
| | |||||
* | * Added continue search by <Enter> key (similar to Firefox, enter the | Darjus Loktevic | 2010-03-02 | 1 | -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 parent | Andrea Diamantini | 2010-02-28 | 1 | -7/+12 |
| | |||||
* | Clean and optimize the findBar code. | Yoann Laissus | 2010-02-21 | 1 | -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 Laissus | 2010-02-19 | 1 | -1/+1 |
| | | | | matchCase is toggled | ||||
* | The text is now instantly checked when the checkbox match case is toggled | Yoann Laissus | 2010-02-19 | 1 | -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 Laissus | 2010-02-19 | 1 | -0/+6 |
| | | | | doesn't clear the selection. | ||||
* | Fix copyright for 0.4 beta release | Andrea Diamantini | 2010-02-10 | 1 | -2/+2 |
| | |||||
* | FIx focus on browsing (FIRST STEP) and on findbar hiding | Andrea Diamantini | 2010-02-06 | 1 | -6/+9 |
| | |||||
* | Hide findBar after one minute | megabigbug | 2009-12-06 | 1 | -3/+9 |
| | |||||
* | (BIG commit) API change | Andrea Diamantini | 2009-11-10 | 1 | -3/+3 |
| | | | | | I fixed rekonq API removing all slotName call switching to a proper getter call (so, name() functions) | ||||
* | Removed an unnecessary white space | Panagiotis Papadopoulos | 2009-09-30 | 1 | -1/+1 |
| | |||||
* | Removed MenuBar. First steps.. | Andrea Diamantini | 2009-08-22 | 1 | -2/+2 |
| | |||||
* | Fixing Licensing issue | Andrea Diamantini | 2009-08-05 | 1 | -6/+13 |
| | |||||
* | Fix Include | Andrea Diamantini | 2009-08-05 | 1 | -1/+0 |
| | | | | Imported commit from KDE svn. Thanks to mlaurent for this.. | ||||
* | Fixing codestyle and changing a bit red color | Andrea Diamantini | 2009-07-25 | 1 | -8/+10 |
| | |||||
* | Remove notification for search text | megabigbug | 2009-07-25 | 1 | -0/+24 |
| | | | | Notify matching by changing the background color of the text field | ||||
* | Fixing findbar focus on find request. | Andrea Diamantini | 2009-07-23 | 1 | -4/+4 |
| | | | | | Also hiding it with ESC key when it has no focus. Courtesy patch from Johannes Zellner. Many Thanks! | ||||
* | Fixing GPL3 header files | Andrea Diamantini | 2009-06-07 | 1 | -1/+1 |
| | |||||
* | Using my own FindBar, for now.. | Andrea Diamantini | 2009-05-28 | 1 | -5/+6 |
| | |||||
* | Fixing forgotten merging issues.. | adjam | 2009-05-06 | 1 | -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 master | adjam | 2009-05-06 | 1 | -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 Diamantini | 2009-05-06 | 1 | -2/+7 |
| | | |||||
| * | astyle | Andrea Diamantini | 2009-04-29 | 1 | -1/+1 |
| | | |||||
| * | Including moc files && lineedit class Q_OBJECT fix | Andrea Diamantini | 2009-04-26 | 1 | -1/+0 |
| | | |||||
| * | Fixing Copyrights | Andrea Diamantini | 2009-04-22 | 1 | -1/+2 |
| | | |||||
| * | Refactoring find bar following (a bit) Pawel suggestions.. | Andrea Diamantini | 2009-04-09 | 1 | -11/+23 |
| | | | | | | | | Applied match Case search | ||||
| * | astyle. First round.. | Andrea Diamantini | 2009-03-28 | 1 | -16/+16 |
| | | |||||
| * | Fixed Copyright intro | Andrea Diamantini | 2009-03-22 | 1 | -17/+18 |
| | | |||||
| * | Definitely fixed FindBar (orat least, I hope so) | Andrea Diamantini | 2009-01-29 | 1 | -1/+0 |
| | | | | | | | | Add some comments |