2025-10-16 17:41:42 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
/*!
|
2025-11-03 21:48:25 +00:00
|
|
|
* @file Mw/Dialog/FileChooser.h
|
2025-10-28 20:40:26 +00:00
|
|
|
* @brief File chooser
|
2025-10-16 18:45:45 +00:00
|
|
|
*/
|
2025-10-16 17:41:42 +00:00
|
|
|
#ifndef __MW_FILECHOOSER_H__
|
|
|
|
|
#define __MW_FILECHOOSER_H__
|
|
|
|
|
|
|
|
|
|
#include <Mw/MachDep.h>
|
|
|
|
|
#include <Mw/TypeDefs.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2025-11-02 21:03:50 +00:00
|
|
|
/*!
|
|
|
|
|
* @brief Creates a file chooser
|
|
|
|
|
* @param handle Widget
|
|
|
|
|
* @param title Title text
|
|
|
|
|
* @return Widget
|
|
|
|
|
*/
|
2025-10-16 17:41:42 +00:00
|
|
|
MWDECL MwWidget MwFileChooser(MwWidget handle, const char* title);
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|