Re: Selecting system fonts depending on some features

2020-05-01 Thread Jürgen Spitzmüller
Am Freitag, den 01.05.2020, 20:35 -0400 schrieb Scott Kostyshak:
> As for the implementation, I can look into QFontDatabase and see how
> it
> compares to the output from Kornel's script. If it is reliable, I can
> understand Jürgen's point that there are advantages to that. On the
> other hand, if the listFontWithLang.pl script is more reliable, then
> I
> can port it to Python. If we go that route, I suppose we have to
> generate the information during configuration.
> 
> Any thoughts on the above?

As I said, I think this will work for the developer purpose Kornel
outlined, but not for the GUI. As said multiple times now, I don't
think we should rely on font-config here, since this can only be
assumed to be installed on Linux.

Jürgen


signature.asc
Description: This is a digitally signed message part
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: [LyX/master] GUI for new counter inset.

2020-05-01 Thread Jürgen Spitzmüller
Am Freitag, den 01.05.2020, 19:04 -0400 schrieb Richard Kimberly Heck:
> > The "Action" entries are hardly understandable if one does not know
> > the respective LaTeX commands. 
> 
> I'm not sure how much we can do there. I've made it "Set Counter",
> etc.

I think it should be more explicit, and I would also reorder it. Like:

* Set Counter to
* Increase Counter by
* Reset Counter to Zero
* Save Counter Value for Later Restorage
* Restore Saved Counter Value

(Display should be moved to InsetInfo, as said)

In the dialog itself, I'd put the value SpinBox right to the action
combo (without an own label), like:

Action: [Set Counter to] [ 2 | - | + ]

This will make it more clear that the Value entries relate to the spin
box value.

> I will add more to the User Guide.

Always assume people do not read the User Guide. The dialogs need to be
understandable by themselves.

> > Same for the "Counter" entries.
> 
> We could do something here but, at present, yes, it relies upon the
> user
> 
> knowing what the counters are. Fortunately, that is usually
> clear...in
> 
> English. 

But not even English users without LaTeX knowledge will understand
itemii, for instance.

> I thought about adding a GUIName to the Counter layout bit.
> 
> That seem worth doing?

Not only worth doing. It definitely _needs_ GUI names. 
bibitem => "Bibliography Entry Number", 
"itemii" => "Numbered List (2nd Level)" 
etc.

(also for the button labels).

If I can lend a hand, please let me know.

Jürgen


signature.asc
Description: This is a digitally signed message part
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Selecting system fonts depending on some features

2020-05-01 Thread Scott Kostyshak
On Fri, May 01, 2020 at 04:10:06PM +0200, Jürgen Spitzmüller wrote:
> Am Freitag, den 01.05.2020, 16:08 +0200 schrieb Kornel Benko:
> > No GUI at the moment. (I am not good in programming GUI, as you
> > probably know)
> > 
> > For a tester it is sometimes important to get a useful subset of the
> > list
> > provided by lyx.
> > like get a list of fonts with Hebrew and German.
> 
> I see. Makes sense (for this purpose).

I can take care of the GUI work if we decide to go forward with this and
we decide on the interface. Just to reiterate, I don't know when I would
be able to get to this, probably not until after 2.4.0 is released.
However, it might make sense to have the discussion now on the plan. And
if anyone wants to work on it before I, they would be very welcome.

How do others view this feature being useful? As mentioned on the trac
ticket [1], I think it would be nice to have a checkbox labeled
something like "Limit fonts to those that support languages in current
document". Do others agree? Should this box be checked by default?

As for the implementation, I can look into QFontDatabase and see how it
compares to the output from Kornel's script. If it is reliable, I can
understand Jürgen's point that there are advantages to that. On the
other hand, if the listFontWithLang.pl script is more reliable, then I
can port it to Python. If we go that route, I suppose we have to
generate the information during configuration.

Any thoughts on the above?

Scott


[1] https://www.lyx.org/trac/ticket/11849#comment:3


signature.asc
Description: PGP signature
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: [LyX/master] Revert last three commits.

2020-05-01 Thread Richard Kimberly Heck
On 5/1/20 5:52 AM, Jean-Marc Lasgouttes wrote:
> Le 26/04/2020 à 08:49, Richard Kimberly Heck a écrit :
>> commit 7b9dc7bc9e26b26d15ca4c3e5b2d0383ea97733f
>> Author: Richard Kimberly Heck 
>> Date:   Sun Apr 26 03:08:35 2020 -0400
>>
>>  Revert last three commits.
>>   There are other issues here. The big one is in
>> TextMetrics::getPitNearY,
>>  where -1 is used as a 'special' return value for pit.
>
> This special value of -1 is nothing else than the "npos" that we get
> in STL for things like strings. We could define a value lyx::npos
> which is this special value for pit_type and pos_type and get rid of
> the signedness.

Worth a shot, I suppose. We could define it as UNIT_MAX - 1 or something.


> What were the other issues?

I can't recall, other than that boatloads of warnings suddenly appeared.
I'll have a look.

Riki


-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: [LyX/master] GUI for new counter inset.

2020-05-01 Thread Richard Kimberly Heck
On 5/1/20 4:11 AM, Jürgen Spitzmüller wrote:
> Am Freitag, den 01.05.2020, 04:53 +0200 schrieb Richard Kimberly Heck:
>> commit 9a147255df735d35dd03c3279bdbb35e39678ce0
>> Author: Richard Kimberly Heck 
>> Date:   Thu Apr 30 21:58:14 2020 -0400
>>
>> GUI for new counter inset.
>> ---
> This is really nice, 

Thanks!


> but I think the GUI semantics need some polishing.
> To begin with, I think Insert > Counter is misleading, since this does
> not insert a counter at all. Something like Edit > Manage Counter Value
> makes more sense to me.

Moved.


> In general, I have a rather hard time to understand the GUI. 

I'm not all that good with GUI stuff, so... Part of the motivation for
doing this was I'd never created a dialog before.


> The "Action"
> entries are hardly understandable if one does not know the respective
> LaTeX commands. 

I'm not sure how much we can do there. I've made it "Set Counter", etc.
I will add more to the User Guide.


> Same for the "Counter" entries.
We could do something here but, at present, yes, it relies upon the user
knowing what the counters are. Fortunately, that is usually clear...in
English. I thought about adding a GUIName to the Counter layout bit.
That seem worth doing?

> I have adjusted the layouts in that dialog, but I think some tooltips
> would also be great.

Forgot to add those

Riki


-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: [Bug 1875909] Re: LyX can't build PDFs / missing begin document

2020-05-01 Thread Jean-Marc Lasgouttes

Le 01/05/2020 à 12:59, Jürgen Spitzmüller a écrit :

We'd need a test case to be sure. But the backtrace in the report
directly points to the code where I have now introduced the exception
handling.


Thanks. I notified the reporter.

JMarc
--
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Jenkins build is back to normal : Build branch "master" » ubuntu-xenial-qt4-autotools #1673

2020-05-01 Thread ci-lyx
https://ci.inria.fr/lyx/job/build-master-head/job/ubuntu-xenial-qt4-autotools/1673/
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Citation with multiple keys is always labeled as broken

2020-05-01 Thread Patrick De Visschere
Since commit 4ddc9e… (master, 14 march 2020) citations with multiple keys are 
always labeled as broken, because the key list is handled as a single key.
Included is a possible fix.

Patrick



citationspatch.diff
Description: Binary data


smime.p7s
Description: S/MIME cryptographic signature
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Build failed in Jenkins: Build branch "master" » ubuntu-xenial-qt4-autotools #1672

2020-05-01 Thread Richard Kimberly Heck
On 5/1/20 10:52 AM, Richard Kimberly Heck wrote:
> On 5/1/20 3:53 AM, ci-...@inria.fr wrote:
>> GuiCounter.cpp: In member function 'virtual lyx::docstring 
>> lyx::frontend::GuiCounter::dialogToParams() const':
>> GuiCounter.cpp:141:39: error: 'class QComboBox' has no member named 
>> 'currentData'
>>   params.setCmdName(fromqstr(actionCB->currentData().toString()));
> Any idea why we're getting this failure? This member certainly exists,
> at least in Qt5.

Oh, I see that J"urgen already fixed this. Thanks!

Riki


-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Build failed in Jenkins: Build branch "master" » ubuntu-xenial-qt4-autotools #1672

2020-05-01 Thread Richard Kimberly Heck
On 5/1/20 3:53 AM, ci-...@inria.fr wrote:
> GuiCounter.cpp: In member function 'virtual lyx::docstring 
> lyx::frontend::GuiCounter::dialogToParams() const':
> GuiCounter.cpp:141:39: error: 'class QComboBox' has no member named 
> 'currentData'
>   params.setCmdName(fromqstr(actionCB->currentData().toString()));

Any idea why we're getting this failure? This member certainly exists,
at least in Qt5.

Riki


-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Selecting system fonts depending on some features

2020-05-01 Thread Jürgen Spitzmüller
Am Freitag, den 01.05.2020, 16:08 +0200 schrieb Kornel Benko:
> No GUI at the moment. (I am not good in programming GUI, as you
> probably know)
> 
> For a tester it is sometimes important to get a useful subset of the
> list
> provided by lyx.
> like get a list of fonts with Hebrew and German.

I see. Makes sense (for this purpose).

Jürgen


signature.asc
Description: This is a digitally signed message part
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Selecting system fonts depending on some features

2020-05-01 Thread Kornel Benko
Am Fri, 01 May 2020 15:46:51 +0200
schrieb Jürgen Spitzmüller :

> Am Freitag, den 01.05.2020, 15:38 +0200 schrieb Kornel Benko:
> > At a start, it is only for the devels. (that is it should not be
> > included in the list of provided files)  
> 
> So no GUI support? How is it supposed to be used, then?
> 
> Jürgen

No GUI at the moment. (I am not good in programming GUI, as you probably know)

For a tester it is sometimes important to get a useful subset of the list
provided by lyx.
like get a list of fonts with Hebrew and German.

$ listFontWithLang.pl -l he,de -p regular,Roman,serif --np mono

Font : Arimo Regular [MONO]
Font : BABEL Unicode Regular
Font : Caliban Medium
Font : Cardo Regular
Font : Caslon Roman
Font : Coelacanth Regular
Font : Ezra SIL Regular
Font : Ezra SIL SR Regular
Font : FreeSans Regular
Font : FreeSerif Regular
Font : Liberation Serif Regular
Font : Libertinus Math Regular
Font : Libertinus Serif Display Regular
Font : Libertinus Serif Regular
Font : Linux Biolinum O Regular
Font : Linux Libertine Display O Regular
Font : Linux Libertine O Regular
Font : M+ 1c regular
Font : M+ 1p regular
Font : M+ 2c regular
Font : M+ 2p regular
Font : MPH 2B Damase Regular
Font : MigMix 1P Regular
Font : MigMix 2P Regular
Font : Migu 1C Regular
Font : Migu 1P Regular
Font : SetoFont Regular
Font : TW-Kai Regular
Font : TW-Sung Regular
Font : Times New Roman Regular
Font : Tinos Regular [GOOG]
Font : Tinos Regular [MONO]
Font : UmePlus P Gothic Regular
Font : VL PGothic regular

Kornel


pgpc8IyhbD1mG.pgp
Description: Digitale Signatur von OpenPGP
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Selecting system fonts depending on some features

2020-05-01 Thread Jürgen Spitzmüller
Am Freitag, den 01.05.2020, 15:38 +0200 schrieb Kornel Benko:
> At a start, it is only for the devels. (that is it should not be
> included in the list of provided files)

So no GUI support? How is it supposed to be used, then?

Jürgen


signature.asc
Description: This is a digitally signed message part
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Selecting system fonts depending on some features

2020-05-01 Thread Kornel Benko
Am Fri, 1 May 2020 09:27:55 -0400
schrieb Scott Kostyshak :

> On Fri, May 01, 2020 at 03:16:21PM +0200, Jürgen Spitzmüller wrote:
> > Am Freitag, den 01.05.2020, 14:59 +0200 schrieb Kornel Benko:  
> > > In the struggle of gathering the relevant info from the fonts,
> > > I came up with a perl script, I would like to commit into
> > > lib/scripts.  
> > 
> > Why don't you use QFontDatabase to get this information?

Because it was easier (for me) to work with a known tool.

> In any case,
> > if this is supposed to be used by normal users, consider portability
> > (which probably means python rather than perl but also concerns the
> > depending programs such as font-config.  

At a start, it is only for the devels. (that is it should not be included in the
list of provided files)
And yes, it depends on font-config.

> I volunteer to help with the Python script, although I don't know when I
> would have time to work on it. Regarding the questions about
> QFontDatabase and font-config, I don't know.
> 
> Scott

Thanks Scott, appreciating it.

Kornel


pgpL6b0QO7A18.pgp
Description: Digitale Signatur von OpenPGP
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Selecting system fonts depending on some features

2020-05-01 Thread Jürgen Spitzmüller
Am Freitag, den 01.05.2020, 09:27 -0400 schrieb Scott Kostyshak:
> Regarding the questions about
> QFontDatabase and font-config, I don't know.

Both have access to the same font information. QFontDatabase does not
need an external script (and reconfiguring to update), and users do not
need to install external programs (namely font-config).

Jürgen

PS. QFontDatabase does not have a function to query for serif/sans
serif etc., but this should probybly work:
https://stackoverflow.com/a/13592857


signature.asc
Description: This is a digitally signed message part
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Selecting system fonts depending on some features

2020-05-01 Thread Scott Kostyshak
On Fri, May 01, 2020 at 03:16:21PM +0200, Jürgen Spitzmüller wrote:
> Am Freitag, den 01.05.2020, 14:59 +0200 schrieb Kornel Benko:
> > In the struggle of gathering the relevant info from the fonts,
> > I came up with a perl script, I would like to commit into
> > lib/scripts.
> 
> Why don't you use QFontDatabase to get this information? In any case,
> if this is supposed to be used by normal users, consider portability
> (which probably means python rather than perl but also concerns the
> depending programs such as font-config.

I volunteer to help with the Python script, although I don't know when I
would have time to work on it. Regarding the questions about
QFontDatabase and font-config, I don't know.

Scott


signature.asc
Description: PGP signature
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: Selecting system fonts depending on some features

2020-05-01 Thread Jürgen Spitzmüller
Am Freitag, den 01.05.2020, 14:59 +0200 schrieb Kornel Benko:
> In the struggle of gathering the relevant info from the fonts,
> I came up with a perl script, I would like to commit into
> lib/scripts.

Why don't you use QFontDatabase to get this information? In any case,
if this is supposed to be used by normal users, consider portability
(which probably means python rather than perl but also concerns the
depending programs such as font-config.

Jürgen


signature.asc
Description: This is a digitally signed message part
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Selecting system fonts depending on some features

2020-05-01 Thread Kornel Benko
In the struggle of gathering the relevant info from the fonts,
I came up with a perl script, I would like to commit into lib/scripts.

Following features are handled
1.) language: Select list of desired lang codes (lang1,lang2,... (e.g. de,ko))
2.) name: select list the font name should match (regex1,regex2,... (e.g.
'^a','sans',italic))
3.) name: select list of regexes the font name should not match
4.) properties: select list of desired properties (e.g. serif,medium, ...)
5.) properties: select list of not desired properties (e.g. mono, ...)

Some fonts are difficult to handle, not providing the needed info.
For instance 'Arial'. Only because it is known as 'sans-serif', we do not need
to deduce it from the font-name.

I tried to make the listed font-names to match what we see in LyX.
The exception is the string 'Regular' in font-name. LyX does not have it.

For now the script is named 'listFontWithLang.pl', but maybe a better name
will be more accurate.

Kornel


pgpIpZXO_UujZ.pgp
Description: Digitale Signatur von OpenPGP
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: [Bug 1875909] Re: LyX can't build PDFs / missing begin document

2020-05-01 Thread Jürgen Spitzmüller
Am Freitag, den 01.05.2020, 12:57 +0200 schrieb Jean-Marc Lasgouttes:
> Le 01/05/2020 à 12:37, Jürgen Spitzmüller a écrit :
> > Am Freitag, den 01.05.2020, 11:56 +0200 schrieb Jean-Marc
> > Lasgouttes:
> > > Hi,
> > > This bug in launchpad seems related to recent discussions, but I
> > > cannot
> > > put my finger on it.
> > > https://bugs.launchpad.net/bugs/1875909
> > > 
> > > Could it be #11736?
> > 
> > Yes, looks like it.
> 
> Is there something I could do to make sure it is this one?

We'd need a test case to be sure. But the backtrace in the report
directly points to the code where I have now introduced the exception
handling.

Jürgen

> 
> JMarc


signature.asc
Description: This is a digitally signed message part
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: [Bug 1875909] Re: LyX can't build PDFs / missing begin document

2020-05-01 Thread Jean-Marc Lasgouttes

Le 01/05/2020 à 12:37, Jürgen Spitzmüller a écrit :

Am Freitag, den 01.05.2020, 11:56 +0200 schrieb Jean-Marc Lasgouttes:

Hi,
This bug in launchpad seems related to recent discussions, but I
cannot
put my finger on it.
https://bugs.launchpad.net/bugs/1875909

Could it be #11736?


Yes, looks like it.


Is there something I could do to make sure it is this one?

JMarc
--
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: [Bug 1875909] Re: LyX can't build PDFs / missing begin document

2020-05-01 Thread Jürgen Spitzmüller
Am Freitag, den 01.05.2020, 11:56 +0200 schrieb Jean-Marc Lasgouttes:
> Hi,
> This bug in launchpad seems related to recent discussions, but I
> cannot 
> put my finger on it.
> https://bugs.launchpad.net/bugs/1875909
> 
> Could it be #11736?

Yes, looks like it.

Jürgen

> 
> JMarc


signature.asc
Description: This is a digitally signed message part
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


[Bug 1875909] Re: LyX can't build PDFs / missing begin document

2020-05-01 Thread Jean-Marc Lasgouttes

Hi,
This bug in launchpad seems related to recent discussions, but I cannot 
put my finger on it.

https://bugs.launchpad.net/bugs/1875909

Could it be #11736?

JMarc
--
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: [LyX/master] GUI for new counter inset.

2020-05-01 Thread Jürgen Spitzmüller
Am Freitag, den 01.05.2020, 10:11 +0200 schrieb Jürgen Spitzmüller:
> This is really nice, but I think the GUI semantics need some
> polishing.
> To begin with, I think Insert > Counter is misleading, since this
> does
> not insert a counter at all. Something like Edit > Manage Counter
> Value
> makes more sense to me.

OK, playing more revealed that you can also output a counter value.
GUI-wise, I think it would make more sense to separate this and move it
to info inset (Insert > Text Field) and reserve this inset to counter
manipulation. Otherwise it will get really hard to set up an
understandable GUI.

Jürgen


signature.asc
Description: This is a digitally signed message part
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Re: [LyX/master] GUI for new counter inset.

2020-05-01 Thread Jürgen Spitzmüller
Am Freitag, den 01.05.2020, 04:53 +0200 schrieb Richard Kimberly Heck:
> commit 9a147255df735d35dd03c3279bdbb35e39678ce0
> Author: Richard Kimberly Heck 
> Date:   Thu Apr 30 21:58:14 2020 -0400
> 
> GUI for new counter inset.
> ---

This is really nice, but I think the GUI semantics need some polishing.
To begin with, I think Insert > Counter is misleading, since this does
not insert a counter at all. Something like Edit > Manage Counter Value
makes more sense to me.

In general, I have a rather hard time to understand the GUI. What does
"Value Type" mean (which always seem disabled here)? The "Action"
entries are hardly understandable if one does not know the respective
LaTeX commands. Same for the "Counter" entries.

I have adjusted the layouts in that dialog, but I think some tooltips
would also be great.

Thanks
Jürgen


signature.asc
Description: This is a digitally signed message part
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel


Build failed in Jenkins: Build branch "master" » ubuntu-xenial-qt4-autotools #1672

2020-05-01 Thread ci-lyx
https://ci.inria.fr/lyx/job/build-master-head/job/ubuntu-xenial-qt4-autotools/1672/--
[...truncated 613 lines...]
  GEN  ui_CitationUi.h
  GEN  ui_ColorUi.h
  GEN  ui_CompareUi.h
  GEN  ui_CompareHistoryUi.h
  GEN  ui_CounterUi.h
  GEN  ui_DelimiterUi.h
  GEN  ui_DocumentUi.h
  GEN  ui_ErrorListUi.h
  GEN  ui_ERTUi.h
  GEN  ui_ExternalUi.h
  GEN  ui_FindAndReplaceUi.h
  GEN  ui_FloatPlacementUi.h
  GEN  ui_FontUi.h
  GEN  ui_GraphicsUi.h
  GEN  ui_HSpaceUi.h
  GEN  ui_HyperlinkUi.h
  GEN  ui_IncludeUi.h
  GEN  ui_IndexUi.h
  GEN  ui_IndicesUi.h
  GEN  ui_InfoUi.h
  GEN  ui_InsetParamsUi.h
  GEN  ui_LabelUi.h
  GEN  ui_LanguageUi.h
  GEN  ui_LaTeXUi.h
  GEN  ui_LineUi.h
  GEN  ui_ListingsUi.h
  GEN  ui_ListingsSettingsUi.h
  GEN  ui_LocalLayoutUi.h
  GEN  ui_LogUi.h
  GEN  ui_LyXFilesUi.h
  GEN  ui_MarginsUi.h
  GEN  ui_MasterChildUi.h
  GEN  ui_MathMatrixUi.h
  GEN  ui_MathsUi.h
  GEN  ui_ModulesUi.h
  GEN  ui_NomenclUi.h
  GEN  ui_NoteUi.h
  GEN  ui_NumberingUi.h
  GEN  ui_OutputUi.h
  GEN  ui_PageLayoutUi.h
  GEN  ui_ParagraphUi.h
  GEN  ui_PDFSupportUi.h
  GEN  ui_PhantomUi.h
  GEN  ui_PreambleUi.h
  GEN  ui_PrefColorsUi.h
  GEN  ui_PrefCompletionUi.h
  GEN  ui_PrefConvertersUi.h
  GEN  ui_PrefDocHandlingUi.h
  GEN  ui_PrefOutputUi.h
  GEN  ui_PrefDisplayUi.h
  GEN  ui_PrefEditUi.h
  GEN  ui_PrefFileformatsUi.h
  GEN  ui_PrefIdentityUi.h
  GEN  ui_PrefInputUi.h
  GEN  ui_PrefLanguageUi.h
  GEN  ui_PrefLatexUi.h
  GEN  ui_PrefPathsUi.h
  GEN  ui_PrefScreenFontsUi.h
  GEN  ui_PrefShortcutsUi.h
  GEN  ui_PrefSpellcheckerUi.h
  GEN  ui_PrefsUi.h
  GEN  ui_PrefUi.h
  GEN  ui_PrintindexUi.h
  GEN  ui_PrintNomenclUi.h
  GEN  ui_ProgressViewUi.h
  GEN  ui_RefUi.h
  GEN  ui_SearchUi.h
  GEN  ui_SendtoUi.h
  GEN  ui_ShortcutUi.h
  GEN  ui_ShowFileUi.h
  GEN  ui_SpellcheckerUi.h
  GEN  ui_SymbolsUi.h
  GEN  ui_TabularCreateUi.h
  GEN  ui_TabularUi.h
  GEN  ui_TexinfoUi.h
  GEN  ui_TextLayoutUi.h
  GEN  ui_ThesaurusUi.h
  GEN  ui_TocUi.h
  GEN  ui_ToggleWarningUi.h
  GEN  ui_ViewSourceUi.h
  GEN  ui_VSpaceUi.h
  GEN  ui_WorkAreaUi.h
  GEN  ui_WrapUi.h
  GEN  moc_Action.cpp
  GEN  moc_BulletsModule.cpp
  GEN  moc_CategorizedCombo.cpp
  GEN  moc_CustomizedWidgets.cpp
  GEN  moc_DialogView.cpp
  GEN  moc_DockView.cpp
  GEN  moc_EmptyTable.cpp
  GEN  moc_FancyLineEdit.cpp
  GEN  moc_FindAndReplace.cpp
  GEN  moc_FloatPlacement.cpp
  GEN  moc_GuiAbout.cpp
  GEN  moc_GuiApplication.cpp
  GEN  moc_GuiBibitem.cpp
  GEN  moc_GuiBibtex.cpp
  GEN  moc_GuiBox.cpp
  GEN  moc_GuiBranches.cpp
  GEN  moc_GuiBranch.cpp
  GEN  moc_GuiChanges.cpp
  GEN  moc_GuiCharacter.cpp
  GEN  moc_GuiCitation.cpp
  GEN  moc_GuiClickableLabel.cpp
  GEN  moc_GuiClipboard.cpp
  GEN  moc_GuiCommandBuffer.cpp
  GEN  moc_GuiCommandEdit.cpp
  GEN  moc_GuiCompare.cpp
  GEN  moc_GuiCompareHistory.cpp
  GEN  moc_GuiCompleter.cpp
  GEN  moc_GuiCounter.cpp
  GEN  moc_GuiDelimiter.cpp
  GEN  moc_GuiDialog.cpp
  GEN  moc_GuiDocument.cpp
  GEN  moc_GuiErrorList.cpp
  GEN  moc_GuiERT.cpp
  GEN  moc_GuiExternal.cpp
  GEN  moc_GuiGraphics.cpp
  GEN  moc_GuiHSpace.cpp
  GEN  moc_GuiHyperlink.cpp
  GEN  moc_GuiInclude.cpp
  GEN  moc_GuiIndex.cpp
  GEN  moc_GuiIndices.cpp
  GEN  moc_GuiInfo.cpp
  GEN  moc_GuiLabel.cpp
  GEN  moc_GuiLine.cpp
  GEN  moc_GuiListings.cpp
  GEN  moc_GuiLog.cpp
  GEN  moc_GuiLyXFiles.cpp
  GEN  moc_GuiMathMatrix.cpp
  GEN  moc_GuiNomenclature.cpp
  GEN  moc_GuiNote.cpp
  GEN  moc_GuiParagraph.cpp
  GEN  moc_GuiPhantom.cpp
  GEN  moc_GuiPrefs.cpp
  GEN  moc_GuiPrintindex.cpp
  GEN  moc_GuiPrintNomencl.cpp
  GEN  moc_GuiProgress.cpp
  GEN  moc_GuiProgressView.cpp
  GEN  moc_GuiRef.cpp
  GEN  moc_GuiSearch.cpp
  GEN  moc_GuiSelection.cpp
  GEN  moc_GuiSelectionManager.cpp
  GEN  moc_GuiSendto.cpp
  GEN  moc_GuiSetBorder.cpp
  GEN  moc_GuiShowFile.cpp
  GEN  moc_GuiSpellchecker.cpp
  GEN  moc_GuiSymbols.cpp
  GEN  moc_GuiTabularCreate.cpp
  GEN  moc_GuiTabular.cpp
  GEN  moc_GuiTexinfo.cpp
  GEN  moc_GuiThesaurus.cpp
  GEN  moc_GuiToc.cpp
  GEN  moc_GuiToolbar.cpp
  GEN  moc_GuiView.cpp
  GEN  moc_GuiViewSource.cpp
  GEN  moc_GuiVSpace.cpp
  GEN  moc_GuiWorkArea.cpp
  GEN  moc_GuiWrap.cpp
  GEN  moc_IconPalette.cpp
  GEN  moc_InGuiThread.cpp
  GEN  moc_InsertTableWidget.cpp
  GEN  moc_InsetParamsDialog.cpp
  GEN  moc_InsetParamsWidget.cpp
  GEN  moc_LayoutB

Re: Hebrew document template

2020-05-01 Thread Jürgen Spitzmüller
Am Donnerstag, den 30.04.2020, 21:15 +0200 schrieb Pavel Sanda:
> We have new structure of templates in lyx 2.4.  Given, that the
> template itself
> is seting up hebrew environment rather than particuar document type I
> thought
> to put it into General category.
> 
> Juergen, is it OK with you?

I'd put it to Articles/Hebrew_Article_%28KOMA-Script%29.lyx

(We also have "Chinese Article" in than category).

Jürgen

> 
> Pavel


signature.asc
Description: This is a digitally signed message part
-- 
lyx-devel mailing list
lyx-devel@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-devel