mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
19 lines
441 B
C++
19 lines
441 B
C++
#pragma once
|
|
|
|
#include <cstdint>
|
|
#include "Control.h"
|
|
#include "ListBase.h"
|
|
#include "StringBase.h"
|
|
#include "DialogResult.h"
|
|
|
|
namespace Forms
|
|
{
|
|
// Handles a dialog prompt that asks for a file to save
|
|
class SaveFileDialog
|
|
{
|
|
public:
|
|
// Opens the dialog and allows the user to save one file
|
|
static string ShowFileDialog(const string& Title, const string& BasePath = "", const string& Filter = " |*.*", Control* Owner = nullptr);
|
|
};
|
|
}
|