This commit is contained in:
parent
ece1527689
commit
4423c318e8
6 changed files with 6 additions and 19 deletions
|
|
@ -246,13 +246,6 @@ MWDECL void MwSetErrorHandler(MwErrorHandler handler, void* user_data);
|
|||
*/
|
||||
MWDECL void MwDispatchError(int code, const char* message);
|
||||
|
||||
/*!
|
||||
* @brief Gets the before_step of widget
|
||||
* @param handle Widget
|
||||
* @param jmpbuf jmp_buf
|
||||
*/
|
||||
MWDECL void MwGetBeforeStep(MwWidget handle, jmp_buf* jmpbuf);
|
||||
|
||||
/*!
|
||||
* @brief Forcefully makes widget render
|
||||
* @param handle Widget
|
||||
|
|
|
|||
|
|
@ -434,7 +434,7 @@ struct _MwLLWayland {
|
|||
}* wl_protocol_map;
|
||||
|
||||
MwBool has_decorations;
|
||||
char title[255];
|
||||
char title[256];
|
||||
|
||||
struct xkb_context* xkb_context;
|
||||
struct xkb_keymap* xkb_keymap;
|
||||
|
|
|
|||
|
|
@ -9,7 +9,6 @@
|
|||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include <setjmp.h>
|
||||
#include <sys/types.h>
|
||||
#include <assert.h>
|
||||
#include <math.h>
|
||||
|
|
|
|||
|
|
@ -35,6 +35,7 @@ typedef void* MwWidget;
|
|||
#endif
|
||||
typedef void (*MwHandler)(MwWidget handle);
|
||||
typedef int (*MwHandlerWithStatus)(MwWidget handle);
|
||||
typedef void (*MwHandlerProps)(MwWidget handle, const char** key);
|
||||
typedef void (*MwHandlerProp)(MwWidget handle, const char* key);
|
||||
typedef void (*MwHandlerChildrenProp)(MwWidget handle, MwWidget child, const char* key);
|
||||
typedef void (*MwHandlerKey)(MwWidget handle, int key);
|
||||
|
|
@ -85,7 +86,6 @@ struct _MwWidget {
|
|||
int pressed;
|
||||
MwPoint mouse_point;
|
||||
int close;
|
||||
jmp_buf before_step;
|
||||
int prop_event;
|
||||
|
||||
void* internal;
|
||||
|
|
@ -228,10 +228,10 @@ struct _MwClass {
|
|||
MwHandler children_update;
|
||||
MwHandlerChildrenProp children_prop_change;
|
||||
MwHandlerClipboardReceived clipboard;
|
||||
MwHandlerProps props_change;
|
||||
void* reserved1;
|
||||
void* reserved2;
|
||||
void* reserved3;
|
||||
void* reserved4;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue