public inbox for insight@sourceware.org
 help / color / mirror / Atom feed
* Re: Source mode, function selector and file selector : display pb
@ 2006-01-12  8:05 Wilfried Fauvel
  2006-01-12 12:35 ` Dave Korn
  0 siblings, 1 reply; 10+ messages in thread
From: Wilfried Fauvel @ 2006-01-12  8:05 UTC (permalink / raw)
  To: valegroup; +Cc: insight

Hi,
if it can help you (I'm using Insight 6.4), srcwin.itb in my file system is in /usr/local/share/insight1.0/, and an "unused" version (that's true ?) is in /usr/share/insight1.0/.


> Dave Korn wrote:
> > Wilfried Fauvel wrote:
> >> Is this patch will be integreted in the next release ?
> >
> >   Fortunately, tcl is a scripting language.  You can just apply the patch to
> > your local copy of srcwin.itb (in /usr/share/insight1.0 or perhaps
> > /usr/local/share/...) and it will take effect immediately!
>
> Ah, if only that were true in my case.
>
> I made the change in my copy of srcwin.itb.  Alas, I still have to adjust the
> size of the window to make that bar appear. (Note that this occurs with a window
> which is NOT maximized at startup. I simultaneously open a Local Variables
> window which is tiled horizontally with the Source Window.)
>
> I'm using version 6.3.50_2004-12-28 dated March 25, 2005.  I'm still running
> Windows 98SE and later versions require DLLs which are not available on my
> system.
>
> --
> Chuck
>
> 

Accédez au courrier électronique de La Poste : www.laposte.net ; 
3615 LAPOSTENET (0,34 €/mn) ; tél : 08 92 68 13 50 (0,34€/mn)



^ permalink raw reply	[flat|nested] 10+ messages in thread
* Re: Source mode, function selector and file selector : display pb
@ 2006-01-11  9:17 Wilfried Fauvel
  2006-01-11 10:29 ` Dave Korn
  0 siblings, 1 reply; 10+ messages in thread
From: Wilfried Fauvel @ 2006-01-11  9:17 UTC (permalink / raw)
  To: dieter_ruppert; +Cc: insight

Hi,
thanks for your answers,
Is this patch will be integreted in the next release ?

Regards.

> Hi,
>
> >
> >wilfried.fauvel@laposte.net wrote:
> >> I have a little problem with Insight (cygwin win32), when I start it, I
> >> have to resize the window to view the Source mode, function selector and
> >> file selector (under the icons bar). Is there any tips to fix that ?
> >
> >That's been a problem since the version of about 18 February 2003.  The only
> >workaround I know of is to slightly adjust the window size.  Then the missing
> >strip will pop into view.
>
>
> this is in the bug database as PR 253. I added a workaround description
> to this PR some time ago, which unfortunately was a bit garbled. I reproduce
> the relevant lines below.
>
> HTH.
>
> Regards
> Dieter R.
>
>  There is a simple workaround for those who am annoyed by this: inserting
>  a (invisible) frame with the required height into the row of comboboxes
>  avoids this. Here is a patch for srcwin.itb (relative to 6.1) which does
>  this:
>
>  *** srcwin.itb.orig     Thu Jul 14 09:35:17 2005
>  --- srcwin.itb  Thu Jul 14 09:40:33 2005
>  ***************
>  *** 106,113 ****
>       $_statbar.mode list insert end MIXED
>       $_statbar.mode list insert end SRC+ASM
>
>       pack $_statbar.mode -side right -padx 10 -pady 4
>  !   pack $_statbar.name $_statbar.func -side left -pady 4 -padx 10
>
>       # if user likes control on top...
>       if {[pref get gdb/src/top_control]} {
>  --- 106,119 ----
>       $_statbar.mode list insert end MIXED
>       $_statbar.mode list insert end SRC+ASM
>
>  + # Workaround: the three comboboxes above sometimes display with height
>  + # of one pixel. Insert a (invisible) frame with the required height
>  + # fixes this...
>  +
>  +   frame $_statbar.strut -height 24 -width 10
>  +
>       pack $_statbar.mode -side right -padx 10 -pady 4
>  !   pack $_statbar.name $_statbar.func $_statbar.strut -side left -pady
>  4 -padx 10
>
>       # if user likes control on top...
>       if {[pref get gdb/src/top_control]} {
>
>
>
>
> 

Accédez au courrier électronique de La Poste : www.laposte.net ; 
3615 LAPOSTENET (0,34 €/mn) ; tél : 08 92 68 13 50 (0,34€/mn)




^ permalink raw reply	[flat|nested] 10+ messages in thread
* Re: Source mode, function selector and file selector : display pb
@ 2006-01-09  8:43 Ruppert
  0 siblings, 0 replies; 10+ messages in thread
From: Ruppert @ 2006-01-09  8:43 UTC (permalink / raw)
  To: insight, valegroup

Hi,

>
>wilfried.fauvel@laposte.net wrote:
>> I have a little problem with Insight (cygwin win32), when I start it, I
>> have to resize the window to view the Source mode, function selector and
>> file selector (under the icons bar). Is there any tips to fix that ?
>
>That's been a problem since the version of about 18 February 2003.  The only
>workaround I know of is to slightly adjust the window size.  Then the missing
>strip will pop into view.


this is in the bug database as PR 253. I added a workaround description
to this PR some time ago, which unfortunately was a bit garbled. I reproduce
the relevant lines below.

HTH.

Regards
Dieter R.

 There is a simple workaround for those who am annoyed by this: inserting 
 a (invisible) frame with the required height into the row of comboboxes
 avoids this. Here is a patch for srcwin.itb (relative to 6.1) which does 
 this:
 
 *** srcwin.itb.orig     Thu Jul 14 09:35:17 2005
 --- srcwin.itb  Thu Jul 14 09:40:33 2005
 ***************
 *** 106,113 ****
      $_statbar.mode list insert end MIXED
      $_statbar.mode list insert end SRC+ASM
 
      pack $_statbar.mode -side right -padx 10 -pady 4
 !   pack $_statbar.name $_statbar.func -side left -pady 4 -padx 10
 
      # if user likes control on top...
      if {[pref get gdb/src/top_control]} {
 --- 106,119 ----
      $_statbar.mode list insert end MIXED
      $_statbar.mode list insert end SRC+ASM
 
 + # Workaround: the three comboboxes above sometimes display with height
 + # of one pixel. Insert a (invisible) frame with the required height
 + # fixes this...
 +
 +   frame $_statbar.strut -height 24 -width 10
 +
      pack $_statbar.mode -side right -padx 10 -pady 4
 !   pack $_statbar.name $_statbar.func $_statbar.strut -side left -pady 
 4 -padx 10
 
      # if user likes control on top...
      if {[pref get gdb/src/top_control]} {
 
 


^ permalink raw reply	[flat|nested] 10+ messages in thread
* Source mode, function selector and file selector : display pb
@ 2006-01-05  8:47 wilfried.fauvel
  2006-01-05 18:55 ` Vale Group
  0 siblings, 1 reply; 10+ messages in thread
From: wilfried.fauvel @ 2006-01-05  8:47 UTC (permalink / raw)
  To: insight

Hi all,
I have a little problem with Insight (cygwin win32), when I start it, I have to resize the window to view the Source mode, function selector and file selector (under the icons bar). Is there any tips to fix that ?

Thx.

Accédez au courrier électronique de La Poste : www.laposte.net ;
Jusqu'au 25 décembre, participez  au grand jeu du Calendrier de l'Avent et
 gagnez tous les jours de nombreux lots, + de 300 cadeaux en jeu !




^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2006-01-12 21:21 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-12  8:05 Source mode, function selector and file selector : display pb Wilfried Fauvel
2006-01-12 12:35 ` Dave Korn
2006-01-12 16:56   ` Keith Seitz
2006-01-12 21:21   ` Vale Group
  -- strict thread matches above, loose matches on Subject: below --
2006-01-11  9:17 Wilfried Fauvel
2006-01-11 10:29 ` Dave Korn
2006-01-12  0:29   ` Vale Group
2006-01-09  8:43 Ruppert
2006-01-05  8:47 wilfried.fauvel
2006-01-05 18:55 ` Vale Group

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).