1b585fa415
By Gijs with additions by James. Menubar is disabled at present since it's not usable and potentially inferior to other solutions, but committing the code so it doesn't rot.
22 lines
439 B
C++
22 lines
439 B
C++
// WindowsFileDialog.hxx - file dialog implemented using Windows
|
|
|
|
#ifndef FG_WINDOWS_FILE_DIALOG_HXX
|
|
#define FG_WINDOWS_FILE_DIALOG_HXX 1
|
|
|
|
#include <GUI/FileDialog.hxx>
|
|
|
|
class WindowsFileDialog : public FGFileDialog
|
|
{
|
|
public:
|
|
WindowsFileDialog(FGFileDialog::Usage use);
|
|
|
|
virtual ~WindowsFileDialog();
|
|
|
|
virtual void exec();
|
|
virtual void close();
|
|
private:
|
|
void chooseDir();
|
|
|
|
};
|
|
|
|
#endif // FG_WINDOWS_FILE_DIALOG_HXX
|