2025-11-26 17:01:08 +00:00
|
|
|
/*!
|
|
|
|
|
* @file Mw/Dialog/DirectoryChooser.h
|
|
|
|
|
* @brief Directory chooser
|
|
|
|
|
*/
|
|
|
|
|
#ifndef __MW_DIRECTORYCHOOSER_H__
|
|
|
|
|
#define __MW_DIRECTORYCHOOSER_H__
|
|
|
|
|
|
|
|
|
|
#include <Mw/MachDep.h>
|
|
|
|
|
#include <Mw/TypeDefs.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*!
|
|
|
|
|
* @brief Creates a directory chooser
|
|
|
|
|
* @param handle Widget
|
|
|
|
|
* @param title Title text
|
|
|
|
|
* @return Widget
|
|
|
|
|
*/
|
2026-04-22 12:05:49 +09:00
|
|
|
MWDECL MwWidget MWAPI MwDirectoryChooser(MwWidget handle, const char* title);
|
2025-11-26 17:01:08 +00:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|