This is the mail archive of the insight@sources.redhat.com mailing list for the Insight project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] Remove CygScrolledListbox


Remove an old scrolledlistbox function. Add some minor improvements.

2002-11-07  Martin M. Hunt  <hunt@redhat.com>

	* library/util.tcl (CygScrolledListbox): Delete.

	* library/srctextwin.itb: Change from CygScrolledListbox
	to iwidgets::scrolledlistbox. Set foreground and background.
	Center popup over source window.





Index: srctextwin.itb
===================================================================
RCS file: /cvs/src/src/gdb/gdbtk/library/srctextwin.itb,v
retrieving revision 1.38
diff -p -r1.38 srctextwin.itb
*** srctextwin.itb	15 Oct 2002 21:19:51 -0000	1.38
--- srctextwin.itb	8 Nov 2002 05:22:10 -0000
*************** itcl::body SrcTextWin::ask_thread_bp {} 
*** 2822,2829 ****
    
    set a [toplevel .[gensym]]
    wm title $a "Thread Selection"
!   CygScrolledListbox $a.slb -selectmode multiple -height $num_threads
!   
    set i [expr $num_threads - 1]
    set width 0
    foreach line $threads {
--- 2822,2832 ----
    
    set a [toplevel .[gensym]]
    wm title $a "Thread Selection"
! 
!   iwidgets::scrolledlistbox $a.slb \
!     -vscrollmode dynamic -hscrollmode dynamic \
!     -selectmode multiple -textfont global/fixed
! 
    set i [expr $num_threads - 1]
    set width 0
    foreach line $threads {
*************** itcl::body SrcTextWin::ask_thread_bp {} 
*** 2837,2855 ****
        if {[string length $line] > $width} {
  	set width [string length $line]
        }
!       $a.slb.list insert 0 $line 
        incr i -1
      }
    }
!   $a.slb.list configure -width $width
  
    frame $a.b
    button $a.b.ok -text OK -underline 0 -width 7 \
!     -command "$this do_thread_bp $a.slb.list"
    button $a.b.cancel -text Cancel -width 7 -underline 0 -command "destroy $a"
    pack $a.b.ok $a.b.cancel -side left
    standard_button_box $a.b
    pack $a.b -fill x -expand yes -side bottom -padx 5 -pady 5
    pack $a.slb -side top -fill both -expand yes
    bind $a.b.ok <Return> "$a.b.ok flash; $a.b.ok invoke"
    focus $a.b.ok
--- 2840,2860 ----
        if {[string length $line] > $width} {
  	set width [string length $line]
        }
!       $a.slb insert 0 $line 
        incr i -1
      }
    }
!   $a.slb configure -visibleitems ${width}x$num_threads 
!   [$a.slb component listbox] configure -bg $::Colors(textbg) -fg $::Colors(textfg)
  
    frame $a.b
    button $a.b.ok -text OK -underline 0 -width 7 \
!     -command "$this do_thread_bp $a.slb"
    button $a.b.cancel -text Cancel -width 7 -underline 0 -command "destroy $a"
    pack $a.b.ok $a.b.cancel -side left
    standard_button_box $a.b
    pack $a.b -fill x -expand yes -side bottom -padx 5 -pady 5
+   center_window $a -over [winfo toplevel [namespace tail $this]]
    pack $a.slb -side top -fill both -expand yes
    bind $a.b.ok <Return> "$a.b.ok flash; $a.b.ok invoke"
    focus $a.b.ok

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]