Allow multiple file selection with nana::filebox on Windows platform

This commit is contained in:
Katsuhisa Yuasa
2018-10-28 21:20:19 +09:00
parent 852aa698ed
commit b8719f74a8
2 changed files with 81 additions and 12 deletions

View File

@@ -68,8 +68,12 @@ namespace nana
};
::std::string path() const;
::std::string file() const;
const ::std::string& path() const;
const ::std::string& file() const;
#if defined(NANA_WINDOWS)
const ::std::vector<::std::string>& files() const;
void allow_multi_select(bool allow);
#endif
/// Display the filebox dialog
bool show() const;