mirror of
https://gitea.nishi.boats/pyrite-dev/milsko
synced 2025-12-31 06:30:52 +00:00
fix documentation. wip query
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@518 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
@@ -274,12 +274,19 @@ MWDECL void MwGrabPointer(MwWidget handle, int toggle);
|
||||
MWDECL void MwHideCursor(MwWidget handle);
|
||||
|
||||
/*!
|
||||
* @param Toggles the dark theme
|
||||
* @brief Toggles the dark theme
|
||||
* @param handle Widget
|
||||
* @param toggle Toggle
|
||||
*/
|
||||
MWDECL void MwToggleDarkTheme(MwWidget handle, int toggle);
|
||||
|
||||
/*!
|
||||
* @brief Queries the widget
|
||||
* @param handle Widget
|
||||
* @param query Query
|
||||
*/
|
||||
MWDECL MwWidget MwQuery(MwWidget handle, const char* query);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
@@ -588,3 +588,10 @@ void MwToggleDarkTheme(MwWidget handle, int toggle) {
|
||||
force_render_all(handle);
|
||||
}
|
||||
}
|
||||
|
||||
MwWidget MwQuery(MwWidget handle, const char* query){
|
||||
(void)handle;
|
||||
(void)query;
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user