Problem with brazil2.kmap

2009-01-02 Thread Henrique Junior
Hi, folks My name is Henrique and I'm brazilian. Some time ago I've my first contact with Lyx and I'm completely impressed with how powerful it is. Unfortunately the brazilian keyboard map is not working correctly. All the accents, except the acute accent are working well. If I wanted to write some

Minimal feature request for Lilypond integration

2009-01-02 Thread Piero Faustini
I wonder if it would be difficoult to implement this simple feature: As LyX know how to call Lilypond (just select Insert - File - External material - Lilypond) for an external .ly file, it could just send Lilypond a temporary .ly file created on-the-fly by copying the content of a in-line ERT-li

Minor feature requests on citation visualization

2009-01-02 Thread Piero Faustini
These are minor feature requests, but I post them here because I think are very easy to implement in next LyX realase. 1. the citation box should allow to choose, next to the "citation styles", some "just show the bibtex key" on/off button for all those who want to see their bibtex key, which

Re: Environment arguments

2009-01-02 Thread Jean-Marc Lasgouttes
Martin Vermeer writes: >> IMO the name should be coded in the layout file. >> >> Here is how it could work: >> >> 1/ when using getStatus(), the lfun validator uses FuncStatus::message to >> set a special string that could be >> - the name of the optional argument for the current layout >> -

Re: [PATCH] Re: change tracking quite unusable in LyX 1.6.x

2009-01-02 Thread Jean-Marc Lasgouttes
Vincent van Ravesteijn writes: > Herewith I'd like to propose a different solution. I'd like to hear > whether this is a reasonable solution or not. I am not sure that I prefer it to my solution, but I could live with it. >I created a new class ColorCode (and renamed the old enum to >som

Re: AMS math question environment

2009-01-02 Thread Russ Woodroofe
Hi all, I hereby license my question environment contribution under the GPL v2 or later (as LyX is licensed). To avoid any possible confusion, I've attached the GPLed patch again below. --Russ question.patch Description: Binary d

Re: Environment arguments

2009-01-02 Thread Martin Vermeer
On Fri, Jan 02, 2009 at 02:36:42PM +0100, Jean-Marc Lasgouttes wrote: > Guenter Milde writes: > >> There was a discussion on the proper name for this, but I don't > >> remember anyone coming up with anything better. "Optional argument" is > >> correct but very LaTeX centric and not clear to the un

Re: [PATCH] Re: change tracking quite unusable in LyX 1.6.x

2009-01-02 Thread Abdelrazak Younes
Vincent van Ravesteijn wrote: I like it, although I am not 100% sure from your screenshot that all different pairs of colors can be visually matched. And we have no idea of how color blind people react to this. What is probably strange is that the _deleted color will only be available to th

Re: Environment arguments

2009-01-02 Thread Jürgen Spitzmüller
Jean-Marc Lasgouttes wrote: > Would that make sense? yes. Jürgen

[again] [patch] Vertical Table Alignment Option Missing ?

2009-01-02 Thread Vincent van Ravesteijn
Hi All, Here is another patch for review... It adds the vertical alignment of the tabular as a whole as a property to InsetTabular. It can be set with: tabular-feature tabular-valign-[top|middle|bottom] Any objections, things I forgot or comments ? Vincent >In comparison to the previo

Re: [PATCH] Re: change tracking quite unusable in LyX 1.6.x

2009-01-02 Thread Vincent van Ravesteijn
I like it, although I am not 100% sure from your screenshot that all different pairs of colors can be visually matched. And we have no idea of how color blind people react to this. What is probably strange is that the _deleted color will only be available to the user for changing when has ac

Re: Environment arguments

2009-01-02 Thread Jean-Marc Lasgouttes
Guenter Milde writes: >> There was a discussion on the proper name for this, but I don't >> remember anyone coming up with anything better. "Optional argument" is >> correct but very LaTeX centric and not clear to the uninitiated. > > "LaTeX argument" seems the best choice to me. IMO the name sh

Re: Char is Lowercase?

2009-01-02 Thread Abdelrazak Younes
Christian Ridderström wrote: On Fri, 2 Jan 2009, Abdelrazak Younes wrote: rgheck wrote: What's the right way to find out if the first character of a docstring is lowercase? Should I do something like: ucs4_to_qchar(c).isLower()? You also want to check that the character is _in_ the ucs2

Re: Char is Lowercase?

2009-01-02 Thread Christian Ridderström
On Fri, 2 Jan 2009, Abdelrazak Younes wrote: rgheck wrote: What's the right way to find out if the first character of a docstring is lowercase? Should I do something like: ucs4_to_qchar(c).isLower()? You also want to check that the character is _in_ the ucs2 range. if (!is_utf16(c)) ret

Re: Char is Lowercase?

2009-01-02 Thread Abdelrazak Younes
rgheck wrote: What's the right way to find out if the first character of a docstring is lowercase? Should I do something like: ucs4_to_qchar(c).isLower()? You also want to check that the character is _in_ the ucs2 range. if (!is_utf16(c)) return true; return ucs4_to_qchar(c).isLower(); A