source: terepaima/terepaima-0.4.16/sources/searchitemdelegate.h

desarrollostretch
Last change on this file was 1f4adec, checked in by aosorio <aosorio@…>, 8 years ago

Agregado proyecto base, esto luego del dh_make -f

  • Property mode set to 100644
File size: 1.3 KB
Line 
1/*
2
3Copyright 2015 Adam Reichold
4
5This file is part of qpdfview.
6
7qpdfview is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 2 of the License, or
10(at your option) any later version.
11
12qpdfview is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with qpdfview.  If not, see <http://www.gnu.org/licenses/>.
19
20*/
21
22#ifndef SEARCHITEMDELEGATE_H
23#define SEARCHITEMDELEGATE_H
24
25#include <QStyledItemDelegate>
26
27namespace qpdfview
28{
29
30class SearchItemDelegate : public QStyledItemDelegate
31{
32    Q_OBJECT
33
34public:
35    explicit SearchItemDelegate(QObject* parent = 0);
36
37    void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const;
38
39private:
40    void paintProgress(QPainter* painter, const QStyleOptionViewItem& option,
41                       int progress) const;
42    void paintText(QPainter* painter, const QStyleOptionViewItem& option,
43                   const QString& matchedText, const QString& surroundingText) const;
44
45};
46
47} // qpdfview
48
49#endif // SEARCHITEMDELEGATE_H
Note: See TracBrowser for help on using the repository browser.