OSDN Git Service

Initial revision
[pf3gnuchains/pf3gnuchains3x.git] / gdb / gdbtk / library / stackwin.ith
1 # Stack window class definition for GDBtk.
2 # Copyright 1997, 1998, 1999 Cygnus Solutions
3 #
4 # This program is free software; you can redistribute it and/or modify it
5 # under the terms of the GNU General Public License (GPL) as published by
6 # the Free Software Foundation; either version 2 of the License, or (at
7 # your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14
15 # ----------------------------------------------------------------------
16 # Implements stack window for gdb
17 # ----------------------------------------------------------------------
18
19 class StackWin {
20   inherit EmbeddedWin GDBWin
21
22   private {
23     variable maxwidth 40
24     variable Running 0
25     variable protect_me 0
26     method build_win {}
27     method cursor {glyph}
28     method change_frame {y}
29     method update {}
30     method busy {}
31     method no_inferior {}
32     method idle {}
33   }
34
35   public {
36     method reconfig {}
37     method constructor {args} 
38     method destructor {}
39   }
40
41 }
42