]> git.lyx.org Git - lyx.git/log
lyx.git
17 years ago * BufferView.cpp (moveToPosition): do not use ParIterator, which moves
Jean-Marc Lasgouttes [Thu, 10 May 2007 07:53:00 +0000 (07:53 +0000)]
* BufferView.cpp (moveToPosition): do not use ParIterator, which moves
through nested insets; what we want here is much simpler (bug 3472)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18254 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agofix a listings param name
Bo Peng [Wed, 9 May 2007 21:28:43 +0000 (21:28 +0000)]
fix a listings param name

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18253 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoBufferParams.cpp: only whitespace
Uwe Stöhr [Wed, 9 May 2007 21:17:22 +0000 (21:17 +0000)]
BufferParams.cpp: only whitespace

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18252 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoBufferParams.cpp: Simplify babel call
Uwe Stöhr [Wed, 9 May 2007 21:10:55 +0000 (21:10 +0000)]
BufferParams.cpp: Simplify babel call

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18251 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agolyx2lyx: fix wrong preamble entry about "armtex" when exporting to LyX 1.4.x format
Uwe Stöhr [Wed, 9 May 2007 21:10:30 +0000 (21:10 +0000)]
lyx2lyx: fix wrong preamble entry about "armtex" when exporting to LyX 1.4.x format

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18250 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoProblem: When canceling the preferences dialog after changing a color then the icon...
Bernhard Roider [Wed, 9 May 2007 20:16:31 +0000 (20:16 +0000)]
Problem: When canceling the preferences dialog after changing a color then the icon in the colors list is not reverted after reopening the dialog. Moreover when pressing apply later then the color is really changed.

Solution: Move the color initialization from the constructor to the update() method. I've read the mail from Richard (referenced in the source code) concerning this, but i don't understand why we should not move parts of the initialization the constructor does into the update method. With this changes the hack for fixing http://bugzilla.lyx.org/show_bug.cgi?id=3109 is not needed.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18249 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoEmbeddedObjects: small update
Uwe Stöhr [Wed, 9 May 2007 20:10:19 +0000 (20:10 +0000)]
EmbeddedObjects: small update

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18248 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoProblem: A crash when no color is selected and the "alter" button is pressed.
Bernhard Roider [Wed, 9 May 2007 20:09:03 +0000 (20:09 +0000)]
Problem: A crash when no color is selected and the "alter" button is pressed.
Solution: Disable the alter button if no item is selected and add an additional test for a valid index.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18247 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoFix InsetListings::init, call setButtonLabel explicitly because that function is...
Bo Peng [Wed, 9 May 2007 20:00:06 +0000 (20:00 +0000)]
Fix InsetListings::init, call setButtonLabel explicitly because that function is not virtual

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18246 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoProblem: When canceling the color selection dialog the color of the selected item...
Bernhard Roider [Wed, 9 May 2007 19:52:24 +0000 (19:52 +0000)]
Problem: When canceling the color selection dialog the color of the selected item is changed to black.
Solution: Add a test whether the color returned from the color dialog is valid.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18245 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoalso compile with merged files
Peter Kümmel [Wed, 9 May 2007 19:31:42 +0000 (19:31 +0000)]
also compile with merged files

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18244 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoAdd support for listings package. Two listings command \lstinline, \lstinputlisting...
Bo Peng [Wed, 9 May 2007 19:11:42 +0000 (19:11 +0000)]
Add support for listings package. Two listings command \lstinline, \lstinputlisting and an environment \lstlisting are supported, along with preamble \lstset. \lstinputlisting is implemented through Include dialog, and the other two are implemented with a new inset listings, along with its dialog.
* src/LyXAction.cpp: listing-insert action
* src/insets/Inset.h,cpp: LISTINGS_CODE
* src/insets/InsetInclude.cpp: handle \lstinputlisting
* src/insets/InsetListings.h,cpp: new listings inset
* src/insets/InsetListingsParams.h,cpp: parameters from listings package
* src/insets/InsetCommandParams.h,cpp: handle lstinputlisting option
* src/Bidi.cpp: handle LISTINGS_CODE
* src/frontends/qt4/ui/TextLayoutUi.ui: update UI
* src/frontends/qt4/ui/ListingsUi.ui: new dialog
* src/frontends/qt4/ui/IncludeUi.ui: update UI
* src/frontends/qt4/QInclude.h,cpp: add lstinputlisting
* src/frontends/qt4/QDocument.h,cpp: add textedit for preamble listings_params
* src/frontends/qt4/QListings.h,cpp: new listings inset
* src/frontends/qt4/Dialogs.cpp: new listings dialog
* src/frontends/controllers/ControlInclude.h,cpp: add lstinputlisting
* src/frontends/controllers/ControlListings.h,cpp: new listings inset
* src/LyXFunc.cpp: handle LISTING_CODE
* src/Paragraph.cpp: handle LISTING_CODE
* src/factory.cpp: new listings inset
* src/CutAndPaste.cpp: handle LISTINGS_CODE
* src/LaTeXFeatures.cpp: require listings
* src/Text3.cpp: Handle LISTINGS_CODE
* src/lfuns.h: add LFUN_LISTING_INSERT
* src/Buffer.cpp: change lyx file format to 269
* src/BufferParams.h,cpp: add listings_params to preamble
* lib/lyx2lyx/LyX.py: lyx2lyx
* lib/lyx2lyx/lyx_1_5.py: lyx2lyx
* lib/ui/stdmenus.inc: new menu item (no shortcut!)
* src/insets/Makefile.am: update autotools
* src/frontends/controllers/Makefile.am
* src/frontends/qt4/Makefile.dialogs
* src/frontends/qt4/Makefile.am
* po/POTFILES.in: a few more translatable files.
* development/scons/scons_manifest.py: scons build system
* development/FORMAT: document format changes

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18243 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoadd instructions for Xcode on mac (from Stefan Schimanski)
Jean-Marc Lasgouttes [Wed, 9 May 2007 13:36:20 +0000 (13:36 +0000)]
add instructions for Xcode on mac (from Stefan Schimanski)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18242 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoFix cursor movement in RTL embedded math insets by Elazar Leibovich.
Abdelrazak Younes [Wed, 9 May 2007 09:42:33 +0000 (09:42 +0000)]
Fix cursor movement in RTL embedded math insets by Elazar Leibovich.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18241 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* set some sizehints to ingore so that toc widget does not take up too much space...
Edwin Leuven [Wed, 9 May 2007 08:23:57 +0000 (08:23 +0000)]
* set some sizehints to ingore so that toc widget does not take up too much space on toggle...

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18240 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoes_EmbeddedObjects: Updates by Ignacio
Uwe Stöhr [Wed, 9 May 2007 00:13:37 +0000 (00:13 +0000)]
es_EmbeddedObjects: Updates by Ignacio

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18239 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoBufferParams.cpp: fix bug 3569:
Uwe Stöhr [Tue, 8 May 2007 23:53:35 +0000 (23:53 +0000)]
BufferParams.cpp: fix bug 3569:
http://bugzilla.lyx.org/show_bug.cgi?id=3569

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18238 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agochange tracking:
Michael Schmitt [Tue, 8 May 2007 17:46:03 +0000 (17:46 +0000)]
change tracking:

introduce 'semantic' TeX commands \lyxinserted and \lyxdeleted in order to decouple change tracking
output from dvipost. Raise user warning if dvipost is not installed (i.e. no changes are shown in TeX output)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18237 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoFix for bug 3524: Indent checkbox is enabled even when paragraphs are marked
Richard Heck [Tue, 8 May 2007 15:35:44 +0000 (15:35 +0000)]
Fix for bug 3524: Indent checkbox is enabled even when paragraphs are marked
with skips.

Added helper method canIndent() to controller and appropriate logic to
QParagraph::update_contents().

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18236 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoFix for bug 2951. Adds default fn: prefix tolabels in footnotes.
Richard Heck [Tue, 8 May 2007 15:10:08 +0000 (15:10 +0000)]
Fix for bug 2951. Adds default fn: prefix tolabels in footnotes.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18235 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoremove 'lyx::'
Abdelrazak Younes [Tue, 8 May 2007 14:09:27 +0000 (14:09 +0000)]
remove 'lyx::'

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18234 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agodeclare 'std::foo' and remove 'lyx::'
Abdelrazak Younes [Tue, 8 May 2007 14:01:40 +0000 (14:01 +0000)]
declare 'std::foo' and remove 'lyx::'

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18233 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agocode formatting.
Abdelrazak Younes [Tue, 8 May 2007 13:21:50 +0000 (13:21 +0000)]
code formatting.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18232 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoinstaller: move all Aspell parts to Aspell.nsh
Uwe Stöhr [Tue, 8 May 2007 00:24:52 +0000 (00:24 +0000)]
installer: move all Aspell parts to Aspell.nsh

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18231 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoBufferParams.h: add comment
Uwe Stöhr [Mon, 7 May 2007 22:32:44 +0000 (22:32 +0000)]
BufferParams.h: add comment

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18230 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoBufferParams.cpp: fix bug 3568:
Uwe Stöhr [Mon, 7 May 2007 18:55:14 +0000 (18:55 +0000)]
BufferParams.cpp: fix bug 3568:
http://bugzilla.lyx.org/show_bug.cgi?id=3568

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18227 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoQMathMatrixDialog.cpp: fix part of bug 3475
Uwe Stöhr [Mon, 7 May 2007 18:30:41 +0000 (18:30 +0000)]
QMathMatrixDialog.cpp: fix part of bug 3475

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18226 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agolib/encodings: fix typo in comment
Uwe Stöhr [Mon, 7 May 2007 18:25:25 +0000 (18:25 +0000)]
lib/encodings: fix typo in comment

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18225 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoCleanup in order to better understand bug 3043 and 3561.
Abdelrazak Younes [Mon, 7 May 2007 17:10:10 +0000 (17:10 +0000)]
Cleanup in order to better understand bug 3043 and 3561.

* switchEncoding(): simplify return logic (transform 'and -> do' to 'or ->return')

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18224 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agounicodesymbols: fix character order
Uwe Stöhr [Mon, 7 May 2007 17:03:44 +0000 (17:03 +0000)]
unicodesymbols: fix character order

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18223 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* lib/unicodesymbols: add endash and emdash.
Jürgen Spitzmüller [Mon, 7 May 2007 16:08:01 +0000 (16:08 +0000)]
* lib/unicodesymbols: add endash and emdash.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18222 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* src/Encoding.cpp (latexChar):
Jürgen Spitzmüller [Mon, 7 May 2007 15:08:27 +0000 (15:08 +0000)]
* src/Encoding.cpp (latexChar):
- assure the encodings are proper initialized.
  supposedely fixes bugs 3561 and 3562

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18221 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoFix remaining parts of bug 3146.
Jürgen Spitzmüller [Mon, 7 May 2007 08:57:53 +0000 (08:57 +0000)]
Fix remaining parts of bug 3146.
* src/Cursor.cpp:
- new helper function parbreak that checks whether a blank line is
  to be inserted or not (currently only relevant for ERT content)
- (selectionAsString): use parbreak instead of hardcoded "\n\n"

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18220 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* lib/encodings: just a tiny reordering: move utf8-plain to those encodings that...
Jürgen Spitzmüller [Mon, 7 May 2007 06:00:29 +0000 (06:00 +0000)]
* lib/encodings: just a tiny reordering: move utf8-plain to those encodings that do not load a package.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18219 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoinstaller:
Uwe Stöhr [Mon, 7 May 2007 01:19:52 +0000 (01:19 +0000)]
installer:
- using Joost's patched pdfopen/pdfclose programs as these now also work for Acrobat 8 using the latest version
-> Could get rid of ugly hack that was only used for Acrobat 8

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18218 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agolib/languages:
Uwe Stöhr [Sun, 6 May 2007 21:49:40 +0000 (21:49 +0000)]
lib/languages:
- add Country codes for Japanese and Chinese
- add info about Korean country code

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18217 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoGeorg's patch for bug 3043:
Uwe Stöhr [Sun, 6 May 2007 20:26:02 +0000 (20:26 +0000)]
Georg's patch for bug 3043:
Introduces new encodings for the CJK-languages.
The CJK-languages can now be selected from LyX's menu.
For remaining small problems, see the thread "Help needed for bug 3043" on the devel-list.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18216 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoChanged to using 'rc' instead of 'pre'
Christian Ridderström [Sun, 6 May 2007 19:10:15 +0000 (19:10 +0000)]
Changed to using 'rc' instead of 'pre'

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18214 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoEmbeddedObjects manual: two fixes reported by Hartmut
Uwe Stöhr [Sun, 6 May 2007 14:54:58 +0000 (14:54 +0000)]
EmbeddedObjects manual: two fixes reported by Hartmut

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18213 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoinstaller updates
Uwe Stöhr [Sun, 6 May 2007 14:47:59 +0000 (14:47 +0000)]
installer updates

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18212 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoEmbeddedObjects manual:
Uwe Stöhr [Sun, 6 May 2007 14:45:47 +0000 (14:45 +0000)]
EmbeddedObjects manual:
- new section about float numbering
- some corrections

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18211 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agofix inputenc handling bug introduced with r18198
Uwe Stöhr [Sun, 6 May 2007 14:18:40 +0000 (14:18 +0000)]
fix inputenc handling bug introduced with r18198

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18210 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* src/Cursor.cpp:
Jürgen Spitzmüller [Sun, 6 May 2007 08:38:10 +0000 (08:38 +0000)]
* src/Cursor.cpp:
- revert accidental commit in r18206.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18209 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoFix bug 3508:
Jürgen Spitzmüller [Sun, 6 May 2007 07:26:51 +0000 (07:26 +0000)]
Fix bug 3508:
* src/ToolbarBackend.cpp:
* lib/ui/stdtoolbars.inc:
- add tooltip to table widget
* src/frontends/qt4/QLToolbar.cpp:
- display tooltip as icon text

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18208 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoforgot this in my last commit
Uwe Stöhr [Sat, 5 May 2007 20:27:43 +0000 (20:27 +0000)]
forgot this in my last commit

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18207 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoset infrastructure to allow not to call babel
Uwe Stöhr [Sat, 5 May 2007 19:18:34 +0000 (19:18 +0000)]
set infrastructure to allow not to call babel
This is a part of the fix for bug 3043.
I got the OK from Georg, that this patch doesn't introduce conflicts as it only sets the infrastructure.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18206 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* src/TextMetrics.cpp (setHeightOfRow):
Jürgen Spitzmüller [Sat, 5 May 2007 12:06:37 +0000 (12:06 +0000)]
* src/TextMetrics.cpp (setHeightOfRow):
- don't use parkip in ERT insets (bug 3146)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18205 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* make background of reload icon transparent (was white) and slightly adjust promote...
Edwin Leuven [Sat, 5 May 2007 09:26:44 +0000 (09:26 +0000)]
* make background of reload icon transparent (was white) and slightly adjust promote and demote arrows

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18204 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agorevision 18202: I forgot this one.
Abdelrazak Younes [Fri, 4 May 2007 17:46:03 +0000 (17:46 +0000)]
revision 18202: I forgot this one.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18203 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoTOC Widget beautification by Stefan Schimanski:
Abdelrazak Younes [Fri, 4 May 2007 17:37:05 +0000 (17:37 +0000)]
TOC Widget beautification by Stefan Schimanski:

* lib/images: 3 new icons
* TocUi/TocWidget: Replace labeled button with icon buttons.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18202 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* LyX::addFileToLoad(): new method for double-clicked file icons on MacOS.
Abdelrazak Younes [Fri, 4 May 2007 17:20:53 +0000 (17:20 +0000)]
* LyX::addFileToLoad(): new method for double-clicked file icons on MacOS.

* GuiApplication::event():
  special case for FileOpen events: memorize the filenames if LyX is not properly started yet.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18201 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agofix xpm
Peter Kümmel [Fri, 4 May 2007 16:59:21 +0000 (16:59 +0000)]
fix xpm

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18200 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* do not ignore "requires" field in MathMacro
Edwin Leuven [Fri, 4 May 2007 15:30:27 +0000 (15:30 +0000)]
* do not ignore "requires" field in MathMacro
  (fixes http://bugzilla.lyx.org/show_bug.cgi?id=3520)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18199 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* lib/encodings:
Jürgen Spitzmüller [Fri, 4 May 2007 12:27:00 +0000 (12:27 +0000)]
* lib/encodings:
- add new encoding utf8-plain for the sake of XeTeX users (bug 3526)
* src/BufferParams.cpp:
- implement new encoding (skip inputenc)
- fix logic error with thailatex

* src/Buffer.cpp:
* lib/lyx2lyx/LyX.py:
* lib/lyx2lyx/lyx_1_5.pyx:
* development/FORMAT:
- format increment to 267
- reset encoding to utf8 on reversion.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18198 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* QLPainter: antialias edges of primitives only if text is antialiased.
Abdelrazak Younes [Fri, 4 May 2007 09:24:44 +0000 (09:24 +0000)]
* QLPainter: antialias edges of primitives only if text is antialiased.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18197 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoFix antialiasing problem in straight lines within polylines. Prepare for optional...
Abdelrazak Younes [Fri, 4 May 2007 08:52:40 +0000 (08:52 +0000)]
Fix antialiasing problem in straight lines within polylines. Prepare for optional antialiasing.

* QLPainter::lines(): use QPainter::drawLine() multiple times instead QPainter::drawPolyline().

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18196 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoRenamed Changelog.txt to ChangeLog.txt
Christian Ridderström [Fri, 4 May 2007 08:02:52 +0000 (08:02 +0000)]
Renamed Changelog.txt to ChangeLog.txt

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18195 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoLast(?) missing rename: version.C -> version.cpp
Enrico Forestieri [Fri, 4 May 2007 00:47:24 +0000 (00:47 +0000)]
Last(?) missing rename: version.C -> version.cpp

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18194 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoEmbeddedObjects manual: add note for caption widths in longtables
Uwe Stöhr [Thu, 3 May 2007 23:30:44 +0000 (23:30 +0000)]
EmbeddedObjects manual: add note for caption widths in longtables

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18193 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoinstaller updates
Uwe Stöhr [Thu, 3 May 2007 21:40:49 +0000 (21:40 +0000)]
installer updates

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18192 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* replace old toc-view with new dialog-toggle
Edwin Leuven [Thu, 3 May 2007 21:07:39 +0000 (21:07 +0000)]
* replace old toc-view with new dialog-toggle

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18191 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoChanged references as to where/how known issues are shown, i.e. added reference to...
Christian Ridderström [Thu, 3 May 2007 20:51:31 +0000 (20:51 +0000)]
Changed references as to where/how known issues are shown, i.e. added reference to http://wiki.lyx.org/LyX/ReleaseNotes

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18190 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* src/insets/InsetMarginal.h:
Jürgen Spitzmüller [Thu, 3 May 2007 15:54:56 +0000 (15:54 +0000)]
* src/insets/InsetMarginal.h:
- revert accidental encoding change

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18189 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* src/insets/InsetMarginal.h:
Jürgen Spitzmüller [Thu, 3 May 2007 15:53:14 +0000 (15:53 +0000)]
* src/insets/InsetMarginal.h:
- add missing name() (fix bug 3540)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18188 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agorevert 18186: this cannot be done right now because of the way LFUN_BUFFER_PARAMS_APP...
Abdelrazak Younes [Thu, 3 May 2007 14:47:22 +0000 (14:47 +0000)]
revert 18186: this cannot be done right now because of the way LFUN_BUFFER_PARAMS_APPLY is implemented.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18187 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoFix interface problem in order to cleanly support "cursor position memory" in the...
Abdelrazak Younes [Thu, 3 May 2007 14:20:12 +0000 (14:20 +0000)]
Fix interface problem in order to cleanly support "cursor position memory" in the preamble editor.

* ControlDocument::params(): replace BufferParams local copy with Buffer::params() direct access.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18186 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago * src/Cursor.cpp (isRTL): simplify
Jean-Marc Lasgouttes [Thu, 3 May 2007 13:31:16 +0000 (13:31 +0000)]
* src/Cursor.cpp (isRTL): simplify

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18185 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoremove fr/CV.lyx to fr/simplecv.lyx
Jean-Marc Lasgouttes [Thu, 3 May 2007 13:08:29 +0000 (13:08 +0000)]
remove fr/CV.lyx to fr/simplecv.lyx

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18184 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago* update math symbols to be in a uniform style.
Edwin Leuven [Thu, 3 May 2007 11:33:02 +0000 (11:33 +0000)]
* update math symbols to be in a uniform style.
  most icons are taken from this site:

  http://us.metamath.org/symbols/symbols.html

  the license of these files is the creative commons public
  domain dedication

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18183 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoexamples/armenian-article.lyx: fix typo
Uwe Stöhr [Wed, 2 May 2007 23:07:11 +0000 (23:07 +0000)]
examples/armenian-article.lyx: fix typo

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18182 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoinstaller: get rid of all NSIS compiler warnings
Uwe Stöhr [Wed, 2 May 2007 23:06:01 +0000 (23:06 +0000)]
installer: get rid of all NSIS compiler warnings

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18181 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoinstaller:
Uwe Stöhr [Wed, 2 May 2007 22:13:27 +0000 (22:13 +0000)]
installer:
- more initialization work for next version
- reflect latest SVN commits
- fix bug, see changelog

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18180 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoremove examples/TableExamples.lyx as its content is explained in detail in the Embedd...
Uwe Stöhr [Wed, 2 May 2007 21:50:19 +0000 (21:50 +0000)]
remove examples/TableExamples.lyx as its content is explained in detail in the EmbeddedObjects manual - the same as for decimal.lyx i deleted last week after JMarc gave his OK.

As I did for decimal.lyx I leave the file in examples/de until the EmbeddedObjects manual is translated and renamed it to a German name.
(Hartmut also updated this file today.)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18179 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agofix de_Userguide - necessary due to bug 3540
Uwe Stöhr [Wed, 2 May 2007 21:36:03 +0000 (21:36 +0000)]
fix de_Userguide - necessary due to bug 3540

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18178 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoEmbeddedObjects: fix some bugs reported by Hartmut
Uwe Stöhr [Wed, 2 May 2007 21:07:56 +0000 (21:07 +0000)]
EmbeddedObjects: fix some bugs reported by Hartmut

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18177 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agocmake: initial install support, only copying files is working
Peter Kümmel [Wed, 2 May 2007 20:59:48 +0000 (20:59 +0000)]
cmake: initial install support, only copying files is working

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18176 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agocmake: don't rebuild merges files on each cmake run, force rebuild by -Dmerge_rebuild=1
Peter Kümmel [Wed, 2 May 2007 20:47:47 +0000 (20:47 +0000)]
cmake: don't rebuild merges files on each cmake run, force rebuild by -Dmerge_rebuild=1

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18175 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoMinor language changes only
Christian Ridderström [Wed, 2 May 2007 20:43:39 +0000 (20:43 +0000)]
Minor language changes only

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18174 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoInstaller:
Uwe Stöhr [Wed, 2 May 2007 19:20:12 +0000 (19:20 +0000)]
Installer:
- initialize for next release
- small bugfix
- reflect cv.xxx removal

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18173 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoremove the Armenian characters from unicodesymbols as we now have proper support
Uwe Stöhr [Wed, 2 May 2007 19:10:51 +0000 (19:10 +0000)]
remove the Armenian characters from unicodesymbols as we now have proper support

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18172 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoscons update for cv
Jean-Marc Lasgouttes [Wed, 2 May 2007 11:58:38 +0000 (11:58 +0000)]
scons update for cv

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18170 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoremove class cv, now that it has been superceded by simplecv
Jean-Marc Lasgouttes [Wed, 2 May 2007 10:41:05 +0000 (10:41 +0000)]
remove class cv, now that it has been superceded by simplecv

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18169 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoremove useless SubSection declaration
Jean-Marc Lasgouttes [Wed, 2 May 2007 10:31:55 +0000 (10:31 +0000)]
remove useless SubSection declaration

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18168 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoupdate SCons
Uwe Stöhr [Wed, 2 May 2007 01:41:03 +0000 (01:41 +0000)]
update SCons

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18167 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoresolve makefile problem step 2
Uwe Stöhr [Wed, 2 May 2007 01:38:10 +0000 (01:38 +0000)]
resolve makefile problem step 2

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18166 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoresolve makefile problem step 1
Uwe Stöhr [Wed, 2 May 2007 01:37:09 +0000 (01:37 +0000)]
resolve makefile problem step 1

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18165 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoinstaller:
Uwe Stöhr [Tue, 1 May 2007 22:53:06 +0000 (22:53 +0000)]
installer:
- fix to Update Installer
- move InstallerStructure graphics

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18164 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoUpdate scons_manifest.py (separate .inc from layout directory) to make generated...
Bo Peng [Tue, 1 May 2007 22:04:21 +0000 (22:04 +0000)]
Update scons_manifest.py (separate .inc from layout directory) to make generated po files in the same order as what autotools generates

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18163 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agode_Userguide: image changes due to todays renaming of view_toc.xpm
Uwe Stöhr [Tue, 1 May 2007 21:16:27 +0000 (21:16 +0000)]
de_Userguide: image changes due to todays renaming of view_toc.xpm

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18162 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agolyx_1_5.py: better method to write preamble, suggested by Georg
Uwe Stöhr [Tue, 1 May 2007 21:14:03 +0000 (21:14 +0000)]
lyx_1_5.py: better method to write preamble, suggested by Georg

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18161 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoforgot to move also the biblio file with the CV-classes
Uwe Stöhr [Tue, 1 May 2007 18:44:40 +0000 (18:44 +0000)]
forgot to move also the biblio file with the CV-classes

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18160 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoinstaller: updates
Uwe Stöhr [Tue, 1 May 2007 18:21:56 +0000 (18:21 +0000)]
installer: updates

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18159 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agolanguages: whitespace fix
Uwe Stöhr [Tue, 1 May 2007 18:13:24 +0000 (18:13 +0000)]
languages: whitespace fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18158 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoLaTeXFeatures.h: fix tipo
Uwe Stöhr [Tue, 1 May 2007 18:12:31 +0000 (18:12 +0000)]
LaTeXFeatures.h: fix tipo

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18157 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoChanged comment character from ';' to '#*
Christian Ridderström [Tue, 1 May 2007 17:55:54 +0000 (17:55 +0000)]
Changed comment character from ';' to '#*

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18156 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agofile format change: support for Armenian
Uwe Stöhr [Tue, 1 May 2007 17:48:04 +0000 (17:48 +0000)]
file format change: support for Armenian

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18155 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoRestor 1.4.x behaviour: Don't touch the preamble QTextEdit if the preamble text is...
Abdelrazak Younes [Tue, 1 May 2007 17:33:04 +0000 (17:33 +0000)]
Restor 1.4.x behaviour: Don't touch the preamble QTextEdit if the preamble text is unchanged.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18154 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agoupdate installer structure graphic
Uwe Stöhr [Tue, 1 May 2007 14:27:51 +0000 (14:27 +0000)]
update installer structure graphic

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18153 a592a061-630c-0410-9148-cb99ea01b6c8

17 years agomore installer infrastructure changes:
Uwe Stöhr [Tue, 1 May 2007 14:21:21 +0000 (14:21 +0000)]
more installer infrastructure changes:

- hide LyX's console window
- update source code Readmes
- get rid of abi_util_fileassoc.nsh
- small uninstaller cleanup
- fix all known Update installer bugs

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18152 a592a061-630c-0410-9148-cb99ea01b6c8

17 years ago * po/*.po: fix one more message
Michael Schmitt [Tue, 1 May 2007 10:34:17 +0000 (10:34 +0000)]
* po/*.po: fix one more message

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@18151 a592a061-630c-0410-9148-cb99ea01b6c8