bgfx/examples/common/entry/dialog.h
Бранимир Караџић 466c6a4e95 Happy New Year!
2023-01-14 10:05:12 -08:00

34 lines
602 B
C++

/*
* Copyright 2010-2023 Branimir Karadzic. All rights reserved.
* License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef DIALOG_H_HEADER_GUARD
#define DIALOG_H_HEADER_GUARD
namespace bx { class FilePath; class StringView; }
struct FileSelectionDialogType
{
enum Enum
{
Open,
Save,
Count
};
};
///
bool openFileSelectionDialog(
bx::FilePath& _inOutFilePath
, FileSelectionDialogType::Enum _type
, const bx::StringView& _title
, const bx::StringView& _filter = "All Files | *"
);
///
void openUrl(const bx::StringView& _url);
#endif // DIALOG_H_HEADER_GUARD