Re: [patch] Gtkmm 2.4 Toolbars

2004-10-01 Thread John Spray
On Sun, 2004-09-26 at 16:04, John Spray wrote: > I've fixed the toolbar, with the exception of the tooltips which are > mysteriously not working. However, I think it's better to hasten the > move to 2.4 and fix the tooltips some other time. I've changed the > tooltip stuff for 2.4, it's all there

Re: [PATCH]Replace Combo with ComboBox in GLayoutBox

2004-10-01 Thread Lars Gullik Bjønnes
John Spray <[EMAIL PROTECTED]> writes: | On Tue, 2004-09-28 at 23:36, Lars Gullik Bjønnes wrote: >> Hmm... did you compile this or not? | It was weird, actually, I could have sworn that I did compile it, but I | obviously didn't. Anyway, I've been using this for a day now, and I'm | pretty sure i

Re: [PATCH] gtk Paragraph dialog

2004-10-01 Thread Lars Gullik Bjønnes
John Spray <[EMAIL PROTECTED]> writes: | Regarding the spacingadj_ pointer, it turned out that it was not | necessary to create one anyway, one came with the spinbutton. > | Requested changes to spacing etc have been made. > | Patch to Makefile.am, Dialogs.C from previous message still applies. J

Re: [PATCH] Bug 1693: Dialogs not functional in MacOSX

2004-10-01 Thread Andreas Vox
Am 01.10.2004 um 15:41 schrieb Jean-Marc Lasgouttes: I think that attached patch (which is also attached to bug 1693) fixes the problem properly. Andreas, Bennett, could you test it? Not happy :-( LyX doesn't start but throws an assertion error (console.log): LyX: reconfiguring user directory ...

Re: Bug in graphics conversion shell script

2004-10-01 Thread Angus Leeming
Angus Leeming wrote: > If testing means "it works for me", then it's been tested. This leads to > an image displayed by LyX: [ ...snip... ] > I'll apply it. Something similar is needed by convertDefault.sh too. See attached. I won't apply this to the 1.3.x branch till you say Ok. -- AngusIndex:

Re: [PATCH] Bug 1693: Dialogs not functional in MacOSX

2004-10-01 Thread Bennett Helm
On Oct 1, 2004, at 10:32 AM, Jean-Marc Lasgouttes wrote: Bennett> LyX refuses to start up. Running it from the command line Bennett> with "-dbg any" gives the following as the last bit of output Bennett> before it crashes: Bennett> Initializing LyXFunc LoaderQueue: waking up action: 0 is not Bennet

Re: Gtk::Menu accelerators

2004-10-01 Thread John Spray
On Fri, 2004-10-01 at 15:17, Jean-Marc Lasgouttes wrote: > Can't GtkAccelLabel be used for that? AccelLabel displays an accelerator next to the label, but the accelerator is set by associating the accellabel with a widget which uses that accelerator. That means that we're not just displaying the

Re: Bug in graphics conversion shell script

2004-10-01 Thread Angus Leeming
Jean-Marc Lasgouttes wrote: >> "Angus" == Angus Leeming <[EMAIL PROTECTED]> >> writes: > > Angus> Two patches attached, for 1.3.x and 1.4.x. Rationale below. Ok > Angus> to apply to 1.3.x, Jean-Marc? Angus > > Angus> All variables must be wrapped in double quotes: [...] > > Provided thi

Re: Bug in graphics conversion shell script

2004-10-01 Thread Jean-Marc Lasgouttes
> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes: Angus> Two patches attached, for 1.3.x and 1.4.x. Rationale below. Ok Angus> to apply to 1.3.x, Jean-Marc? Angus Angus> All variables must be wrapped in double quotes: [...] Provided this has been correctly tested, this is fine. Thanks.

Re: [PATCH] Bug 1693: Dialogs not functional in MacOSX

2004-10-01 Thread Bennett Helm
On Oct 1, 2004, at 9:41 AM, Jean-Marc Lasgouttes wrote: I think that attached patch (which is also attached to bug 1693) fixes the problem properly. Andreas, Bennett, could you test it? LyX refuses to start up. Running it from the command line with "-dbg any" gives the following as the last bit of

Re: Gtk::Menu accelerators

2004-10-01 Thread Jean-Marc Lasgouttes
> "John" == John Spray <[EMAIL PROTECTED]> writes: John> Sorry, I wasn't quite clear: I mean that the function exists John> within GTK+, but isn't in the GTK+ interface. GTK+ just has a John> gtk_accelerator_name function whose output is equivalent to the John> get_abbrev in gtkmm. There doesn

Bug in graphics conversion shell script

2004-10-01 Thread Angus Leeming
Two patches attached, for 1.3.x and 1.4.x. Rationale below. Ok to apply to 1.3.x, Jean-Marc? Angus You'd think that building a shell script, so, would be safe: script << "infile=" << QuoteName(infile) << '\n' << "infile_base=" << QuoteName(infile_base) << '\n'

Re: [PATCH] Bug 1693: Dialogs not functional in MacOSX

2004-10-01 Thread Jean-Marc Lasgouttes
> "Bennett" == Bennett Helm <[EMAIL PROTECTED]> writes: Bennett> I can confirm that the patch works, though it of course Bennett> defeats one of our aims in getting dialogs both not to remove Bennett> menus and prevent the user from selecting inappropriate menu Bennett> items (which then affec

Making converters more powerful (and flexible)

2004-10-01 Thread Angus Leeming
At the moment we use the converters in one of two ways: 1. Split the "latex2html -no_subdir -split 0 -show_section_numbers $$i" into an array of words [ "latex2html", "-no_subdir", "-split", "0", "-show_section_numbers", "$$i" ] and pass this array to execvp. The trouble her