mirror of https://github.com/bsnes-emu/bsnes.git
21 lines
314 B
C++
21 lines
314 B
C++
|
class FileChooser : public QWidget {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
lstring list;
|
||
|
string name;
|
||
|
string exec();
|
||
|
|
||
|
FileChooser();
|
||
|
|
||
|
private slots:
|
||
|
void load();
|
||
|
|
||
|
private:
|
||
|
QVBoxLayout *layout;
|
||
|
QListWidget *listWidget;
|
||
|
QHBoxLayout *controlLayout;
|
||
|
QPushButton *okButton;
|
||
|
QPushButton *cancelButton;
|
||
|
} *fileChooser;
|