Coherent UI  2.5.3
A modern user interface library for games
 All Classes Namespaces Functions Variables Enumerations Enumerator Pages
Coherent::UI::FileSelectionParams Struct Reference

Parameters for file selection request. More...

#include <Coherent/UI/FileSelectRequest.h>

Public Attributes

FileSelectionMode Mode
 The file selection mode - it determines whether multiple files or folders can be selected.
 
const wchar_t * DialogTitle
 Title for the dialog.
 
const wchar_t * DefaultFileName
 Default file name to select in the dialog.
 
unsigned int AcceptedMIMETypesCount
 The count of items in the AcceptedMIMETypes array.
 
const wchar_t ** AcceptedMIMETypes
 Accepted MIME types. More...
 

Detailed Description

Parameters for file selection request.

Member Data Documentation

const wchar_t** Coherent::UI::FileSelectionParams::AcceptedMIMETypes

Accepted MIME types.

Every item in this array is a wide char string with the following format: "mimeTypeName:extension1;extension2;...;extensionN;" where extension1, extension2 and etc. are the allowed extensions for the MIME type pointed by mimeTypeName.