From b36dc4d79f446ae69aeb85137663a4e0ca23eba2 Mon Sep 17 00:00:00 2001 From: Nils Achtergarde Date: Thu, 4 Jan 2018 22:39:25 +0100 Subject: put *.h and *.cpp to src-subdirectory --- findwidget.h | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 findwidget.h (limited to 'findwidget.h') diff --git a/findwidget.h b/findwidget.h deleted file mode 100644 index 4e69fa6..0000000 --- a/findwidget.h +++ /dev/null @@ -1,42 +0,0 @@ - -#ifndef FINDWIDGET_H -#define FINDWIDGET_H - -#include "editorpage.h" - -#include - -/** - * @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 -- cgit v1.2.3