File: searchwidget.h

package info (click to toggle)
apitrace 11.1%2Brepack-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 13,648 kB
  • sloc: cpp: 183,110; python: 33,685; ansic: 25,073; sh: 143; makefile: 88
file content (36 lines) | stat: -rw-r--r-- 856 bytes parent folder | download | duplicates (4)
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
#pragma once

#include "ui_searchwidget.h"
#include <QPalette>
#include <QWidget>

class QShowEvent;

class SearchWidget : public QWidget
{
    Q_OBJECT
public:
    SearchWidget(QWidget *parent=0);

    void setFound(bool f);
    void show();
signals:
    void searchNext(const QString &str, Qt::CaseSensitivity cs = Qt::CaseInsensitive, bool useRegex=false);
    void searchPrev(const QString &str, Qt::CaseSensitivity cs = Qt::CaseInsensitive, bool useRegex=false);

private slots:
    void slotSearchNext();
    void slotSearchPrev();
    void slotCancel();

protected:
    virtual bool eventFilter(QObject *object, QEvent* event) override;
    virtual void showEvent(QShowEvent *event) override;

private:
    Qt::CaseSensitivity caseSensitivity() const;
    bool regexEnabled() const;
private:
    Ui_SearchWidget m_ui;
    QPalette m_origPalette;
};