cutego/widgets/qcheckbox.h

17 lines
482 B
C
Raw Normal View History

2015-10-24 18:18:24 +03:00
#ifdef __cplusplus
extern "C" {
#endif
2015-11-09 20:23:42 +03:00
int QCheckBox_IsTristate(void* ptr);
void QCheckBox_SetTristate(void* ptr, int y);
void* QCheckBox_NewQCheckBox(void* parent);
void* QCheckBox_NewQCheckBox2(char* text, void* parent);
int QCheckBox_CheckState(void* ptr);
void QCheckBox_SetCheckState(void* ptr, int state);
void QCheckBox_ConnectStateChanged(void* ptr);
void QCheckBox_DisconnectStateChanged(void* ptr);
void QCheckBox_DestroyQCheckBox(void* ptr);
2015-10-24 18:18:24 +03:00
#ifdef __cplusplus
}
#endif