1
0
Fork 0
flightgear/src/GUI/WindowsFileDialog.hxx
James Turner 1b585fa415 Windows native file-dialog, menu-bar
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.
2014-01-20 18:43:02 +00:00

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