process.ith   [plain text]


# Process window class definition for GDBtk.
# Copyright 1998, 1999 Cygnus Solutions
#
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License (GPL) 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.


class ProcessWin {
  inherit EmbeddedWin GDBWin
  
  private {
    variable top
    variable lb
    variable id
    variable Running 0
    variable protect_me 0


    method build_win {}
    method change_context {y}
    method cursor {glyph}
    method change_frame {y}
    method update {}
    method busy {}
    method idle {}
  }

  public {
    method reconfig {}
    method constructor {args} 
    method destructor {}
  }
}