File: recordsetupdlg.h

package info (click to toggle)
cutesdr 1.20-4
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 2,848 kB
  • sloc: cpp: 18,902; makefile: 21; sh: 5
file content (30 lines) | stat: -rw-r--r-- 494 bytes parent folder | download | duplicates (2)
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
#ifndef RECORDSETUPDLG_H
#define RECORDSETUPDLG_H

#include <QDialog>

namespace Ui {
class CRecordSetupDlg;
}

class CRecordSetupDlg : public QDialog
{
	Q_OBJECT

public:
	explicit CRecordSetupDlg(QWidget *parent = 0);
	~CRecordSetupDlg();
	void Init();
	qint32 m_RecordMode;
	QString m_RecordFilePath;

protected:
	void done(int r);	//virtual override

private slots:
	void OnSelectFileButton();
private:
	Ui::CRecordSetupDlg *ui;
};

#endif // RECORDSETUPDLG_H