aboutsummaryrefslogtreecommitdiffhomepage
path: root/unix_test_app/main.cpp
blob: 5be93bc4795e6b7e72242ca0760d2f14562d114e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include "X11/Xlib.h"
#include "X11/keysym.h"

#include "SkApplication.h"
#include "SkEvent.h"
#include "SkWindow.h"
#include "SkTypes.h"

#include <signal.h>
#include <sys/time.h>

SkOSWindow* gWindow;

static void catch_alarm(int sig)
{
    SkEvent::ServiceQueueTimer();
}

int main(){
    signal(SIGALRM, catch_alarm);

    gWindow = create_sk_window(NULL);
    // Start normal Skia sequence
    application_init();

    gWindow->loop();

    application_term();
    return 0;
}

// SkEvent handlers

void SkEvent::SignalNonEmptyQueue()
{
    if (gWindow)
        gWindow->post_linuxevent();
    else
        while (SkEvent::ProcessEvent());
}

void SkEvent::SignalQueueTimer(SkMSec delay)
{
    itimerval newTimer;
    newTimer.it_interval.tv_sec = 0;
    newTimer.it_interval.tv_usec = 0;
    newTimer.it_value.tv_sec = 0;
    newTimer.it_value.tv_usec = delay * 1000;

    setitimer(ITIMER_REAL, &newTimer, NULL);
}