summaryrefslogtreecommitdiff
path: root/app/wlib/test/testapp.c
blob: 63428019b5cf6241a579e68af934b484dbb74db9 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/** \file testapp.c
 * Small test application to demonstrate functionality of the XTrkCad windowing library wlib
 *
 * $Header: /home/dmarkle/xtrkcad-fork-cvs/xtrkcad/app/wlib/test/testapp.c,v 1.2 2007-09-14 16:17:24 m_fischer Exp $
 */

/*  XTrkCad - Model Railroad CAD
 *  Copyright (C) 
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program 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 General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */


#include <stdio.h>
#include "wlib.h"

#define APPNAME "TESTAPP"
#define WINDOWTITLE "Test Application"

#define TRUE	(1)
#define FALSE (0)

/**
 *	doFile: callback funtion for file submenu 
 */

void doFile( void * cmd )
{
   switch ((int)cmd) {
		case 1:
			break;
   	case 0:					/* 'Quit ' */
			wExit( 0 );			/* terminate application */
    }
}


wWin_p wMain( int argc, char * argv[] )
{

	wWin_p mainW;
	wMenu_p menu1;
	wMenu_p menu2;
	int i;
	char buffer[ 80 ];

	/* add a splash window */
	wCreateSplash( WINDOWTITLE,			/* name of application to show */
						"1.0"						/* application version information */
					 );	

	wFlush();									/* make sure splash window is shown */

	/* create main window */	
    mainW = wWinMainCreate( APPNAME, 	/* application name  */
	 								200, 			/* position x */
									100, 			/* position y */
									"Help", 		/* help topic */
									WINDOWTITLE, /* window title */
									APPNAME, 	/* window name */	
									F_RESIZE|F_MENUBAR, /* options */
									NULL, 		/* window callback function */
									NULL 			/* pointer to user data */
									);

	wWinShow( mainW, FALSE );

	/* add a submenu */ 	
    menu1 = wMenuBarAdd( mainW, 			/* parent window */
								NULL, 			/* help topic */
								"File" 			/* submenu title */
							 );	

	/* create a menuitem in submenu */
	wMenuPushCreate( 	menu1, 				/* parent menu */
							NULL, 				/* help topic */
							"Test", 				/* submenu title */
							0, 					/* accelerator key */
							doFile, 				/* callback funtion */
							(void*)1 			/* pointer to user data */
						 );									
	

	/* create a separator before 'Quit' */	
	wMenuSeparatorCreate( menu1 );
	
	/* create a menuitem in submenu */
	wMenuPushCreate( 	menu1, 				/* parent menu */
							NULL, 				/* help topic */
							"Quit", 				/* submenu title */
							0, 					/* accelerator key */
							doFile, 				/* callback funtion */
							(void*)0 			/* pointer to user data */
						 );									
	
	/* create a second submenu */
    menu2 = wMenuBarAdd( mainW, 			/* parent window */
								NULL, 			/* help topic */
								"Help" 			/* submenu title */
							 );	

	for( i = 5; i > 0; i-- ) {
		sprintf(buffer, "Countdown %d", i );
		wSetSplashInfo( buffer );
		wPause( 1000L );
	}
 
	wWinShow( mainW, TRUE );
	wPause ( 2000L );
	wDestroySplash();							/* remove the splash window again */
	
	return mainW;
}