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
|
// $Id$
// The following test exercises the Eric C. Newton's <ecn@clark.net>
// XtReactor implementation.
#include "ace/XtReactor.h"
#include "ace/Message_Block.h"
#if defined (ACE_HAS_XT)
#define String XtString
#include <Xm/PushB.h>
class Stdin : public ACE_Event_Handler
{
public:
ACE_HANDLE get_handle (void) const { return ACE_STDIN; }
int handle_input (ACE_HANDLE fd)
{
char c;
if (read (0, &c, 1)==1)
printf ("Got input '%d'\n", (int)c);
return 0;
}
int handle_timeout (const ACE_Time_Value &tv, const void *arg)
{
printf ("Timeout! %f\n", (double) (tv.msec ()/1000.));
return 0;
}
};
static void
ActivateCB (Widget w, XtPointer, XtPointer)
{
printf ("Button pushed!\n");
}
int
main (int argc, char**argv)
{
// The worlds most useless user interface
Widget top_level = XtVaAppInitialize (NULL, "buttontest", NULL, 0,
&argc, argv, NULL, NULL);
Widget button = XmCreatePushButton (top_level, "change", 0, 0);
XtManageChild (button);
XtAddCallback (button, XmNactivateCallback, ActivateCB, NULL);
// A reactor beastie.
ACE_XtReactor reactor (XtWidgetToApplicationContext (top_level));
// Print a message when data is recv'd on stdin...
ACE_Event_Handler * stdin_ = new Stdin;
reactor.register_handler (stdin_, ACE_Event_Handler::READ_MASK);
// Print a message every 10 seconds
if (reactor.schedule_timer (stdin_, 0,
ACE_Time_Value (10),
ACE_Time_Value (10)) == -1)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "schedule_timer"), -1);
// Show the top_level widget
XtRealizeWidget (top_level);
// Demonstrate Reactor/Xt event loop unification:
XtAppMainLoop (XtWidgetToApplicationContext (top_level));
}
#else
int
main (int, char *[])
{
ACE_ERROR ((LM_ERROR, "XT not configured for this platform\n"));
return 0;
}
#endif /* ACE_HAS_XT */
|