summaryrefslogtreecommitdiff
path: root/ftwin.c
blob: 1d5c487d6aee86b8e4a38a9aa27018501c238462 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 * Test shell for twin fbdev & linux mouse driver
 *
 * Copyright 2006 Benjamin Herrenschmidt <benh@kernel.crashing.org>
 *
 * This Library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public License as
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This Library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with the Twin Library; see the file COPYING.  If not,
 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 * Boston, MA 02111-1307, USA.
 */

#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/time.h>
#include <time.h>
#include <stdlib.h>
#include <assert.h>
#include <signal.h>
#include <unistd.h>
#include <syscall.h>
#include <twin_clock.h>
#include <twin_text.h>
#include <twin_demo.h>
#include <twin_hello.h>
#include <twin_calc.h>
#include <twin_demoline.h>
#include <twin_demospline.h>

#include "twin_fbdev.h"
#include "twin_linux_mouse.h"

twin_fbdev_t *tf;

static void exitfunc(void)
{
	if (tf)
		twin_fbdev_destroy(tf);
	tf = NULL;
}

static void sigint(int sig)
{
	exitfunc();
	syscall(__NR_exit);
}

int main (int argc, char **argv)
{
	int hx, hy;
	twin_pixmap_t *cur;

	tf = twin_fbdev_create(-1, SIGUSR1);
	if (tf == NULL)
		return 1;

	atexit(exitfunc);
	signal(SIGINT, sigint);

	twin_linux_mouse_create(NULL, tf->screen);

	cur = twin_load_X_cursor("ftwin.cursor", 0, &hx, &hy);
	if (cur == NULL)
		cur = twin_get_default_cursor(&hx, &hy);
	if (cur != NULL)
		twin_screen_set_cursor(tf->screen, cur, hx, hy);
	twin_screen_set_background (tf->screen, twin_make_pattern ());
#if 0
	twin_demo_start (tf->screen, "Demo", 100, 100, 400, 400);
#endif
#if 0
	twin_text_start (tf->screen,  "Gettysburg Address", 0, 0, 300, 300);
#endif
#if 0
	twin_hello_start (tf->screen, "Hello, World", 0, 0, 200, 200);
#endif
#if 1
	twin_clock_start (tf->screen, "Clock", 10, 10, 200, 200);
#endif
#if 1
	twin_calc_start (tf->screen, "Calculator", 100, 100, 200, 200);
#endif
#if 1
	twin_demoline_start (tf->screen, "Demo Line", 0, 0, 400, 400);
#endif
#if 1
	twin_demospline_start (tf->screen, "Demo Spline", 20, 20, 400, 400);
#endif

	twin_fbdev_activate(tf);

	twin_dispatch ();

	return 0;
}