mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-02 14:50:05 +01:00
36 lines
698 B
C++
36 lines
698 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include <QTextEdit>
|
|
#include <QLineEdit>
|
|
#include <QPushButton>
|
|
#include <QLabel>
|
|
|
|
class find_dialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
find_dialog(QTextEdit* edit, QWidget *parent = Q_NULLPTR, Qt::WindowFlags f = Qt::WindowFlags());
|
|
|
|
private:
|
|
int m_count_lines = 0;
|
|
int m_count_total = 0;
|
|
QLabel* m_label_count_lines;
|
|
QLabel* m_label_count_total;
|
|
QTextEdit* m_text_edit;
|
|
QLineEdit* m_find_bar;
|
|
QPushButton* m_find_first;
|
|
QPushButton* m_find_last;
|
|
QPushButton* m_find_next;
|
|
QPushButton* m_find_previous;
|
|
|
|
private Q_SLOTS:
|
|
int count_all();
|
|
void find_first();
|
|
void find_last();
|
|
void find_next();
|
|
void find_previous();
|
|
void show_count() const;
|
|
};
|