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

« back to all changes in this revision

Viewing changes to documentation/documentationfindwidget.h

  • 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
#ifndef DOCUMENTATIONFINDWIDGET_H
 
22
#define DOCUMENTATIONFINDWIDGET_H
 
23
 
 
24
#include <QWidget>
 
25
#include "documentationexport.h"
 
26
 
 
27
namespace Ui { class FindWidget; }
 
28
namespace KDevelop
 
29
{
 
30
    
 
31
class KDEVPLATFORMDOCUMENTATION_EXPORT DocumentationFindWidget : public QWidget
 
32
{
 
33
    Q_OBJECT
 
34
    public:
 
35
        enum FindOption {
 
36
            Next = 1,
 
37
            Previous = 2,
 
38
            MatchCase = 4
 
39
        };
 
40
        Q_DECLARE_FLAGS(FindOptions, FindOption);
 
41
        
 
42
        explicit DocumentationFindWidget(QWidget* parent = 0);
 
43
        virtual ~DocumentationFindWidget();
 
44
        
 
45
        virtual void showEvent ( QShowEvent* );
 
46
        
 
47
    private Q_SLOTS:
 
48
        void searchNext();
 
49
        void searchPrevious();
 
50
        
 
51
    Q_SIGNALS:
 
52
        void newSearch(const QString& text, KDevelop::DocumentationFindWidget::FindOptions);
 
53
 
 
54
    private:
 
55
        Ui::FindWidget* m_ui;
 
56
};
 
57
 
 
58
}
 
59
 
 
60
#endif // DOCUMENTATIONFINDWIDGET_H