Re: Dialog code question: What does bc().addReadOnly(FL_OBJECT *) do?

2002-09-27 Thread R. Lahaye
Allan Rae wrote: On Fri, 27 Sep 2002, Rob Lahaye wrote: [...] Why does this function only work on check and button widgets? When I do, for example: bc().addReadOnly(dialog_-choice_width_unit) the choice widget is not disabled for a readonly document! Does this function only apply to

Re: Xforms dialogs: can the text_warning area go?

2002-09-27 Thread R. Lahaye
Angus Leeming wrote: On Friday 27 September 2002 4:13 am, R. Lahaye wrote: Jürgen and others, Some time ago I posted my desire to remove the text_warning areas in the Xforms dialogs. You (Jürgen) replied then that: I have spent a lot of time in implementing this power user stuff (ability

Re: Xforms dialogs: can the text_warning area go?

2002-09-27 Thread R. Lahaye
Juergen Spitzmueller wrote: R. Lahaye wrote: The space is always occupied by the (mostly void) text widget; and all it says (to the power user!) that the input is invalid. No, it's a hint to the unexperienced user. We have disabled the input filter for the power users, which might

Re: Dialog code question: What does "bc().addReadOnly(FL_OBJECT *)" do?

2002-09-27 Thread R. Lahaye
Allan Rae wrote: > On Fri, 27 Sep 2002, Rob Lahaye wrote: > [...] > >>Why does this function only work on check and button widgets? >>When I do, for example: >> >> bc().addReadOnly(dialog_->choice_width_unit) >> >>the choice widget is not disabled for a readonly document! >> >>Does this

Re: Xforms dialogs: can the text_warning area go?

2002-09-27 Thread R. Lahaye
Angus Leeming wrote: > On Friday 27 September 2002 4:13 am, R. Lahaye wrote: > >>Jürgen and others, >> >>Some time ago I posted my desire to remove the text_warning >>areas in the Xforms >> >>dialogs. You (Jürgen) replied then that: >> >>&

Re: Xforms dialogs: can the text_warning area go?

2002-09-27 Thread R. Lahaye
Juergen Spitzmueller wrote: > R. Lahaye wrote: > >>The space is always occupied by the (mostly void) text widget; and >>all it says (to the power user!) that the input is invalid. > > > No, it's a hint to the unexperienced user. We have disabled the input filter &

Redesign of Xforms dialog. Am I doing right?

2002-09-26 Thread R. Lahaye
Edwin, Angus told me you're working on the controller-view split of some Xforms dialogs (in particular the FormDocument dialog). Since I am currently redesigning/improving the Xforms dialogs and also modifying the corresponding code, we should avoid clashes between what you're doing and my

Re: Redesign of Xforms dialog. Am I doing right?

2002-09-26 Thread R. Lahaye
Edwin Leuven wrote: Well, I don't intend to touch the xforms frontend since I think it's a waste of my time (no offense). What I've done is the following. I have written the document controller: controllers/ControlDocument.C controllers/ControlDocument.h and am nearly done

Xforms dialogs: can the text_warning area go?

2002-09-26 Thread R. Lahaye
Jürgen and others, Some time ago I posted my desire to remove the text_warning areas in the Xforms dialogs. You (Jürgen) replied then that: I have spent a lot of time in implementing this power user stuff (ability to enter length directly without the choices). Please think twice before

Redesign of Xforms dialog. Am I doing right?

2002-09-26 Thread R. Lahaye
Edwin, Angus told me you're working on the controller-view split of some Xforms dialogs (in particular the FormDocument dialog). Since I am currently redesigning/improving the Xforms dialogs and also modifying the corresponding code, we should avoid clashes between what you're doing and my

Re: Redesign of Xforms dialog. Am I doing right?

2002-09-26 Thread R. Lahaye
Edwin Leuven wrote: > > Well, I don't intend to touch the xforms frontend since I think it's a waste > of my time (no offense). > > What I've done is the following. > > I have written the document controller: > > controllers/ControlDocument.C > controllers/ControlDocument.h > > and am

Xforms dialogs: can the text_warning area go?

2002-09-26 Thread R. Lahaye
Jürgen and others, Some time ago I posted my desire to remove the text_warning areas in the Xforms dialogs. You (Jürgen) replied then that: > I have spent a lot of time in implementing this "power user" stuff (ability to > enter length directly without the choices). Please think twice before

Wrap figure patch to CVS contains mistake

2002-09-25 Thread R. Lahaye
Dekel, Today you've committed a patch to forms/form_wrap.fd and FormWrap.C. You replaced inner by Outer, but now the dialog interface has lost its logic, because the Default also says outer: o Left o Right o Outer o Default (outer) Maybe the last entry should be o Inner

Re: Wrap figure patch to CVS contains mistake

2002-09-25 Thread R. Lahaye
Dekel Tsur wrote: On Wed, Sep 25, 2002 at 09:29:16PM +0900, R. Lahaye wrote: Today you've committed a patch to forms/form_wrap.fd and FormWrap.C. You replaced inner by Outer, but now the dialog interface has lost its logic, because the Default also says outer: o Left o Right o Outer

Re: just killed the spellchecker

2002-09-25 Thread R. Lahaye
Dr. Richard E. Hawkins wrote: This is fresh cvs from today. I created a new document, and ran the spellchecker on one word. Still not sure, I put in a misspelling, and ran again. I'm pretty sure I moved the cursor back to the beginning, and that it took (I might have just assumed). I

Dialog code question: What does bc().addReadOnly(FL_OBJECT *) do?

2002-09-25 Thread R. Lahaye
Hi, In most Xforms (and Qt dialogs as well), I find this function: bc().addReadOnly(FL_OBJECT * ob) I don't see any effect when commenting it out in the Xforms dialog code. What is it supposed to do? Is it still useful and/or relevant? Thanks, Rob.

Re: Dialog code question: What does bc().addReadOnly(FL_OBJECT *)do?

2002-09-25 Thread R. Lahaye
R. Lahaye wrote: Hi, In most Xforms (and Qt dialogs as well), I find this function: bc().addReadOnly(FL_OBJECT * ob) I don't see any effect when commenting it out in the Xforms dialog code. What is it supposed to do? Is it still useful and/or relevant? Another, possibly related

Wrap figure patch to CVS contains mistake

2002-09-25 Thread R. Lahaye
Dekel, Today you've committed a patch to "forms/form_wrap.fd" and "FormWrap.C". You replaced inner by Outer, but now the dialog interface has lost its logic, because the Default also says "outer": o Left o Right o Outer o Default (outer) Maybe the last entry should be "o Inner

Re: Wrap figure patch to CVS contains mistake

2002-09-25 Thread R. Lahaye
Dekel Tsur wrote: > On Wed, Sep 25, 2002 at 09:29:16PM +0900, R. Lahaye wrote: > >>Today you've committed a patch to "forms/form_wrap.fd" and "FormWrap.C". >>You replaced inner by Outer, but now the dialog interface has lost >>its logic, because t

Re: just killed the spellchecker

2002-09-25 Thread R. Lahaye
Dr. Richard E. Hawkins wrote: > This is fresh cvs from today. I created a new document, and ran the > spellchecker on one word. Still not sure, I put in a misspelling, and > ran again. I'm pretty sure I moved the cursor back to the beginning, > and that it took (I might have just assumed). I

Dialog code question: What does "bc().addReadOnly(FL_OBJECT *)" do?

2002-09-25 Thread R. Lahaye
Hi, In most Xforms (and Qt dialogs as well), I find this function: bc().addReadOnly(FL_OBJECT * ob) I don't see any effect when commenting it out in the Xforms dialog code. What is it supposed to do? Is it still useful and/or relevant? Thanks, Rob.

Re: Dialog code question: What does "bc().addReadOnly(FL_OBJECT *)"do?

2002-09-25 Thread R. Lahaye
R. Lahaye wrote: > > Hi, > > In most Xforms (and Qt dialogs as well), I find this function: > > bc().addReadOnly(FL_OBJECT * ob) > > I don't see any effect when commenting it out in the Xforms dialog code. > What is it supposed to do? Is it still useful and/or r

What is Insert-Floats-Floatflt Figure ?

2002-09-24 Thread R. Lahaye
Hi, I started working on form_wrap.fd dialog, and saw it was related to this fairly new entry in Insert-Floats menu. What does this do? I can't see much difference between selecting Outer|Inner|Right|Left, or enter a value for Width. Interesting bug: A fresh created wrapfigure, with Outer

Re: What is Insert-Floats-Floatflt Figure ?

2002-09-24 Thread R. Lahaye
Hi, Would it be sensible to merge Floatflt figure into the Float figure inset, the same as normal and wide figure now share. A placement dialog could then look as attached (just rough idea; naming may need improvement). The problem is when wanting to switch a float from normal/wide to

What is "Insert->Floats->Floatflt Figure" ?

2002-09-24 Thread R. Lahaye
Hi, I started working on form_wrap.fd dialog, and saw it was related to this fairly new entry in Insert->Floats menu. What does this do? I can't see much difference between selecting "Outer|Inner|Right|Left", or enter a value for Width. "Interesting" bug: A fresh created wrapfigure, with

Re: What is "Insert->Floats->Floatflt Figure" ?

2002-09-24 Thread R. Lahaye
Hi, Would it be sensible to merge Floatflt figure into the Float figure inset, the same as normal and wide figure now share. A placement dialog could then look as attached (just rough idea; naming may need improvement). The problem is when wanting to switch a float from normal/wide to

Re: Preferences: Papersize default is nonsense.

2002-09-23 Thread R. Lahaye
Lars Gullik Bjønnes wrote: R. Lahaye [EMAIL PROTECTED] writes: | Hi, | In the preferences dialog, Outputs-Misc-Papersize has a choice default, which | I only can see as a nonsense option. | 1) This so called default merely refers to the hard coded choice by LyX: | src/lyxrc.C line

Re: Layout files and templates need fix!

2002-09-23 Thread R. Lahaye
Lars Gullik Bjønnes wrote: R. Lahaye [EMAIL PROTECTED] writes: | Hi, | There are still problems with the layout files and templates. Yes, I know... This is the patch that I began on, but never finished: You don't want to commit this and see how well it works for others

Re: Preferences: Papersize default is nonsense.

2002-09-23 Thread R. Lahaye
Lars Gullik Bjønnes wrote: > "R. Lahaye" <[EMAIL PROTECTED]> writes: > > | Hi, > > | In the preferences dialog, Outputs->Misc->Papersize has a choice "default", which > | I only can see as a nonsense option. > > | 1) This so called

Re: Layout files and templates need fix!

2002-09-23 Thread R. Lahaye
Lars Gullik Bjønnes wrote: > "R. Lahaye" <[EMAIL PROTECTED]> writes: > > | Hi, > > | There are still problems with the layout files and templates. > > Yes, I know... > > This is the patch that I began on, but never finished: You don't want to commi

Layout files and templates need fix!

2002-09-22 Thread R. Lahaye
Hi, There are still problems with the layout files and templates. The layout files need to be fixed with respect to the new .inc files. I myself am using revtex4.layout, and LyX gets completely muddled up without the appropriate .inc inclusions in the layout. I'm afraid (but I'm not sure) that

Layout files and templates need fix!

2002-09-22 Thread R. Lahaye
Hi, There are still problems with the layout files and templates. The layout files need to be fixed with respect to the new .inc files. I myself am using revtex4.layout, and LyX gets completely muddled up without the appropriate .inc inclusions in the layout. I'm afraid (but I'm not sure) that

Re: New Xforms Paragraph Layout dialog. Comments?

2002-09-21 Thread R. Lahaye
Jean-Marc Lasgouttes wrote: R == R Lahaye [EMAIL PROTECTED] writes: R Jean-Marc Lasgouttes wrote: R == R Lahaye [EMAIL PROTECTED] writes: R Also, I still don't see how the dialog can find out about the R paragraph's original default. Or am I missing something here? It has to find out

Preferences: Papersize default is nonsense.

2002-09-21 Thread R. Lahaye
Hi, In the preferences dialog, Outputs-Misc-Papersize has a choice default, which I only can see as a nonsense option. 1) This so called default merely refers to the hard coded choice by LyX: src/lyxrc.C line 191 default_papersize = BufferParams::PAPER_USLETTER; This seems

Re: New Xforms "Paragraph Layout" dialog. Comments?

2002-09-21 Thread R. Lahaye
Jean-Marc Lasgouttes wrote: >>>>>>"R" == R Lahaye <[EMAIL PROTECTED]> writes: >>>>> > > R> Jean-Marc Lasgouttes wrote: > >>>>>>>>"R" == R Lahaye <[EMAIL PROTECTED]> writes: >>>>

Preferences: Papersize default is nonsense.

2002-09-21 Thread R. Lahaye
Hi, In the preferences dialog, Outputs->Misc->Papersize has a choice "default", which I only can see as a nonsense option. 1) This so called "default" merely refers to the hard coded choice by LyX: src/lyxrc.C line 191 default_papersize = BufferParams::PAPER_USLETTER; This

Re: bugzilla

2002-09-20 Thread R. Lahaye
Andre Poenitz wrote: On Fri, Sep 20, 2002 at 08:06:37AM +0200, Andre' Poenitz wrote: Why do I need a login to file bugs on bugzilla? If I were just using LyX I'd certainly not create an account there just to file a bug report. What do I do if I forgot my username? [Well, I don't think I

Re: bugzilla

2002-09-20 Thread R. Lahaye
John Levon wrote: On Fri, Sep 20, 2002 at 05:02:02PM +0200, Andre Poenitz wrote: Oh come on, it takes two seconds It's not a matter of time, it's about putting private information in a public place. _We_ are interested in getting bug reports after all. Or perhaps you have some mega

Re: Crash on Saver as defaults

2002-09-20 Thread R. Lahaye
Andre Poenitz wrote: New Doc, Layout-Doceument-Save as Document Defaults, Yes. Boom. Does anybody else see this? This is how far I can trace this bug: The offending action goes as follows: FormDocument.C: saveParamsAsDefault(BufferParams const params) its last statement is return

Re: bugzilla

2002-09-20 Thread R. Lahaye
Andre Poenitz wrote: > On Fri, Sep 20, 2002 at 08:06:37AM +0200, Andre' Poenitz wrote: > >>Why do I need a login to file bugs on bugzilla? If I were just using LyX >>I'd certainly not create an account there just to file a bug report. >> >>What do I do if I forgot my username? [Well, I don't

Re: bugzilla

2002-09-20 Thread R. Lahaye
John Levon wrote: > On Fri, Sep 20, 2002 at 05:02:02PM +0200, Andre Poenitz wrote: > > >>>Oh come on, it takes two seconds >> >>It's not a matter of time, it's about putting private information in a >>public place. _We_ are interested in getting bug reports after all. > > > Or perhaps you

Re: Crash on "Saver as defaults"

2002-09-20 Thread R. Lahaye
Andre Poenitz wrote: > New Doc, Layout->Doceument->Save as Document Defaults, Yes. Boom. > > Does anybody else see this? This is how far I can trace this bug: The offending action goes as follows: FormDocument.C: saveParamsAsDefault(BufferParams const ) its last statement is "return

Re: New Xforms Paragraph Layout dialog. Comments?

2002-09-19 Thread R. Lahaye
Lars Gullik Bjønnes wrote: Garst R. Reese [EMAIL PROTECTED] writes: | Lars Gullik Bjønnes wrote: | real Default button could be added, besides it is nice to know what | the default is as well. | This is a problem with many of the Default buttons. I keep asking | myself what's that mean?

Re: New Xforms Paragraph Layout dialog. Comments?

2002-09-19 Thread R. Lahaye
Lars Gullik Bjønnes wrote: R. Lahaye [EMAIL PROTECTED] writes: | | I'd say: call it Default and let the tooltip explain further; instead | of using asterisk with a tooltip that says Default. Using a tooltip for this is about the worst solution ever... If you are so afraid of special

Re: New Xforms Paragraph Layout dialog. Comments?

2002-09-19 Thread R. Lahaye
Jean-Marc Lasgouttes wrote: R == R Lahaye [EMAIL PROTECTED] writes: R Also, I still don't see how the dialog can find out about the R paragraph's original default. Or am I missing something here? It has to find out the layout of the paragraph and find it there. Yes, I figured

[Patch] small bug in xforms_helpers.C ?

2002-09-19 Thread R. Lahaye
Hi, In xforms_helpers.C, there is the following in function formatted(): string::size_type const nxtpos1 = sin.find(' ', curpos); string::size_type const nxtpos2 = sin.find('\n', curpos); string::size_type const nxtpos = std::min(nxtpos1, nxtpos1); The last line

Re: New Xforms "Paragraph Layout" dialog. Comments?

2002-09-19 Thread R. Lahaye
Lars Gullik Bjønnes wrote: > "Garst R. Reese" <[EMAIL PROTECTED]> writes: > > | Lars Gullik Bjønnes wrote: > | > real "Default" button could be added, besides it is nice to know what > | > the default is as well. > | This is a problem with many of the "Default" buttons. I keep asking > | myself

Re: New Xforms "Paragraph Layout" dialog. Comments?

2002-09-19 Thread R. Lahaye
Lars Gullik Bjønnes wrote: > "R. Lahaye" <[EMAIL PROTECTED]> writes: > | > | I'd say: call it "Default" and let the tooltip explain further; instead > | of using asterisk with a tooltip that says "Default". > > Using a tooltip for this

Re: New Xforms "Paragraph Layout" dialog. Comments?

2002-09-19 Thread R. Lahaye
Jean-Marc Lasgouttes wrote: >>>>>>"R" == R Lahaye <[EMAIL PROTECTED]> writes: >>>>> > > R> Also, I still don't see how the dialog can find out about the > R> paragraph's original default. Or am I missing something here? > >

[Patch] small bug in xforms_helpers.C ?

2002-09-19 Thread R. Lahaye
Hi, In xforms_helpers.C, there is the following in function formatted(): string::size_type const nxtpos1 = sin.find(' ', curpos); string::size_type const nxtpos2 = sin.find('\n', curpos); string::size_type const nxtpos = std::min(nxtpos1, nxtpos1); The last line

New Xforms Paragraph Layout dialog. Comments?

2002-09-18 Thread R. Lahaye
Hi, I'm continuing reworking the xforms dialogs, for after the freeze, that is :). Attached is a screenshot of my new Paragraph Layout. I think this reflects much better the way one uses this dialog: widgets are grouped together according to Above/Text/Below. Some ideas are copied from Qt,

Re: New Xforms Paragraph Layout dialog. Comments?

2002-09-18 Thread R. Lahaye
Christian Ridderström wrote: How about a dialog like this: -- Paragraph body No indent Alignment [] (left) (centre) (right) (block) Line spacing:[Default][]

Re: New Xforms Paragraph Layout dialog. Comments?

2002-09-18 Thread R. Lahaye
John Levon wrote: On Wed, Sep 18, 2002 at 05:20:09PM +0900, Rob Lahaye wrote: Would be cute to replace these words by small icons; you know, the ones used by any wordprocessor: 5 stacked lines that show what sort of alignment it does. Would that be a way to go? Sounds like a bad idea to

Re: New Xforms Paragraph Layout dialog. Comments?

2002-09-18 Thread R. Lahaye
Lars Gullik Bjønnes wrote: Dekel Tsur [EMAIL PROTECTED] writes: | On Wed, Sep 18, 2002 at 09:59:56AM +0200, Lars Gullik Bj?nnes wrote: | Should Block alignment be better named Justified (as in Qt) ? Left justified or Right justfied? or perhaps Block justified. As I learned it Justified

New Xforms "Paragraph Layout" dialog. Comments?

2002-09-18 Thread R. Lahaye
Hi, I'm continuing reworking the xforms dialogs, for after the freeze, that is :). Attached is a screenshot of my new "Paragraph Layout". I think this reflects much better the way one uses this dialog: widgets are grouped together according to Above/Text/Below. Some ideas are copied from Qt,

Re: New Xforms "Paragraph Layout" dialog. Comments?

2002-09-18 Thread R. Lahaye
Christian Ridderström wrote: > > How about a dialog like this: > > -- > Paragraph body > > No indent Alignment > [] (left) (centre) (right) (block) > > Line spacing:

Re: New Xforms "Paragraph Layout" dialog. Comments?

2002-09-18 Thread R. Lahaye
John Levon wrote: > On Wed, Sep 18, 2002 at 05:20:09PM +0900, Rob Lahaye wrote: > >>Would be cute to replace these words by small icons; you know, the ones >>used by any wordprocessor: 5 stacked lines that show what sort of >>alignment it does. Would that be a way to go? > > > Sounds like a

Re: New Xforms "Paragraph Layout" dialog. Comments?

2002-09-18 Thread R. Lahaye
Lars Gullik Bjønnes wrote: > Dekel Tsur <[EMAIL PROTECTED]> writes: > > | On Wed, Sep 18, 2002 at 09:59:56AM +0200, Lars Gullik Bj?nnes wrote: > >>>| Should "Block" alignment be better named "Justified" (as in Qt) ? >>> >>>Left justified or Right justfied? or perhaps Block justified. >>> >>>As

Re: Abstract overwrites Author in article class

2002-09-17 Thread R. Lahaye
Dr. Richard E. Hawkins wrote: On Tue, Sep 17, 2002 at 04:57:31PM +0200, Lars Gullik Bj?nnes wrote: Dr. Richard E. Hawkins [EMAIL PROTECTED] writes: | This is the lyx display, not the rendered latex. | The Author is overwritten by Abstract in article class. Same here, but with RevTeX4

Re: Abstract overwrites Author in article class

2002-09-17 Thread R. Lahaye
R. Lahaye wrote: Dr. Richard E. Hawkins wrote: On Tue, Sep 17, 2002 at 04:57:31PM +0200, Lars Gullik Bj?nnes wrote: Dr. Richard E. Hawkins [EMAIL PROTECTED] writes: | This is the lyx display, not the rendered latex. | The Author is overwritten by Abstract in article class. Same

Re: "Abstract" overwrites Author in article class

2002-09-17 Thread R. Lahaye
Dr. Richard E. Hawkins wrote: > On Tue, Sep 17, 2002 at 04:57:31PM +0200, Lars Gullik Bj?nnes wrote: > >>"Dr. Richard E. Hawkins" <[EMAIL PROTECTED]> writes: > > >>| This is the lyx display, not the rendered latex. > > >>| The Author is overwritten by "Abstract" in article class. Same here,

Re: "Abstract" overwrites Author in article class

2002-09-17 Thread R. Lahaye
R. Lahaye wrote: > Dr. Richard E. Hawkins wrote: > >> On Tue, Sep 17, 2002 at 04:57:31PM +0200, Lars Gullik Bj?nnes wrote: >> >>> "Dr. Richard E. Hawkins" <[EMAIL PROTECTED]> writes: >> >> >> >>> | This is the lyx dis

Re: { and \{

2002-09-13 Thread R. Lahaye
Andre Poenitz wrote: As I have been the only person who found it sensible to have { and \{ act as they do in LaTeX I swapped this. So: Typing { produces blue { on screen and is written as \{ } } \} \{ red {}

Re: Qt configure error.

2002-09-13 Thread R. Lahaye
Joao Luis M. Assirati wrote: Hello, I use a Debian system with qt2 packages installed. When in 1.3.0cvs I try configure --with-frontend=qt I get checking for Qt library name... failed configure: error: Cannot compile a simple Qt executable. Check you have the right $QTDIR !

Float Options dialog: Float Defaults can be removed?

2002-09-13 Thread R. Lahaye
Hi, I'm reworking the Float Options dialog right now and I want to remove the Float Defaults button here (upper left corner). That button disables all other Float placement buttons in the dialog. Moreover, disabling *all* placement buttons (including the Default) will automagically enable the

Re: Qt configure error.

2002-09-13 Thread R. Lahaye
Joao Luis M. Assirati wrote: configure --with-qt-includes=/usr/include/qt/ --with-frontend=qt works for me! I suppose that qt includes are placed in /usr/local/include, so in a system instalation this should go simply into /usr/include, but Debian people (that is not surprise...) changed

Re: Float Options dialog: Float Defaults can be removed?

2002-09-13 Thread R. Lahaye
Juergen Spitzmueller wrote: R. Lahaye wrote: (2) and (3) should be implemented with a better button disable/enable policy than we have now. What special problems do you have with that policy? It is very clever IMHO. No, it's not. It's dumb. It removes settings, that need not be removed

Re: { and \{

2002-09-13 Thread R. Lahaye
Andre Poenitz wrote: > As I have been the only person who found it sensible to have { and \{ act > as they do in LaTeX I swapped this. So: > > Typing { produces blue { on screen and is written as \{ > } } \} > \{

Re: Qt configure error.

2002-09-13 Thread R. Lahaye
Joao Luis M. Assirati wrote: > Hello, > > I use a Debian system with qt2 packages installed. When in 1.3.0cvs I try > > configure --with-frontend=qt > > I get > > checking for Qt library name... failed > configure: error: Cannot compile a simple Qt executable. Check you have > the right

Float Options dialog: "Float Defaults" can be removed?

2002-09-13 Thread R. Lahaye
Hi, I'm reworking the "Float Options" dialog right now and I want to remove the "Float Defaults" button here (upper left corner). That button disables all other Float placement buttons in the dialog. Moreover, disabling *all* placement buttons (including the Default) will automagically enable

Re: Qt configure error.

2002-09-13 Thread R. Lahaye
Joao Luis M. Assirati wrote: > > configure --with-qt-includes=/usr/include/qt/ --with-frontend=qt > > works for me! I suppose that qt includes are placed in /usr/local/include, > so in a system instalation this should go simply into /usr/include, but > Debian people (that is not surprise...)

Re: Float Options dialog: "Float Defaults" can be removed?

2002-09-13 Thread R. Lahaye
Juergen Spitzmueller wrote: > R. Lahaye wrote: > >>(2) and (3) should be implemented with a better button disable/enable >>policy than we have now. > > > What special problems do you have with that policy? It is very clever IMHO. No, it's not. It's dumb. It

[Patch] Another two, less-bulky Xforms dialogs

2002-09-12 Thread R. Lahaye
Hi, This makes the dialogs only less bulky. Hardly any code cleaning done. (the filedialog code needs a clean up, but that's for after the freeze). Please apply, if OK. src/frontends/xforms/ChangeLog|6 src/frontends/xforms/FormTexinfo.C| 45 ++---

Re: New Xforms printer dialog. Your opinion please.

2002-09-12 Thread R. Lahaye
Allan Rae wrote: John Levon wrote: However, there is some serious problems. Different invocations of the print dialog is forgetting various settings such as number of copies, all or range etc. Please do a check and make sure they are remembered properly so when you bring up the dialog again, the

Re: [Patch] Another two, less-bulky Xforms dialogs

2002-09-12 Thread R. Lahaye
Angus Leeming wrote: On Thursday 12 September 2002 8:33 am, R. Lahaye wrote: This makes the dialogs only less bulky. Hardly any code cleaning done. (the filedialog code needs a clean up, but that's for after the freeze). Well personally I think that the new TeXInfo patch is just ugly

Re: New Xforms printer dialog. Your opinion please.

2002-09-12 Thread R. Lahaye
Angus Leeming wrote: I don't think that they're reset at all. That would imply that they're stored and I don't think that they are. What you are getting is the settings of a newly constructed PrinterParams instance. Why not ignore pp in FormPrint::update if it's causing you angst?

Remove email addresses from ChangeLogs too.

2002-09-12 Thread R. Lahaye
Hi, Sometime back all email addresses have been removed from the header lines in the files, since these email addresses are listed already in the CREDITS file. Why not do the same with the ChangeLogs? I would be pleased to be freed from typing my email address each time I type an new entry in

Re: New Xforms printer dialog. Your opinion please.

2002-09-12 Thread R. Lahaye
Angus Leeming wrote: On Thursday 12 September 2002 11:13 am, Angus Leeming wrote: Perhaps something like: void FormPrint::update() { PrinterParams pp = controller().params(); if (pp.file_name == getString(dialog_-input_file) return; ... } would do the

[Patch] Final touch for Graphics/Print dialog layout.

2002-09-12 Thread R. Lahaye
Hi, I had a look at the Print dialog of Qt, and agreed with John's layout. A small modification is applied to the xforms print dialog. Also, a minor modification to graphics dialog. Please apply before freeze ;). Cheers, Rob. src/frontends/xforms/ChangeLog |5 +

[patch] final touch to Reference dialog.

2002-09-12 Thread R. Lahaye
Hi, I improved the layout of the reference dialog. Please apply. Eek, I'm on the edge; is it still Thursday overthere in EU ? Cheers, Rob. ChangeLog |4 forms/form_ref.fd | 32 2 files changed, 20 insertions(+), 16 deletions(-)

[Patch] Another two, less-bulky Xforms dialogs

2002-09-12 Thread R. Lahaye
Hi, This makes the dialogs only less bulky. Hardly any code cleaning done. (the filedialog code needs a clean up, but that's for after the freeze). Please apply, if OK. src/frontends/xforms/ChangeLog|6 src/frontends/xforms/FormTexinfo.C| 45 ++---

Re: New Xforms printer dialog. Your opinion please.

2002-09-12 Thread R. Lahaye
Allan Rae wrote: >>John Levon wrote: >> >>>However, there is some serious problems. Different invocations of the >>>print dialog is forgetting various settings such as number of copies, >>>all or range etc. Please do a check and make sure they are remembered >>>properly so when you bring up the

Re: [Patch] Another two, less-bulky Xforms dialogs

2002-09-12 Thread R. Lahaye
Angus Leeming wrote: > On Thursday 12 September 2002 8:33 am, R. Lahaye wrote: > >>This makes the dialogs only less bulky. Hardly any code >>cleaning done. (the filedialog code needs a clean up, but >>that's for after the freeze). > > Well personally I think that

Re: New Xforms printer dialog. Your opinion please.

2002-09-12 Thread R. Lahaye
Angus Leeming wrote: > > I don't think that they're reset at all. That would imply that > they're stored and I don't think that they are. What you are > getting is the settings of a newly constructed PrinterParams > instance. > > Why not ignore "pp" in FormPrint::update if it's causing you

Remove email addresses from ChangeLogs too.

2002-09-12 Thread R. Lahaye
Hi, Sometime back all email addresses have been removed from the header lines in the files, since these email addresses are listed already in the CREDITS file. Why not do the same with the ChangeLogs? I would be pleased to be freed from typing my email address each time I type an new entry in

Re: New Xforms printer dialog. Your opinion please.

2002-09-12 Thread R. Lahaye
Angus Leeming wrote: > On Thursday 12 September 2002 11:13 am, Angus Leeming wrote: > Perhaps something like: > >>void FormPrint::update() >>{ >> PrinterParams & pp = controller().params(); >> >> if (pp.file_name == getString(dialog_->input_file) >> return; >> >> ...

[Patch] Final touch for Graphics/Print dialog layout.

2002-09-12 Thread R. Lahaye
Hi, I had a look at the Print dialog of Qt, and agreed with John's layout. A small modification is applied to the xforms print dialog. Also, a minor modification to graphics dialog. Please apply before freeze ;). Cheers, Rob. src/frontends/xforms/ChangeLog |5 +

[patch] final touch to Reference dialog.

2002-09-12 Thread R. Lahaye
Hi, I improved the layout of the reference dialog. Please apply. Eek, I'm on the edge; is it still Thursday overthere in EU ? Cheers, Rob. ChangeLog |4 forms/form_ref.fd | 32 2 files changed, 20 insertions(+), 16 deletions(-)

[PATCH] Better xforms Print dialog.

2002-09-11 Thread R. Lahaye
Hi, Attached is the new Print dialog in xforms. Please test, if OK, apply. Regards, Rob. src/ChangeLog|4 src/PrinterParams.h | 80 ++--- src/frontends/ChangeLog |4 src/frontends/Liason.C |

Re: [PATCH] Better xforms Print dialog.

2002-09-11 Thread R. Lahaye
R. Lahaye wrote: Hi, Attached is the new Print dialog in xforms. Argh, and here is the patch. Rob. BetterPrintDialog.diff.gz Description: application/gzip

Re: [PATCH] Better xforms Print dialog.

2002-09-11 Thread R. Lahaye
R. Lahaye wrote: R. Lahaye wrote: Hi, Attached is the new Print dialog in xforms. Argh, and here is the patch. Which is the wrong patch file sorry! Patch file follows shortly. Rob.

Re: [PATCH] Better xforms Print dialog.

2002-09-11 Thread R. Lahaye
Here it is; attached! Rob. BetterPrintDialog.diff.gz Description: application/gzip

Re: New Xforms printer dialog. Your opinion please.

2002-09-11 Thread R. Lahaye
John Levon wrote: On Wed, Sep 11, 2002 at 09:52:21PM -0300, Garst R. Reese wrote: I've already deleted the msgs, but noticed that you were worried about being able to deselect both odd and even. In this case I thing that All should be implied, the same a selecting both. Note that Acroread

[Patch] Tiny follow up patch for Graphics dialog.

2002-09-11 Thread R. Lahaye
Angus, Polished a few tooltips texts in FormGraphics.C. A tiny cosmetic change to the file tab of the dialog layout. The rotateOrigin variable now defaults to empty. Patch attached. Please apply. src/frontends/xforms/ChangeLog |6 ++ src/frontends/xforms/FormGraphics.C

Re: New Xforms printer dialog. Your opinion please.

2002-09-11 Thread R. Lahaye
John Levon wrote: On Thu, Sep 12, 2002 at 11:08:17AM +0900, R. Lahaye wrote: Moreover, I followed Acroread's policy to print all pages when either both (odd/even) are selected, or both are unselected. If, and only if, one is selected, the code investigates which one, and then does the odd

Re: [Patch] Tiny follow up patch for Graphics dialog.

2002-09-11 Thread R. Lahaye
R. Lahaye wrote: Angus, Polished a few tooltips texts in FormGraphics.C. A tiny cosmetic change to the file tab of the dialog layout. The rotateOrigin variable now defaults to empty. Patch attached. Please apply. src/frontends/xforms/ChangeLog |6 ++ src

[PATCH] Better xforms Print dialog.

2002-09-11 Thread R. Lahaye
Hi, Attached is the new Print dialog in xforms. Please test, if OK, apply. Regards, Rob. src/ChangeLog|4 src/PrinterParams.h | 80 ++--- src/frontends/ChangeLog |4 src/frontends/Liason.C |

Re: [PATCH] Better xforms Print dialog.

2002-09-11 Thread R. Lahaye
R. Lahaye wrote: > > Hi, > > Attached is the new Print dialog in xforms. Argh, and here is the patch. Rob. BetterPrintDialog.diff.gz Description: application/gzip

Re: [PATCH] Better xforms Print dialog.

2002-09-11 Thread R. Lahaye
R. Lahaye wrote: > R. Lahaye wrote: > >> >> Hi, >> >> Attached is the new Print dialog in xforms. > > > Argh, and here is the patch. > Which is the wrong patch file sorry! Patch file follows shortly. Rob.

Re: [PATCH] Better xforms Print dialog.

2002-09-11 Thread R. Lahaye
Here it is; attached! Rob. BetterPrintDialog.diff.gz Description: application/gzip

  1   2   3   4   5   6   7   8   9   10   >