vmprotect-3.5.1/VMProtect/folder_dialog.h

19 lines
361 B
C
Raw Normal View History

2023-12-07 00:51:07 -08:00
#ifndef FOLDER_DIALOG_H
#define FOLDER_DIALOG_H
#include <QtGui/QDialog>
#include <QtGui/QtGui>
class FolderDialog : public QDialog
{
Q_OBJECT
public:
FolderDialog(QWidget *parent = NULL);
QString nameText() const { return nameEdit->text(); }
void setNameText(const QString &text) { nameEdit->setText(text); }
private:
QLineEdit *nameEdit;
};
#endif