blob: 4e69fa6f63502f6f2dd5e18ed7ff710354e37c26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifndef FINDWIDGET_H
#define FINDWIDGET_H
#include "editorpage.h"
#include <QWidget>
/**
* @brief Class for handling the find widget shown at buttom of a textedit-page
*/
class FindWidget : public QWidget
{
Q_OBJECT
public:
/**
* @brief
*
* @param parent The parent widget
*/
explicit FindWidget(QWidget *parent, QTextEdit *edit);
private:
void keyPressEvent( QKeyEvent* e );
/**
* @details Set background of findEdit to red, if no match is found (Documents textcursor position equals -1),
* otherwise set it to white.
*/
void setBackground();
QTextEdit *mTextpage; /** Textedit associated to the notification */
QLineEdit *findEdit; /** Label holding the text shown in verifyNotification */
QTextCharFormat cursorFormat;
private slots:
void slotFindNext();
void slotFindPrevious();
void slotFind();
void slotClose();
};
#endif // FINDWIDGET_H
|