]> git.lyx.org Git - lyx.git/log
lyx.git
13 years agoI don't like negated logic. Especially not if it leads to the use of more !-operations.
Vincent van Ravesteijn [Sun, 24 Oct 2010 17:27:32 +0000 (17:27 +0000)]
I don't like negated logic. Especially not if it leads to the use of more !-operations.

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

13 years agovalidate version control status after buffer save-as, avoid that for saveBuffer()
Stephan Witt [Sun, 24 Oct 2010 17:14:10 +0000 (17:14 +0000)]
validate version control status after buffer save-as, avoid that for saveBuffer()

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

13 years agoFix bug #6967: Insert->Display Math should not insert a numbered formula and vice...
Vincent van Ravesteijn [Sun, 24 Oct 2010 16:12:22 +0000 (16:12 +0000)]
Fix bug #6967: Insert->Display Math should not insert a numbered formula and vice versa.

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

13 years agoinvalidate vcs data if user cancelled the registrer operation, otherwise the registre...
Stephan Witt [Sun, 24 Oct 2010 13:26:00 +0000 (13:26 +0000)]
invalidate vcs data if user cancelled the registrer operation, otherwise the registrer cannot be called again

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

13 years agoFix #6966.
Pavel Sanda [Sat, 23 Oct 2010 20:17:41 +0000 (20:17 +0000)]
Fix #6966.

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

13 years agovalidate version control status after buffer save or save-as
Stephan Witt [Sat, 23 Oct 2010 18:35:13 +0000 (18:35 +0000)]
validate version control status after buffer save or save-as

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

13 years agoswitch mouse to busy symbol every 3 seconds and then back to show the
Peter Kümmel [Sat, 23 Oct 2010 10:49:45 +0000 (10:49 +0000)]
switch mouse to busy symbol every 3 seconds and then back to show the
user something is done in the background

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

13 years agocompile fix.
Jürgen Spitzmüller [Sat, 23 Oct 2010 08:29:57 +0000 (08:29 +0000)]
compile fix.

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

13 years agoFix #6597: LyX Appears frozen if the process holding the clipboard is frozen
Vincent van Ravesteijn [Sat, 23 Oct 2010 00:21:58 +0000 (00:21 +0000)]
Fix #6597: LyX Appears frozen if the process holding the clipboard is frozen

Implements CacheMimeData type so that we only need to query the
clipboard once on startup and once each time the contents of the
clipboard change. This is important as Qt takes 5 seconds to time-out when the clipboard is non-responsive.

Patch by John McCabe-Dansted.

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

13 years agobind makes a copy of the arguments by default. This is secure if the
Peter Kümmel [Sat, 23 Oct 2010 00:06:22 +0000 (00:06 +0000)]
bind makes a copy of the arguments by default. This is secure if the
bound object survives the existance of the arguments, but it also breaks
"change by non-const reference"  parameter passing, like in
Alert::askForString. Here the arguments exists the whole bound function
call so we could pass by refernce.

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

13 years agoFix crashes and asserts if LyX doesn't have a view (on Mac for example).
Vincent van Ravesteijn [Fri, 22 Oct 2010 20:54:18 +0000 (20:54 +0000)]
Fix crashes and asserts if LyX doesn't have a view (on Mac for example).

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

13 years agoManual synchro with branch
Pavel Sanda [Fri, 22 Oct 2010 18:47:23 +0000 (18:47 +0000)]
Manual synchro with branch

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

13 years agoRestructure processFuncRequest* function family:
Vincent van Ravesteijn [Fri, 22 Oct 2010 18:08:21 +0000 (18:08 +0000)]
Restructure processFuncRequest* function family:

- move a comment back from to GuiApplication to GuiView.cpp, so we have the comment in the place where we decide to process the func request asynchronously;

- rename dispatchDelayed to processFuncRequestAsync to have the same terminology as in the other processFuncRequest* methods;

- introduce a new function processFuncRequest to complete the set of processFuncRequest* methods. It is strange that for the normal processFuncRequest one should suddenly use lyx::dispatch. Besides, I think it is good that the whole GUI will dispatch funcRequests through GuiApplication::processFuncRequest from now on;

- use the slotProcessFuncRequestQueue to relay to processFuncRequestQueue;

- properly camelBump addToFuncRequestQueue;

- group the implementation of the processFuncRequest* functions;

- document the side-effect of processFuncRequestAsync.

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

13 years agoAlso to trunk
Pavel Sanda [Fri, 22 Oct 2010 18:05:07 +0000 (18:05 +0000)]
Also to trunk

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

13 years agoGuiApplication.h cosmetics:
Vincent van Ravesteijn [Fri, 22 Oct 2010 17:53:09 +0000 (17:53 +0000)]
GuiApplication.h cosmetics:
- reorder some function declarations,
- remove some declarations from the list of functions that inherit from Application,
- add and clarify some comments,
- whitespace.

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

13 years agoTypo.
Richard Heck [Fri, 22 Oct 2010 17:08:57 +0000 (17:08 +0000)]
Typo.

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

13 years agoFix bug 6944: crash on drag and drop multiple files
Jürgen Spitzmüller [Fri, 22 Oct 2010 15:46:46 +0000 (15:46 +0000)]
Fix bug 6944: crash on drag and drop multiple files

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

13 years agoMake sweave process files with the correct encoding (#6625).
Jean-Marc Lasgouttes [Fri, 22 Oct 2010 07:51:39 +0000 (07:51 +0000)]
Make sweave process files with the correct encoding (#6625).

The required the introduction of the new converter token $$e, that holds
the iconv name of the latex file encoding.

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

13 years agodoc synchro with trunk
Pavel Sanda [Fri, 22 Oct 2010 00:22:08 +0000 (00:22 +0000)]
doc synchro with trunk

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

13 years ago- lyxsweave.R: set missing SVN EOL style and add missing makefile entry
Uwe Stöhr [Fri, 22 Oct 2010 00:10:18 +0000 (00:10 +0000)]
- lyxsweave.R: set missing SVN EOL style and add missing makefile entry

- lib/Makefile.am: add missing scripts

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

13 years agoscons_manifest.py: update SCons
Uwe Stöhr [Fri, 22 Oct 2010 00:08:13 +0000 (00:08 +0000)]
scons_manifest.py: update SCons

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

13 years ago(no log message)
Pavel Sanda [Thu, 21 Oct 2010 23:34:22 +0000 (23:34 +0000)]
(no log message)

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

13 years agoComment.
Richard Heck [Thu, 21 Oct 2010 22:04:06 +0000 (22:04 +0000)]
Comment.

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

13 years agouse QWaitCondition instead of QEventLoop for waiting on GUI thread-call finished...
Peter Kümmel [Thu, 21 Oct 2010 21:29:08 +0000 (21:29 +0000)]
use QWaitCondition instead of QEventLoop for waiting on GUI thread-call finished, it's cheaper

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

13 years agoRevert r35760, as suggested by Vincent.
Richard Heck [Thu, 21 Oct 2010 19:33:29 +0000 (19:33 +0000)]
Revert r35760, as suggested by Vincent.

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

13 years agoThis one didn't make it to Unicode for some reason.
Richard Heck [Thu, 21 Oct 2010 19:15:31 +0000 (19:15 +0000)]
This one didn't make it to Unicode for some reason.

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

13 years agoRestore should, uh, restore the initial state. Other half of #6964.
Richard Heck [Thu, 21 Oct 2010 18:25:15 +0000 (18:25 +0000)]
Restore should, uh, restore the initial state. Other half of #6964.

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

13 years agoFix bug #6964. Problem was that we always saw the first branch.
Richard Heck [Thu, 21 Oct 2010 18:20:12 +0000 (18:20 +0000)]
Fix bug #6964. Problem was that we always saw the first branch.

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

13 years agoMake this a switch.
Richard Heck [Thu, 21 Oct 2010 18:01:06 +0000 (18:01 +0000)]
Make this a switch.

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

13 years agoFix bug #6962. I hadn't see how these were being escaped.
Richard Heck [Thu, 21 Oct 2010 17:56:00 +0000 (17:56 +0000)]
Fix bug #6962. I hadn't see how these were being escaped.

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

13 years agoSimplify comment.
Richard Heck [Thu, 21 Oct 2010 17:53:21 +0000 (17:53 +0000)]
Simplify comment.

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

13 years ago* fr.po: update by Jean-Pierre.
Jürgen Spitzmüller [Thu, 21 Oct 2010 17:20:45 +0000 (17:20 +0000)]
* fr.po: update by Jean-Pierre.

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

13 years agoFix bug #6963: LaTeXUi.ui: add some accelerators and fix some clashes.
Vincent van Ravesteijn [Thu, 21 Oct 2010 17:06:06 +0000 (17:06 +0000)]
Fix bug #6963: LaTeXUi.ui: add some accelerators and fix some clashes.

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

13 years agoIntroduce helper script for Sweave. The first benefit is that
Jean-Marc Lasgouttes [Thu, 21 Oct 2010 17:02:05 +0000 (17:02 +0000)]
Introduce helper script for Sweave. The first benefit is that
Sweave.sty path is hardcoded if LaTeX cannot find it.

More to come.

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

13 years ago* de.po: some more translations
Jürgen Spitzmüller [Thu, 21 Oct 2010 14:22:06 +0000 (14:22 +0000)]
* de.po: some more translations

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

13 years agoDialogView: make GuiView the parent widget to partly solve bug #6710.
Abdelrazak Younes [Thu, 21 Oct 2010 13:40:49 +0000 (13:40 +0000)]
DialogView: make GuiView the parent widget to partly solve bug #6710.
This make sense anyway for all dialogs to be above the GuiView.

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

13 years ago* InsetCommandParams.cpp (prepareCommand):
Jürgen Spitzmüller [Thu, 21 Oct 2010 13:16:28 +0000 (13:16 +0000)]
* InsetCommandParams.cpp (prepareCommand):
- properly terminate LaTeX macros (reported in bug 6959).

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

13 years ago* de.po: revisions and new translations.
Jürgen Spitzmüller [Thu, 21 Oct 2010 10:51:52 +0000 (10:51 +0000)]
* de.po: revisions and new translations.

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

13 years agotypo
Jürgen Spitzmüller [Thu, 21 Oct 2010 10:33:46 +0000 (10:33 +0000)]
typo

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

13 years agoonly connect when needed
Peter Kümmel [Thu, 21 Oct 2010 08:02:09 +0000 (08:02 +0000)]
only connect when needed

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

13 years agoupdate .am files
Peter Kümmel [Thu, 21 Oct 2010 01:15:12 +0000 (01:15 +0000)]
update .am files

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

13 years agoenable EXPORT_in_THREAD to prevent gui calls in non gui-threads
Peter Kümmel [Thu, 21 Oct 2010 00:24:57 +0000 (00:24 +0000)]
enable EXPORT_in_THREAD to prevent gui calls in non gui-threads

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

13 years agono QtGui in support
Peter Kümmel [Thu, 21 Oct 2010 00:07:48 +0000 (00:07 +0000)]
no QtGui in support

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

13 years agoupdate SCons after r35735
Uwe Stöhr [Thu, 21 Oct 2010 00:04:33 +0000 (00:04 +0000)]
update SCons after r35735

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

13 years agofirst include config.h
Peter Kümmel [Wed, 20 Oct 2010 23:58:22 +0000 (23:58 +0000)]
first include config.h

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

13 years agoEmbeddedObjects.lyx: describe the new table cell alignment feature
Uwe Stöhr [Wed, 20 Oct 2010 23:56:00 +0000 (23:56 +0000)]
EmbeddedObjects.lyx: describe the new table cell alignment feature

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

13 years agoline ending
Peter Kümmel [Wed, 20 Oct 2010 23:51:31 +0000 (23:51 +0000)]
line ending

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

13 years agoadd generic helper class for calling functions in gui thread
Peter Kümmel [Wed, 20 Oct 2010 23:50:49 +0000 (23:50 +0000)]
add generic helper class for calling functions in gui thread

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

13 years agoGuiTabular.cpp: fix #6957
Uwe Stöhr [Wed, 20 Oct 2010 22:35:05 +0000 (22:35 +0000)]
GuiTabular.cpp: fix #6957

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

13 years agoTabularUi.ui: fix position of spacer to make alignment entry "At Decimal Separator...
Uwe Stöhr [Wed, 20 Oct 2010 22:33:32 +0000 (22:33 +0000)]
TabularUi.ui: fix position of spacer to make alignment entry "At Decimal Separator" readable

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

13 years agoUpdate it.po
Enrico Forestieri [Wed, 20 Oct 2010 14:31:19 +0000 (14:31 +0000)]
Update it.po

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

13 years ago* sk.po
Kornel Benko [Wed, 20 Oct 2010 05:25:05 +0000 (05:25 +0000)]
* sk.po

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

13 years agopo-files:
Uwe Stöhr [Wed, 20 Oct 2010 01:56:40 +0000 (01:56 +0000)]
po-files:
- remerge
- German translations in de.po

(sorry for remerging again but I needed this for the docs)

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

13 years agouse bind, is this really better?
Peter Kümmel [Wed, 20 Oct 2010 01:45:51 +0000 (01:45 +0000)]
use bind, is this really better?

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

13 years agoUserGuide.lyx: LyX supports now multirows
Uwe Stöhr [Wed, 20 Oct 2010 01:44:13 +0000 (01:44 +0000)]
UserGuide.lyx: LyX supports now multirows

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

13 years agoEmbeddedObjects.lyx: describe the new multirow feature
Uwe Stöhr [Wed, 20 Oct 2010 01:19:08 +0000 (01:19 +0000)]
EmbeddedObjects.lyx: describe the new multirow feature

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

13 years agostdmenus.inc: add entry for multirow
Uwe Stöhr [Wed, 20 Oct 2010 00:43:27 +0000 (00:43 +0000)]
stdmenus.inc: add entry for multirow

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

13 years agoEmbeddedObjects.lyx:
Uwe Stöhr [Wed, 20 Oct 2010 00:22:45 +0000 (00:22 +0000)]
EmbeddedObjects.lyx:
- update table toolbar and table settings description
- describe longtable alignment

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

13 years agoSpanish EmbeddedObjects.lyx: translations from Ignacio
Uwe Stöhr [Tue, 19 Oct 2010 20:33:58 +0000 (20:33 +0000)]
Spanish EmbeddedObjects.lyx: translations from Ignacio

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

13 years agoMake updateMacros() descend into tables. Fixes #6897.
Richard Heck [Tue, 19 Oct 2010 15:36:11 +0000 (15:36 +0000)]
Make updateMacros() descend into tables. Fixes #6897.

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

13 years agoCut and paste solution to get export working. The issue is that the old
Richard Heck [Tue, 19 Oct 2010 15:34:13 +0000 (15:34 +0000)]
Cut and paste solution to get export working. The issue is that the old
exportAndDestroy was calling:

    buffer->doExport(format, true, update_unincluded);

where "true" means: Leave it in the tempdir. We need false, which means
we need another parameter, if we're not doing it as cut and paste.

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

13 years agoRevert r35715. Didn't mean to commit both.
Richard Heck [Tue, 19 Oct 2010 15:33:39 +0000 (15:33 +0000)]
Revert r35715. Didn't mean to commit both.

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

13 years agoCut and paste solution to get export working. The issue is that the old
Richard Heck [Tue, 19 Oct 2010 15:10:13 +0000 (15:10 +0000)]
Cut and paste solution to get export working. The issue is that the old
exportAndDestroy was calling:
  buffer->doExport(format, true, update_unincluded);
where "true" means: Leave it in the tempdir. We need false, which means
we need another parameter, if we're not doing it as cut and paste.

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

13 years agoFix bug #6950: Cursor remains in waiting state after incompatible command.
Vincent van Ravesteijn [Tue, 19 Oct 2010 10:42:54 +0000 (10:42 +0000)]
Fix bug #6950: Cursor remains in waiting state after incompatible command.

P.S. How do we prevent other cases like this? By throwing exceptions, we never know whether it's assured that we will return to the function to call setBusy(false). In JAVA you always have to either make a function throwable or to catch the exception, but AFAICS you have to crawl through the code to find out whether a function can throw an exception.

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

13 years ago* sk.po
Kornel Benko [Tue, 19 Oct 2010 08:25:00 +0000 (08:25 +0000)]
* sk.po

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

13 years agoUserGuide.lyx:
Uwe Stöhr [Tue, 19 Oct 2010 01:17:59 +0000 (01:17 +0000)]
UserGuide.lyx:
- describe the new \nameref and refstyle features
- update links in bibliography

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

13 years agoEmbeddedObjects.lyx: - describe the new \nameref and refstyle features
Uwe Stöhr [Tue, 19 Oct 2010 01:17:19 +0000 (01:17 +0000)]
EmbeddedObjects.lyx: - describe the new \nameref and refstyle features

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

13 years agoGerman splash.lyx: remove version number from title
Uwe Stöhr [Tue, 19 Oct 2010 00:46:26 +0000 (00:46 +0000)]
German splash.lyx: remove version number from title

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

13 years agopo-files: remerge and German translations in de.po
Uwe Stöhr [Tue, 19 Oct 2010 00:38:49 +0000 (00:38 +0000)]
po-files: remerge and German translations in de.po

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

13 years agoSome cosmetics (from my local cosmetics branch).
Vincent van Ravesteijn [Mon, 18 Oct 2010 14:20:03 +0000 (14:20 +0000)]
Some cosmetics (from my local cosmetics branch).

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

13 years agoLet asyncBufferProcessing return a value also if EXPORT_in_THREAD is turned off.
Vincent van Ravesteijn [Mon, 18 Oct 2010 11:30:30 +0000 (11:30 +0000)]
Let asyncBufferProcessing return a value also if EXPORT_in_THREAD is turned off.

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

13 years agofix formatting
Peter Kümmel [Mon, 18 Oct 2010 10:59:23 +0000 (10:59 +0000)]
fix formatting

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

13 years agofix comment:
Peter Kümmel [Mon, 18 Oct 2010 10:55:01 +0000 (10:55 +0000)]
fix comment:
We have to copy the files because export is asynchronous now,
What about the children?

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

13 years agoFix bug #6869: Crash when unindenting empty lines in listings inset.
Vincent van Ravesteijn [Mon, 18 Oct 2010 10:48:29 +0000 (10:48 +0000)]
Fix bug #6869: Crash when unindenting empty lines in listings inset.

- Remove some duplicated code;
- Do not call par.getChar(0) when the par is empty.

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

13 years agoFor testing: export asynchronous, #412
Peter Kümmel [Mon, 18 Oct 2010 10:16:32 +0000 (10:16 +0000)]
For testing: export asynchronous, #412

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

13 years agoalso use update_unincluded for preview,
Peter Kümmel [Mon, 18 Oct 2010 09:35:33 +0000 (09:35 +0000)]
also use update_unincluded for preview,
maybe we could use bind here

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

13 years agosplit out common async code
Peter Kümmel [Mon, 18 Oct 2010 09:31:50 +0000 (09:31 +0000)]
split out common async code

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

13 years agoI assume this was a c&p error
Peter Kümmel [Mon, 18 Oct 2010 08:23:29 +0000 (08:23 +0000)]
I assume this was a c&p error

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

13 years agoprepare splitting out c&p code
Peter Kümmel [Mon, 18 Oct 2010 08:18:56 +0000 (08:18 +0000)]
prepare splitting out c&p code

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

13 years agoInvalid references
Kornel Benko [Mon, 18 Oct 2010 05:25:08 +0000 (05:25 +0000)]
Invalid references

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

13 years agoUserGuide.lyx: fix typos and a bug spotted by JR Hudson
Uwe Stöhr [Mon, 18 Oct 2010 03:36:15 +0000 (03:36 +0000)]
UserGuide.lyx: fix typos and a bug spotted by JR Hudson

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

13 years ago- UserGuide.lyx: squash some LaTeX-warnings
Uwe Stöhr [Mon, 18 Oct 2010 02:48:58 +0000 (02:48 +0000)]
- UserGuide.lyx: squash some LaTeX-warnings
- Italian UserGuide.lyx: update the document settings according to the other language versions

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

13 years agoJapanese EmbeddedObjects.lyx: update sec. 4.2 as for the other language versions
Uwe Stöhr [Mon, 18 Oct 2010 01:27:59 +0000 (01:27 +0000)]
Japanese EmbeddedObjects.lyx: update sec. 4.2 as for the other language versions

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

13 years agoMath.lyx: squash LaTeX-warnings
Uwe Stöhr [Mon, 18 Oct 2010 01:11:36 +0000 (01:11 +0000)]
Math.lyx: squash LaTeX-warnings

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

13 years agoEmbeddedObjects.lyx:
Uwe Stöhr [Mon, 18 Oct 2010 00:54:20 +0000 (00:54 +0000)]
EmbeddedObjects.lyx:
- describe how to use math in program listings
- squash some LaTeX warnings

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

13 years agoTutorial.lyx:
Uwe Stöhr [Sun, 17 Oct 2010 21:25:30 +0000 (21:25 +0000)]
Tutorial.lyx:
- squash some LaTeX-warnings
- update document settings of all language versions to the one of the English manual
(from now on nothing will be backported to branch for this file)

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

13 years agoSlovak Tutorial.lyx: save in latest fileformat and fix some settings
Uwe Stöhr [Sun, 17 Oct 2010 21:06:08 +0000 (21:06 +0000)]
Slovak Tutorial.lyx: save in latest fileformat and fix some settings

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

13 years agoMath.lyx: fix formatting
Uwe Stöhr [Sun, 17 Oct 2010 20:28:28 +0000 (20:28 +0000)]
Math.lyx: fix formatting

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

13 years agoIntro.lyx: fix some LaTeX warnings
Uwe Stöhr [Sun, 17 Oct 2010 20:15:43 +0000 (20:15 +0000)]
Intro.lyx: fix some LaTeX warnings

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

13 years agoFix bug #6953.
Richard Heck [Sun, 17 Oct 2010 18:46:35 +0000 (18:46 +0000)]
Fix bug #6953.

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

13 years agoIntro.lyx:
Uwe Stöhr [Sun, 17 Oct 2010 18:43:38 +0000 (18:43 +0000)]
Intro.lyx:
- correct accident renaming Additional.lyx -> Extended.lyx from last commit
- save file in latest file format (no more backporting to branch for this file)

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

13 years agoIntro.lyx: some typographic issues and a typo spotted by JR Hudson
Uwe Stöhr [Sun, 17 Oct 2010 18:25:53 +0000 (18:25 +0000)]
Intro.lyx: some typographic issues and a typo spotted by JR Hudson

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

13 years agoFix #6885. Alt+x shortcuts should be preserved for menus.
Pavel Sanda [Sun, 17 Oct 2010 17:49:21 +0000 (17:49 +0000)]
Fix #6885. Alt+x shortcuts should be preserved for menus.

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

13 years agoTen years old leftover.
Pavel Sanda [Sun, 17 Oct 2010 17:49:20 +0000 (17:49 +0000)]
Ten years old leftover.

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

13 years agoFix bug 6650: Error Messages Repeated
Peter Kümmel [Sun, 17 Oct 2010 12:06:47 +0000 (12:06 +0000)]
Fix bug 6650: Error Messages Repeated

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

13 years agoUse DispatchResult also in GuiView::dispatchVC to handle messages.
Peter Kümmel [Sun, 17 Oct 2010 10:44:53 +0000 (10:44 +0000)]
Use DispatchResult also in GuiView::dispatchVC to handle messages.
Make it possible to suppress messages stored in DispatchResult objects.
BUG: 6417

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

13 years ago* GuiDelimiter.cpp: disable cut and paste inside the listviews (bug 6942).
Jürgen Spitzmüller [Fri, 15 Oct 2010 07:12:49 +0000 (07:12 +0000)]
* GuiDelimiter.cpp: disable cut and paste inside the listviews (bug 6942).

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

13 years agoWhitespace.
Richard Heck [Thu, 14 Oct 2010 20:49:34 +0000 (20:49 +0000)]
Whitespace.

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

13 years agoComments.
Richard Heck [Thu, 14 Oct 2010 15:04:57 +0000 (15:04 +0000)]
Comments.

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

13 years agoMove the screen redraw call out of the selection-setting routine. This
Richard Heck [Thu, 14 Oct 2010 15:02:48 +0000 (15:02 +0000)]
Move the screen redraw call out of the selection-setting routine. This
avoids multiple screen redraws in some cases.

If someone knows how to fix the FIXMEs in GuiErrorList and
GuiSpellcheker, I'd really appreciate it.

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