add stuff

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@800 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-24 19:05:56 +00:00
parent 5a47bb6da9
commit c8c14bf00f
3 changed files with 31 additions and 1 deletions

View File

@@ -309,6 +309,20 @@ MWDECL void MwShow(MwWidget handle, int toggle);
*/
MWDECL void MwReparent(MwWidget handle, MwWidget new_parent);
/*!
* @brief Gets class of widget
* @param handle Widget
* @return Class
*/
MWDECL MwClass MwGetClass(MwWidget handle);
/*!
* @brief Gets children of widget
* @param handle Widget
* @return Children (NULL-terminated array)
*/
MWDECL MwWidget* MwGetChildren(MwWidget handle);
#ifdef __cplusplus
}
#endif