コード例 #1
0
ファイル: rut-bin.c プロジェクト: sanyaade-mobiledev/rig
static void
queue_allocation (RutBin *bin)
{
    rut_shell_add_pre_paint_callback (bin->context->shell,
                                      bin,
                                      allocate_cb,
                                      NULL /* user_data */);
}
コード例 #2
0
ファイル: rut-button.c プロジェクト: cee1/rig
static void
queue_allocation (RutButton *button)
{
  rut_shell_add_pre_paint_callback (button->ctx->shell,
                                    button,
                                    _rut_button_allocate_cb,
                                    NULL /* user_data */);
}
コード例 #3
0
ファイル: rut-shim.c プロジェクト: cee1/rig
static void
queue_allocation (RutShim *shim)
{
  rut_shell_add_pre_paint_callback (shim->context->shell,
                                    shim,
                                    allocate_cb,
                                    NULL /* user_data */);
}