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
|
/*
* Simulator of microcontrollers (pmapp.cc)
*
* Copyright (C) 1999,99 Drotos Daniel, Talker Bt.
*
* To contact author send email to drdani@mazsola.iit.uni-miskolc.hu
*
*/
/* This file is part of microcontroller simulator: ucsim.
UCSIM 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.
UCSIM 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 UCSIM; see the file COPYING. If not, write to the Free
Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA. */
/*@1@*/
#include "wincl.h"
#include "labelcl.h"
#include "pmappcl.h"
#include "portcl.h"
int
cl_pmapp::mk_views(class cl_group *ins_to)
{
class cl_view *v;
//class cl_win *w;
class cl_box *b;
b= new cl_box(0,0,0,0);
if (!ins_to)
return(0);
b->set(43,2,14,13);
v= new cl_portw(b, 3, "Port #3", this);
v->init();
ins_to->insert(v);
b->set(29,2,14,13);
v= new cl_portw(b, 2, "Port #2", this);
v->init();
ins_to->insert(v);
/*
b->set(15,2,14,13);
ins_to->insert(v= new cl_portw(b, 1, "Port #1", this));
v->init();
b->set(1,2,14,13);
ins_to->insert(v= new cl_portw(b, 0, "Port #0", this));
v->init();
b->set(59,3,19,11);
v= new cl_label(b, this,
"Next win: n,TAB\nPrev win: p\nCursor : u,d,l,r,\n arrows\nToggle : space,CR\nQuit : q");
v->init();
b->move_rel(-1,-1);
b->grow(2,2);
b->set(58,2,21,13);
w= new cl_win(b, "Help", this);
w->options&= ~OF_SELECTABLE;
w->init();
w->insert(v);
ins_to->insert(w);
w->draw();
*/
delete b;
return(0);
}
int *
cl_pmapp::mk_palette(void)
{
return(cl_app::mk_palette());
}
int
cl_pmapp::handle_event(struct t_event *event)
{
if (event->what == EV_KEY)
switch (event->event.key)
{
case 'q':
event->what= EV_COMMAND;
event->event.msg.cmd= CMD_QUIT;
return(0);
case 'p':
desk->select_prev();
return(1);
case 'n': case '\t':
desk->select_next();
return(1);
}
return(cl_app::handle_event(event));
}
/* End of gui.src/portmon.src/pmapp.cc */
|