| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
| 4 * | 4 * |
| 5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
| 6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
| 7 */ | 7 */ |
| 8 #include "X11/Xlib.h" | 8 #include "X11/Xlib.h" |
| 9 #include "X11/keysym.h" | 9 #include "X11/keysym.h" |
| 10 | 10 |
| 11 #include "SkApplication.h" | 11 #include "SkApplication.h" |
| 12 #include "SkEvent.h" | 12 #include "SkEvent.h" |
| 13 #include "SkWindow.h" | 13 #include "SkWindow.h" |
| 14 #include "SkTypes.h" | 14 #include "SkTypes.h" |
| 15 | 15 |
| 16 #include <signal.h> | 16 #include <signal.h> |
| 17 #include <sys/time.h> | 17 #include <sys/time.h> |
| 18 | 18 |
| 19 SkOSWindow* gWindow; | 19 SkOSWindow* gWindow; |
| 20 | 20 |
| 21 static void catch_alarm(int sig) | |
| 22 { | |
| 23 SkEvent::ServiceQueueTimer(); | |
| 24 } | |
| 25 | |
| 26 int main(int argc, char** argv){ | 21 int main(int argc, char** argv){ |
| 27 signal(SIGALRM, catch_alarm); | |
| 28 | |
| 29 gWindow = create_sk_window(NULL, argc, argv); | 22 gWindow = create_sk_window(NULL, argc, argv); |
| 30 | 23 |
| 31 // drain any events that occurred before gWindow was assigned. | 24 // drain any events that occurred before gWindow was assigned. |
| 32 while (SkEvent::ProcessEvent()); | 25 while (SkEvent::ProcessEvent()); |
| 33 | 26 |
| 34 // Start normal Skia sequence | 27 // Start normal Skia sequence |
| 35 application_init(); | 28 application_init(); |
| 36 | 29 |
| 37 gWindow->loop(); | 30 gWindow->loop(); |
| 38 | 31 |
| 39 delete gWindow; | 32 delete gWindow; |
| 40 application_term(); | 33 application_term(); |
| 41 return 0; | 34 return 0; |
| 42 } | 35 } |
| 43 | 36 |
| 44 // SkEvent handlers | 37 // SkEvent handlers |
| 45 | 38 |
| 46 void SkEvent::SignalNonEmptyQueue() | |
| 47 { | |
| 48 if (gWindow) { | |
| 49 gWindow->post_linuxevent(); | |
| 50 } | |
| 51 } | |
| 52 | 39 |
| 53 void SkEvent::SignalQueueTimer(SkMSec delay) | |
| 54 { | |
| 55 itimerval newTimer; | |
| 56 newTimer.it_interval.tv_sec = 0; | |
| 57 newTimer.it_interval.tv_usec = 0; | |
| 58 newTimer.it_value.tv_sec = 0; | |
| 59 newTimer.it_value.tv_usec = delay * 1000; | |
| 60 | |
| 61 setitimer(ITIMER_REAL, &newTimer, NULL); | |
| 62 } | |
| OLD | NEW |