skia2/unix_test_app/main.cpp
senorblanco@chromium.org 78b8253c0a Parse SampleApp command line for a test name. If an argument is passed to
SampleApp on the command line, interpret it as a test name.  If it's a valid
test, open that test at startup.

Review URL:  http://codereview.appspot.com/4661054/



git-svn-id: http://skia.googlecode.com/svn/trunk@1742 2bbb7eff-a529-9590-31e7-b0007b416f81
2011-06-28 19:44:03 +00:00

53 lines
975 B
C++

#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(int argc, char** argv){
signal(SIGALRM, catch_alarm);
gWindow = create_sk_window(NULL, argc, argv);
// Start normal Skia sequence
application_init();
gWindow->loop();
delete gWindow;
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);
}