~ubuntu-branches/ubuntu/quantal/kdevplatform/quantal-proposed

« back to all changes in this revision

Viewing changes to documentation/standarddocumentationview.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-24 00:06:18 UTC
  • mfrom: (0.3.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20101024000618-7otebin77mfcmt3b
Tags: 1.1.0-0ubuntu1
* New upstream release
  - Bump build-dependencies
  - Build against libboost-serialization1.42-dev
  - Update kdevplatform1-libs.install
  - Update kdevplatform-dev.install

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * This file is part of KDevelop
 
3
 * Copyright 2010 Aleix Pol Gonzalez <aleixpol@kde.org>
 
4
 *
 
5
 * This program is free software; you can redistribute it and/or modify
 
6
 * it under the terms of the GNU Library General Public License as
 
7
 * published by the Free Software Foundation; either version 2 of the
 
8
 * License, or (at your option) any later version.
 
9
 *
 
10
 * This program is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public
 
16
 * License along with this program; if not, write to the
 
17
 * Free Software Foundation, Inc.,
 
18
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
19
 */
 
20
 
 
21
#include "standarddocumentationview.h"
 
22
#include "documentationfindwidget.h"
 
23
#include <QDebug>
 
24
 
 
25
using namespace KDevelop;
 
26
 
 
27
StandardDocumentationView::StandardDocumentationView(DocumentationFindWidget* findWidget, QWidget* parent)
 
28
    : QWebView (parent)
 
29
{
 
30
    findWidget->setEnabled(true);
 
31
    connect(findWidget, SIGNAL(newSearch(QString,KDevelop::DocumentationFindWidget::FindOptions)), SLOT(search(QString,KDevelop::DocumentationFindWidget::FindOptions)));
 
32
}
 
33
 
 
34
void StandardDocumentationView::search ( const QString& text, DocumentationFindWidget::FindOptions options )
 
35
{
 
36
    //Highlighting has been commented because it doesn't let me jump arround all occurrences
 
37
//     page()->findText(QString(), QWebPage::HighlightAllOccurrences);
 
38
    
 
39
    QWebPage::FindFlags ff=QWebPage::FindWrapsAroundDocument /*| QWebPage::HighlightAllOccurrences*/;
 
40
    if(options & DocumentationFindWidget::Previous)
 
41
        ff |= QWebPage::FindBackward;
 
42
    
 
43
    if(options & DocumentationFindWidget::MatchCase)
 
44
        ff |= QWebPage::FindCaseSensitively;
 
45
    
 
46
    page()->findText(text, ff);
 
47
}
 
48
 
 
49