[Patch] CharStyles again

2003-11-12 Thread Martin Vermeer
Okay I know, there are still pending regressions from André's patch... but this was OK before the patch, and quite orthogonal to it, so I think I'll just check it in later today. That will make it easier for me to participate in the bug fixing also as there are a couple of common files, which

Re: Why label etc. is not inserted

2003-11-12 Thread Angus Leeming
[EMAIL PROTECTED] wrote: Looks like just the other way around, in fact: Sigh. I need a holiday to recover from the holiday. Ah well, -- Angus

Web page

2003-11-12 Thread Martin Vermeer
http://www.devel.lyx.org/guii.php3 appears to lack the features Note, Footnote, Marginal note, Branch and Box. Is this an oversight, or (in the case of Foot/Marginal note) do I miss something? And is it up to date? Qt seems to be pretty complete now. - Martin pgp0.pgp Description:

Re: which code for PO translation? (translating eu)

2003-11-12 Thread Jean-Marc Lasgouttes
dooteo == dooteo [EMAIL PROTECTED] writes: dooteo Hi, We are translating LyX to Basque lang :) But there is a dooteo cuestion. Which code should we use to do that? I mean, KBabel dooteo can save PO files as UTF-8 but using this way some original dooteo messages are made incorrect. dooteo For

Linking time

2003-11-12 Thread Michael Schmitt
Hello, from time to time, we discuss about the same problem again: Linking with debug information is sooo time-consuming. I would like to remind you of a very simple solution: Index: config/lyxinclude.m4 === RCS file:

Re: Web page

2003-11-12 Thread Angus Leeming
Martin Vermeer wrote: http://www.devel.lyx.org/guii.php3 appears to lack the features Note, Footnote, Marginal note, Branch and Box. Is this an oversight, or (in the case of Foot/Marginal note) do I miss something? And is it up to date? Qt seems to be pretty complete now. - Martin

Re: Web page

2003-11-12 Thread Kornel Benko
-BEGIN PGP SIGNED MESSAGE- On Mittwoch, 12. November 2003 10:49, Martin Vermeer wrote: http://www.devel.lyx.org/guii.php3 appears to lack the features Note, Footnote, Marginal note, Branch and Box. Is this an oversight, or (in the case of Foot/Marginal note) do I miss

Re: Web page

2003-11-12 Thread Martin Vermeer
On Wed, Nov 12, 2003 at 10:51:02AM +, Angus Leeming spake thusly: Martin Vermeer wrote: http://www.devel.lyx.org/guii.php3 appears to lack the features Note, Footnote, Marginal note, Branch and Box. Is this an oversight, or (in the case of Foot/Marginal note) do I miss

Re: [Patch] CharStyles again

2003-11-12 Thread Lars Gullik Bjønnes
Martin Vermeer [EMAIL PROTECTED] writes: | Index: src/lyxtextclass.C | === | RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/lyxtextclass.C,v | retrieving revision 1.42 | diff -u -p -r1.42 lyxtextclass.C | --- src/lyxtextclass.C

Re: [Patch] CharStyles again

2003-11-12 Thread martin . vermeer
... | | +CharStyle::CharStyle() | +{} I still do not get why this is needed. ... | +struct CharStyle { | + std::string name; | + std::string latextype; | + std::string latexname; | + LyXFont font; | + LyXFont labelfont; | + std::string preamble; | + CharStyle();

autocollapsing collapsables

2003-11-12 Thread Alfredo Braunstein
It was recently removed a 1.3.x feature of collapsables that was considered useful with spellchecking. The feature consisted of the following: on an edit event, a bool first_after_edit was set to true. On any other event it was set to false. Then on the search code, if nothing (more) was found

Re: [Patch] CharStyles again

2003-11-12 Thread martin . vermeer
Crime committed :-) - Martin

LFUN_MOUSE_MOTION

2003-11-12 Thread Alfredo Braunstein
shouldn't LFUN_MOUSE_MOTION be dispatched to the inset having the cursor? Right now it's dispatched to whatever it's under the event position as any mouse click, but this looks bogus to me. Alfredo

Re: Why label etc. is not inserted

2003-11-12 Thread Martin Vermeer
On Wed, Nov 12, 2003 at 08:29:12AM +, Angus Leeming spake thusly: [EMAIL PROTECTED] wrote: Looks like just the other way around, in fact: Sigh. I need a holiday to recover from the holiday. Ah well, -- Angus Angus, sorry to disturb your ongoing holiday :-) but what's wrong with

Re: Why label etc. is not inserted

2003-11-12 Thread Angus Leeming
Martin Vermeer wrote: On Wed, Nov 12, 2003 at 08:29:12AM +, Angus Leeming spake thusly: [EMAIL PROTECTED] wrote: Looks like just the other way around, in fact: Sigh. I need a holiday to recover from the holiday. Ah well, -- Angus Angus, sorry to disturb your ongoing holiday

Re: Why label etc. is not inserted

2003-11-12 Thread martin . vermeer
You should be invoking the Dialogs::show member function to pop up the dialog. If you press the button to launch the dialog, then an InsetLabel pointer is passed to the function. On return from the dialog (Apply) the global dispatch() interrogates the Dialogs class: has any particular inset got

Re: Why label etc. is not inserted

2003-11-12 Thread Angus Leeming
[EMAIL PROTECTED] wrote: I see. But show is called when inserting the label inset: 1523 case LFUN_INSERT_LABEL: { 1524 doInsertInset(this, cmd, true, false); 1525 InsetCommandParams p(label); 1526 string const data =

Re: Why label etc. is not inserted

2003-11-12 Thread Angus Leeming
Angus Leeming wrote: [EMAIL PROTECTED] wrote: I see. But show is called when inserting the label inset: 1523 case LFUN_INSERT_LABEL: { 1524 doInsertInset(this, cmd, true, false); 1525 InsetCommandParams p(label); 1526 string const data =

Re: Web page

2003-11-12 Thread Juergen Spitzmueller
Kornel Benko wrote: I was hoping, somebody else would use the Box-feature on qt-lyx. Am I the only one? No. There seems to be no method to launch the dialog on a box, so the description would apply only to xforms-lyx. It is not implemented yet. But the implementation is trivial, I just did

Re: Why label etc. is not inserted

2003-11-12 Thread Martin Vermeer
On Wed, Nov 12, 2003 at 05:10:41PM +, Angus Leeming spake thusly: ... Progress! Now I have the attached, and the dialog comes up and if you enter a string there, it becomes the inset name. I.e., the APPLY: no inset branch now functions. And not only for label, but for URLs as well. The

Re: Web page

2003-11-12 Thread Martin Vermeer
On Wed, Nov 12, 2003 at 10:51:02AM +, Angus Leeming spake thusly: As these are your babies, perhaps you'll add them? May I suggest: Patch attached for the karma-endowed :-( - Martin Index: ChangeLog === RCS file:

Re: Web page

2003-11-12 Thread Juergen Spitzmueller
Martin Vermeer wrote: +$tab[Box] = array( 3, 0, 0, ); you can set this to 3, 1, 0 Jürgen.

Latest CVS Edit-Paragraph Settings inoperative

2003-11-12 Thread Kayvan A. Sylvan
Nothing happens on Edit-Paragraph Settings Messages on console: LyXFunc::dispatch: cmd: action: 123 arg: '' x: 0 y: 0 LCursor::dispatch: trying to dispatch to main text 0x100b2cd0 LyXText::dispatch: cmd: action: 123 arg: '' x: 0 y: 0 result: 0 ### NOT DISPATCHED BY Cursor::dispatch() ###

Re: LyX spell-checker?

2003-11-12 Thread Ling Li
Thank you! My conclusion is that I should keep on using --with-pspell with LyX 1.3.x and switch to --with-aspell when LyX 1.4 comes out. --Ling John Levon wrote: aspell is better ...

[Patch] CharStyles again

2003-11-12 Thread Martin Vermeer
Okay I know, there are still pending regressions from André's patch... but this was OK before the patch, and quite orthogonal to it, so I think I'll just check it in later today. That will make it easier for me to participate in the bug fixing also as there are a couple of common files, which

Re: Why label etc. is not inserted

2003-11-12 Thread Angus Leeming
[EMAIL PROTECTED] wrote: > Looks like just the other way around, in fact: Sigh. I need a holiday to recover from the holiday. Ah well, -- Angus

Web page

2003-11-12 Thread Martin Vermeer
http://www.devel.lyx.org/guii.php3 appears to lack the features Note, Footnote, Marginal note, Branch and Box. Is this an oversight, or (in the case of Foot/Marginal note) do I miss something? And is it up to date? Qt seems to be pretty complete now. - Martin pgp0.pgp Description:

Re: which code for PO translation? (translating eu)

2003-11-12 Thread Jean-Marc Lasgouttes
> "dooteo" == dooteo <[EMAIL PROTECTED]> writes: dooteo> Hi, We are translating LyX to Basque lang :) But there is a dooteo> cuestion. Which code should we use to do that? I mean, KBabel dooteo> can save PO files as UTF-8 but using this way some original dooteo> messages are made incorrect.

Linking time

2003-11-12 Thread Michael Schmitt
Hello, from time to time, we discuss about the same problem again: Linking with debug information is sooo time-consuming. I would like to remind you of a very simple solution: Index: config/lyxinclude.m4 === RCS file:

Re: Web page

2003-11-12 Thread Angus Leeming
Martin Vermeer wrote: > http://www.devel.lyx.org/guii.php3 > > appears to lack the features Note, Footnote, Marginal note, Branch > and Box. > > Is this an oversight, or (in the case of Foot/Marginal note) do I > miss something? And is it up to date? Qt seems to be pretty complete > now. > > -

Re: Web page

2003-11-12 Thread Kornel Benko
-BEGIN PGP SIGNED MESSAGE- On Mittwoch, 12. November 2003 10:49, Martin Vermeer wrote: > http://www.devel.lyx.org/guii.php3 > > appears to lack the features Note, Footnote, Marginal note, Branch and Box. > > Is this an oversight, or (in the case of Foot/Marginal note) do I miss >

Re: Web page

2003-11-12 Thread Martin Vermeer
On Wed, Nov 12, 2003 at 10:51:02AM +, Angus Leeming spake thusly: > Martin Vermeer wrote: > > > http://www.devel.lyx.org/guii.php3 > > > > appears to lack the features Note, Footnote, Marginal note, Branch > > and Box. > > > > Is this an oversight, or (in the case of Foot/Marginal note)

Re: [Patch] CharStyles again

2003-11-12 Thread Lars Gullik Bjønnes
Martin Vermeer <[EMAIL PROTECTED]> writes: | Index: src/lyxtextclass.C | === | RCS file: /usr/local/lyx/cvsroot/lyx-devel/src/lyxtextclass.C,v | retrieving revision 1.42 | diff -u -p -r1.42 lyxtextclass.C | --- src/lyxtextclass.C

Re: [Patch] CharStyles again

2003-11-12 Thread martin . vermeer
... | >| +CharStyle::CharStyle() >| +{} > >I still do not get why this is needed. ... | +struct CharStyle { >| + std::string name; >| + std::string latextype; >| + std::string latexname; >| + LyXFont font; >| + LyXFont labelfont; >| + std::string preamble; >| +

autocollapsing collapsables

2003-11-12 Thread Alfredo Braunstein
It was recently removed a 1.3.x feature of collapsables that was considered useful with spellchecking. The feature consisted of the following: on an edit event, a bool first_after_edit was set to true. On any other event it was set to false. Then on the search code, if nothing (more) was found

Re: [Patch] CharStyles again

2003-11-12 Thread martin . vermeer
Crime committed :-) - Martin

LFUN_MOUSE_MOTION

2003-11-12 Thread Alfredo Braunstein
shouldn't LFUN_MOUSE_MOTION be dispatched to the inset having the cursor? Right now it's dispatched to whatever it's under the event position as any mouse click, but this looks bogus to me. Alfredo

Re: Why label etc. is not inserted

2003-11-12 Thread Martin Vermeer
On Wed, Nov 12, 2003 at 08:29:12AM +, Angus Leeming spake thusly: > > [EMAIL PROTECTED] wrote: > > Looks like just the other way around, in fact: > > Sigh. I need a holiday to recover from the holiday. > Ah well, > -- > Angus Angus, sorry to disturb your ongoing holiday :-) but what's

Re: Why label etc. is not inserted

2003-11-12 Thread Angus Leeming
Martin Vermeer wrote: > On Wed, Nov 12, 2003 at 08:29:12AM +, Angus Leeming spake > thusly: >> >> [EMAIL PROTECTED] wrote: >> > Looks like just the other way around, in fact: >> >> Sigh. I need a holiday to recover from the holiday. >> Ah well, >> -- >> Angus > > Angus, > > sorry to

Re: Why label etc. is not inserted

2003-11-12 Thread martin . vermeer
>You should be invoking the Dialogs::show member function to >pop up the dialog. If you press the button to launch the dialog, >then an InsetLabel pointer is passed to the function. On return >from the dialog ("Apply") the global dispatch() interrogates the >Dialogs class: "has any particular

Re: Why label etc. is not inserted

2003-11-12 Thread Angus Leeming
[EMAIL PROTECTED] wrote: > I see. But show is called when inserting the label inset: > >1523 case LFUN_INSERT_LABEL: { >1524 doInsertInset(this, cmd, true, false); >1525 InsetCommandParams p("label"); >1526 string const data = >

Re: Why label etc. is not inserted

2003-11-12 Thread Angus Leeming
Angus Leeming wrote: > [EMAIL PROTECTED] wrote: >> I see. But show is called when inserting the label inset: >> >>1523 case LFUN_INSERT_LABEL: { >>1524 doInsertInset(this, cmd, true, false); >>1525 InsetCommandParams p("label"); >>1526 string const

Re: Web page

2003-11-12 Thread Juergen Spitzmueller
Kornel Benko wrote: > I was hoping, somebody else would use the Box-feature on qt-lyx. > Am I the only one? No. > There seems to be no method to launch the dialog on a box, so the > description would apply only to xforms-lyx. It is not implemented yet. But the implementation is trivial, I just

Re: Why label etc. is not inserted

2003-11-12 Thread Martin Vermeer
On Wed, Nov 12, 2003 at 05:10:41PM +, Angus Leeming spake thusly: ... Progress! Now I have the attached, and the dialog comes up and if you enter a string there, it becomes the inset name. I.e., the "APPLY: no inset" branch now functions. And not only for label, but for URLs as well. The

Re: Web page

2003-11-12 Thread Martin Vermeer
On Wed, Nov 12, 2003 at 10:51:02AM +, Angus Leeming spake thusly: > As these are your babies, perhaps you'll add them? May I suggest: Patch attached for the karma-endowed :-( - Martin Index: ChangeLog === RCS file:

Re: Web page

2003-11-12 Thread Juergen Spitzmueller
Martin Vermeer wrote: > +$tab["Box"] = array( 3, 0, 0, ""); you can set this to 3, 1, 0 Jürgen.

Latest CVS Edit->Paragraph Settings inoperative

2003-11-12 Thread Kayvan A. Sylvan
Nothing happens on Edit->Paragraph Settings Messages on console: LyXFunc::dispatch: cmd: action: 123 arg: '' x: 0 y: 0 LCursor::dispatch: trying to dispatch to main text 0x100b2cd0 LyXText::dispatch: cmd: action: 123 arg: '' x: 0 y: 0 result: 0 ### NOT DISPATCHED BY Cursor::dispatch()

Re: LyX spell-checker?

2003-11-12 Thread Ling Li
Thank you! My conclusion is that I should keep on using --with-pspell with LyX 1.3.x and switch to --with-aspell when LyX 1.4 comes out. --Ling John Levon wrote: aspell is better ...