2015-08-28 09:01:57 -05:00
|
|
|
// 16 august 2015
|
2015-06-11 18:23:47 -05:00
|
|
|
#include "uipriv_unix.h"
|
|
|
|
|
2016-04-25 18:45:05 -05:00
|
|
|
void uiUnixControlSetContainer(uiUnixControl *c, GtkContainer *container, gboolean remove)
|
2015-06-11 18:23:47 -05:00
|
|
|
{
|
2016-04-25 18:45:05 -05:00
|
|
|
(*(c->SetContainer))(c, container, remove);
|
2015-06-11 18:23:47 -05:00
|
|
|
}
|
2016-04-24 15:59:46 -05:00
|
|
|
|
|
|
|
#define uiUnixControlSignature 0x556E6978
|
|
|
|
|
2016-04-25 19:34:12 -05:00
|
|
|
uiUnixControl *uiUnixAllocControl(size_t n, uint32_t typesig, const char *typenamestr)
|
2016-04-24 15:59:46 -05:00
|
|
|
{
|
2016-04-24 18:22:21 -05:00
|
|
|
return uiUnixControl(uiAllocControl(n, uiUnixControlSignature, typesig, typenamestr));
|
2016-04-24 15:59:46 -05:00
|
|
|
}
|