OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [insight/] [gdb/] [gdbtcl/] [about.tcl] - Diff between revs 578 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 578 Rev 1765
# About window for GDBtk.
# About window for GDBtk.
# Copyright 1997, 1998, 1999, 2000, 2001 Red Hat, Inc.
# Copyright 1997, 1998, 1999, 2000, 2001 Red Hat, Inc.
#
#
# This program is free software; you can redistribute it and/or modify it
# 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
# 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
# the Free Software Foundation; either version 2 of the License, or (at
# your option) any later version.
# your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
 
 
 
 
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
# Implements About window
# Implements About window
# ----------------------------------------------------------------------
# ----------------------------------------------------------------------
 
 
class About {
class About {
  inherit ManagedWin ModalDialog
  inherit ManagedWin ModalDialog
  constructor {args} {
  constructor {args} {
    global gdb_ImageDir
    global gdb_ImageDir
    set f [frame $itk_interior.f]
    set f [frame $itk_interior.f]
    label $f.image1 -bg #ee0000 -image \
    label $f.image1 -bg #ee0000 -image \
      [image create photo -file [file join $gdb_ImageDir insight.gif]]
      [image create photo -file [file join $gdb_ImageDir insight.gif]]
    message $f.m -bg #ee0000 -fg white -text [gdb_cmd {show version}] \
    message $f.m -bg #ee0000 -fg white -text [gdb_cmd {show version}] \
      -aspect 500 -relief flat
      -aspect 500 -relief flat
    pack $f.image1 $f.m $itk_interior.f -fill both -expand yes
    pack $f.image1 $f.m $itk_interior.f -fill both -expand yes
    pack  $itk_interior
    pack  $itk_interior
    bind $f.image1 <1> [code $this unpost]
    bind $f.image1 <1> [code $this unpost]
    bind $f.m <1> [code $this unpost]
    bind $f.m <1> [code $this unpost]
    window_name "About Red Hat Insight"
    window_name "About Red Hat Insight"
  }
  }
 
 
  # Don't quit if this is the last window.  The only way that this can
  # Don't quit if this is the last window.  The only way that this can
  # happen is if we are the splash screen. 
  # happen is if we are the splash screen. 
 
 
  method quit_if_last {} {
  method quit_if_last {} {
    return 0
    return 0
  }
  }
 
 
}
}
 
 
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.