Tome
A generic data editor for games supporting arbitrary input and output formats.
findrecordwindow.h
1 #ifndef FINDRECORDWINDOW_H
2 #define FINDRECORDWINDOW_H
3 
4 #include <QDialog>
5 
6 namespace Ui {
7  class FindRecordWindow;
8 }
9 
13 class FindRecordWindow : public QDialog
14 {
15  Q_OBJECT
16 
17  public:
22  explicit FindRecordWindow(QWidget *parent = 0);
24 
29  QString getSearchPattern() const;
30 
31  private:
32  Ui::FindRecordWindow *ui;
33 };
34 
35 #endif // FINDRECORDWINDOW_H
Definition: mainwindow.h:25
Window for finding specific records.
Definition: findrecordwindow.h:13