]> git.lyx.org Git - lyx.git/log
lyx.git
14 years agoWhitespace.
Richard Heck [Tue, 5 Jan 2010 20:40:21 +0000 (20:40 +0000)]
Whitespace.

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

14 years agoWhy was there a 1 ? We only have to make sure that pos - 1 >= 0.
Vincent van Ravesteijn [Tue, 5 Jan 2010 16:34:52 +0000 (16:34 +0000)]
Why was there a 1 ? We only have to make sure that pos - 1 >= 0.

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

14 years agoFix comment.
Richard Heck [Tue, 5 Jan 2010 15:21:22 +0000 (15:21 +0000)]
Fix comment.

By the way, this is extremely inefficient. We have e.g. this code in
Buffer.cpp:
string target = func.getArg(0);
string target_name = func.getArg(1);
string command = func.getArg(2);
As a result, we parse the argument string three times! It seems to me
that we should either (a) expose a "getArgs" routine that returns a
vector<string> and let the caller extract them by position:
vector<string> args = func.getArgs();
string target = args[0];
etc;
or (b) cache the vector<string> in the FuncRequest object itself. The
latter wouldn't in fact require much memory, because these objects are
generally short-lived.

Opinions?

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

14 years agoKill warning: string::npos was the wrong type, and does not reflect what
Richard Heck [Tue, 5 Jan 2010 15:01:32 +0000 (15:01 +0000)]
Kill warning: string::npos was the wrong type, and does not reflect what
max is supposed to be.

JMarc: I assume you are intending to use this new method, getLongArg()?

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

14 years agoAsynchronous preview: cancel too close preview or update calls.
Abdelrazak Younes [Tue, 5 Jan 2010 13:33:29 +0000 (13:33 +0000)]
Asynchronous preview: cancel too close preview or update calls.

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

14 years agoAdd a FIXME for asynchronous export and preview and child buffers.
Abdelrazak Younes [Tue, 5 Jan 2010 13:29:01 +0000 (13:29 +0000)]
Add a FIXME for asynchronous export and preview and child buffers.

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

14 years agotypos.
Abdelrazak Younes [Tue, 5 Jan 2010 13:20:57 +0000 (13:20 +0000)]
typos.

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

14 years agoCleanup a bit the pargraph ids generation in order to (trying to) fix
Abdelrazak Younes [Tue, 5 Jan 2010 13:16:55 +0000 (13:16 +0000)]
Cleanup a bit the pargraph ids generation in order to (trying to) fix
#6415
Enrico please verify that reverse dvi is fixed.

* Text and InsetText: create two private constructors and transfer some
initialisation code from InsetText.

* Paragraph: id generation is transfered to Text. May be transfered to
Buffer in the future, we'll see.

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

14 years agorevert r32764.
Vincent van Ravesteijn [Mon, 4 Jan 2010 17:31:06 +0000 (17:31 +0000)]
revert r32764.

Still this code hurts my eyes.

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

14 years agoSimplify code introduced in r32761.
Vincent van Ravesteijn [Mon, 4 Jan 2010 17:15:24 +0000 (17:15 +0000)]
Simplify code introduced in r32761.

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

14 years agoMake sure that the size of the checkboxes is initialized correctly.
Vincent van Ravesteijn [Mon, 4 Jan 2010 17:14:08 +0000 (17:14 +0000)]
Make sure that the size of the checkboxes is initialized correctly.

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

14 years ago* GuiProgressView: cosmetics.
Vincent van Ravesteijn [Mon, 4 Jan 2010 17:12:50 +0000 (17:12 +0000)]
* GuiProgressView: cosmetics.

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

14 years agoSetup checboxes according to initial values from commandline.
Pavel Sanda [Mon, 4 Jan 2010 15:32:05 +0000 (15:32 +0000)]
Setup checboxes according to initial values from commandline.
ProgressView seems to be prepared for use.

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

14 years agoAdvanced F&R rework:
Tommaso Cucinotta [Mon, 4 Jan 2010 12:29:38 +0000 (12:29 +0000)]
Advanced F&R rework:
- scopes now handled in FindAndReplaceWidget, while lyxfind.cpp only searches within single buffer
- cursor().result().dispatched() now encodes whether a match was found or not, after LFUN_WORD_FINDADV dispatch
- removed a few unneeded functions
- followed a few cosmetic advices

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

14 years agoInclude omitted case, and fix underline.
Richard Heck [Sun, 3 Jan 2010 17:46:02 +0000 (17:46 +0000)]
Include omitted case, and fix underline.

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

14 years agoAdd statusbar checkbox sessions
Pavel Sanda [Sun, 3 Jan 2010 17:40:40 +0000 (17:40 +0000)]
Add statusbar checkbox sessions

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

14 years agoKeep in synchro with "All messages"
Pavel Sanda [Sun, 3 Jan 2010 17:40:34 +0000 (17:40 +0000)]
Keep in synchro with "All messages"

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

14 years agoProgressView quirks
Pavel Sanda [Sun, 3 Jan 2010 17:26:46 +0000 (17:26 +0000)]
ProgressView quirks

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

14 years agoFix some eoln issues in progress view.
Pavel Sanda [Sun, 3 Jan 2010 16:54:23 +0000 (16:54 +0000)]
Fix some eoln issues in progress view.

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

14 years agoLyXErr and statusbar messages hsould have different routes.
Pavel Sanda [Sun, 3 Jan 2010 16:30:54 +0000 (16:30 +0000)]
LyXErr and statusbar messages hsould have different routes.

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

14 years agoFix bug #6388
Abdelrazak Younes [Sun, 3 Jan 2010 11:00:21 +0000 (11:00 +0000)]
Fix bug #6388
* Buffer can be retrieved from currently set buffer_.
* detachMacroParameters() doesn't really need a Cursor.

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

14 years agoI finally find my way into horiz span of ProgressView.
Pavel Sanda [Sun, 3 Jan 2010 01:21:01 +0000 (01:21 +0000)]
I finally find my way into horiz span of ProgressView.

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

14 years agoFix bug #6426: Language not set correctly when inserting an Inset.
Vincent van Ravesteijn [Sun, 3 Jan 2010 01:13:55 +0000 (01:13 +0000)]
Fix bug #6426: Language not set correctly when inserting an Inset.

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

14 years agoSet correct tab
Pavel Sanda [Sun, 3 Jan 2010 00:55:27 +0000 (00:55 +0000)]
Set correct tab

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

14 years agoMove settings into grid
Pavel Sanda [Sun, 3 Jan 2010 00:38:07 +0000 (00:38 +0000)]
Move settings into grid

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

14 years agoNext whitespace
Pavel Sanda [Sun, 3 Jan 2010 00:11:58 +0000 (00:11 +0000)]
Next whitespace

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

14 years agoLFUNs.lyx update
Pavel Sanda [Sun, 3 Jan 2010 00:07:24 +0000 (00:07 +0000)]
LFUNs.lyx update

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

14 years agoRCS read-only toggling also doesn't work correctly for a long time.
Pavel Sanda [Sun, 3 Jan 2010 00:07:22 +0000 (00:07 +0000)]
RCS read-only toggling also doesn't work correctly for a long time.
http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg156626.html

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

14 years agoFix svn for windows devs
Pavel Sanda [Sat, 2 Jan 2010 23:34:27 +0000 (23:34 +0000)]
Fix svn for windows devs

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

14 years agowhitespace
Pavel Sanda [Sat, 2 Jan 2010 23:07:21 +0000 (23:07 +0000)]
whitespace

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

14 years agoAdd comment
Pavel Sanda [Sat, 2 Jan 2010 22:58:59 +0000 (22:58 +0000)]
Add comment

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

14 years agoPregressGuiView - resave in old designer, no update button needed.
Pavel Sanda [Sat, 2 Jan 2010 21:55:07 +0000 (21:55 +0000)]
PregressGuiView -  resave in old designer, no update button needed.

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

14 years agoNew keytest version from John McCabe-Dansted
Pavel Sanda [Sat, 2 Jan 2010 21:46:11 +0000 (21:46 +0000)]
New keytest version from John McCabe-Dansted
http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg156659.html

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

14 years agoNo need for the new LyXView::selectDocumentBuffer() method, same thing may be done...
Tommaso Cucinotta [Fri, 1 Jan 2010 11:14:01 +0000 (11:14 +0000)]
No need for the new LyXView::selectDocumentBuffer() method, same thing may be done with LFUN_SWITCH_BUFFER (vfr advice).

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

14 years agoWhen reloading a child document, reset the parent of the child to the parent of the...
Vincent van Ravesteijn [Fri, 1 Jan 2010 03:11:56 +0000 (03:11 +0000)]
When reloading a child document, reset the parent of the child to the parent of the child and not to the master.

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

14 years agoDo not clear the default master setting when cancelling the browse dialog.
Vincent van Ravesteijn [Fri, 1 Jan 2010 02:45:22 +0000 (02:45 +0000)]
Do not clear the default master setting when cancelling the browse dialog.

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

14 years agoRemove unneeded std::.
Vincent van Ravesteijn [Fri, 1 Jan 2010 02:43:44 +0000 (02:43 +0000)]
Remove unneeded std::.

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

14 years agoNotes update.
Richard Heck [Fri, 1 Jan 2010 02:42:23 +0000 (02:42 +0000)]
Notes update.

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

14 years agoXHTML output for lists of figures, tables, etc.
Richard Heck [Fri, 1 Jan 2010 02:41:26 +0000 (02:41 +0000)]
XHTML output for lists of figures, tables, etc.

Thanks to Abdel for making this so easy. I'm just stealing the TOCs on
the sidebar.

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

14 years agoUpdate User Guide to current format.
Richard Heck [Fri, 1 Jan 2010 02:40:31 +0000 (02:40 +0000)]
Update User Guide to current format.

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

14 years agoA comment, and a minor change.
Richard Heck [Fri, 1 Jan 2010 02:08:22 +0000 (02:08 +0000)]
A comment, and a minor change.

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

14 years agoRe-organize InsetTOC to prepare for other TO*s.
Richard Heck [Fri, 1 Jan 2010 01:45:02 +0000 (01:45 +0000)]
Re-organize InsetTOC to prepare for other TO*s.

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

14 years agoUpdate notes.
Richard Heck [Fri, 1 Jan 2010 01:44:42 +0000 (01:44 +0000)]
Update notes.

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

14 years agoNotes.
Richard Heck [Thu, 31 Dec 2009 23:40:57 +0000 (23:40 +0000)]
Notes.

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

14 years agoAdd a comment and update notes.
Richard Heck [Thu, 31 Dec 2009 23:31:30 +0000 (23:31 +0000)]
Add a comment and update notes.

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

14 years agoMostly comments about InsetMathSplit, which more or less works.
Richard Heck [Thu, 31 Dec 2009 23:28:19 +0000 (23:28 +0000)]
Mostly comments about InsetMathSplit, which more or less works.

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

14 years agoHappy new year!
Vincent van Ravesteijn [Thu, 31 Dec 2009 23:00:07 +0000 (23:00 +0000)]
Happy new year!

The best and no more typos wished for 2010!

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

14 years agoThese are in lib/symbols, so should have been caught by the first test:
Richard Heck [Thu, 31 Dec 2009 22:31:12 +0000 (22:31 +0000)]
These are in lib/symbols, so should have been caught by the first test:

# split environments with optional valign argument.
# the others (split and alignedat) are hardcoded.
aligned           split       none
gathered          split       none
# from Morten H\o gholm's mathtools.sty:
lgathered         split       none
rgathered         split       none

Right? Someone tell me if that is wrong.

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

14 years agoMore notes.
Richard Heck [Thu, 31 Dec 2009 22:21:21 +0000 (22:21 +0000)]
More notes.

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

14 years agoUpdate notes.
Richard Heck [Thu, 31 Dec 2009 22:10:39 +0000 (22:10 +0000)]
Update notes.

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

14 years agoFix comments and whitespace.
Richard Heck [Thu, 31 Dec 2009 22:03:15 +0000 (22:03 +0000)]
Fix comments and whitespace.

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

14 years agoMathML for XArrow.
Richard Heck [Thu, 31 Dec 2009 22:02:19 +0000 (22:02 +0000)]
MathML for XArrow.

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

14 years agoMathML for Stackrel.
Richard Heck [Thu, 31 Dec 2009 21:54:00 +0000 (21:54 +0000)]
MathML for Stackrel.

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

14 years agoMathML for Underset. And fix Overset.
Richard Heck [Thu, 31 Dec 2009 21:48:56 +0000 (21:48 +0000)]
MathML for Underset. And fix Overset.

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

14 years agoMathML for Overset.
Richard Heck [Thu, 31 Dec 2009 21:44:12 +0000 (21:44 +0000)]
MathML for Overset.

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

14 years agoFix MathML for binominals.
Richard Heck [Thu, 31 Dec 2009 21:22:04 +0000 (21:22 +0000)]
Fix MathML for binominals.

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

14 years agoWe do not need special treatment of differentials for MathML.
Richard Heck [Thu, 31 Dec 2009 21:09:28 +0000 (21:09 +0000)]
We do not need special treatment of differentials for MathML.

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

14 years agoMathML for MathCases.
Richard Heck [Thu, 31 Dec 2009 21:01:00 +0000 (21:01 +0000)]
MathML for MathCases.

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

14 years agoFix up the InsetMathGrid output: detect better if we have a table, and
Richard Heck [Thu, 31 Dec 2009 21:00:49 +0000 (21:00 +0000)]
Fix up the InsetMathGrid output: detect better if we have a table, and
use appropriate tags.

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

14 years agoMBox is currently inactive, but in case it becomes active....
Richard Heck [Thu, 31 Dec 2009 20:44:09 +0000 (20:44 +0000)]
MBox is currently inactive, but in case it becomes active....

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

14 years agoMathML for MathBox and such.
Richard Heck [Thu, 31 Dec 2009 20:36:34 +0000 (20:36 +0000)]
MathML for MathBox and such.

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

14 years agoFix MathML output for MathBox, as suggested in the FIXME.
Richard Heck [Thu, 31 Dec 2009 19:49:29 +0000 (19:49 +0000)]
Fix MathML output for MathBox, as suggested in the FIXME.

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

14 years agoRevert r32673 and remove the extra redraw and setFocus calls.
Vincent van Ravesteijn [Thu, 31 Dec 2009 19:46:26 +0000 (19:46 +0000)]
Revert r32673 and remove the extra redraw and setFocus calls.

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

14 years agoSpecial handing of space characters during text output.
Richard Heck [Thu, 31 Dec 2009 19:40:36 +0000 (19:40 +0000)]
Special handing of space characters during text output.

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

14 years agoFix some issues with textmode. We'll let SetMode() handle as much of
Richard Heck [Thu, 31 Dec 2009 19:35:56 +0000 (19:35 +0000)]
Fix some issues with textmode. We'll let SetMode() handle as much of
this as possible for us.

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

14 years agoUpdate notes.
Richard Heck [Thu, 31 Dec 2009 18:57:04 +0000 (18:57 +0000)]
Update notes.

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

14 years agoDon't wrap numbers in text in <mn>.
Richard Heck [Thu, 31 Dec 2009 18:56:55 +0000 (18:56 +0000)]
Don't wrap numbers in text in <mn>.

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

14 years agoWrap text in <mtext>, not <mrow>.
Richard Heck [Thu, 31 Dec 2009 18:53:40 +0000 (18:53 +0000)]
Wrap text in <mtext>, not <mrow>.

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

14 years agoA little debugging output.
Richard Heck [Thu, 31 Dec 2009 18:40:20 +0000 (18:40 +0000)]
A little debugging output.

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

14 years agoUse SetMode() to manage text and math mode.
Richard Heck [Thu, 31 Dec 2009 18:38:01 +0000 (18:38 +0000)]
Use SetMode() to manage text and math mode.

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

14 years agoA simple version of ModeSpecifier for MathStream.
Richard Heck [Thu, 31 Dec 2009 18:37:09 +0000 (18:37 +0000)]
A simple version of ModeSpecifier for MathStream.

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

14 years agoFIXME.
Richard Heck [Thu, 31 Dec 2009 17:33:22 +0000 (17:33 +0000)]
FIXME.

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

14 years agoUpdate notes.
Richard Heck [Thu, 31 Dec 2009 17:31:58 +0000 (17:31 +0000)]
Update notes.

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

14 years agoFix MathML output of wide characters.
Richard Heck [Thu, 31 Dec 2009 17:31:13 +0000 (17:31 +0000)]
Fix MathML output of wide characters.

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

14 years agoUpdate notes.
Richard Heck [Thu, 31 Dec 2009 17:00:21 +0000 (17:00 +0000)]
Update notes.

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

14 years agoMathML for InsetMathFont. Unfortunately, this does not seem to render at
Richard Heck [Thu, 31 Dec 2009 16:59:56 +0000 (16:59 +0000)]
MathML for InsetMathFont. Unfortunately, this does not seem to render at
the moment in Firefox, but it is the right way to do it.

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

14 years agoUpdate the GuiLabel view when the document is read-only. Also disable the text field.
Vincent van Ravesteijn [Thu, 31 Dec 2009 16:47:36 +0000 (16:47 +0000)]
Update the GuiLabel view when the document is read-only. Also disable the text field.

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

14 years agoUpdate the GuiInfo dialog also when the document is read-only. A dialog that does...
Vincent van Ravesteijn [Thu, 31 Dec 2009 16:47:02 +0000 (16:47 +0000)]
Update the GuiInfo dialog also when the document is read-only. A dialog that does not dispatch a single LFUN (see getLfun()) but is buffer dependent (see isBufferDependent()) should implement the canApply function (if I'm correct).

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

14 years agoUpdate the view also when the document is read-only.
Vincent van Ravesteijn [Thu, 31 Dec 2009 16:43:43 +0000 (16:43 +0000)]
Update the view also when the document is read-only.

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

14 years agoMathML for InsetMathBoldSymbol.
Richard Heck [Thu, 31 Dec 2009 16:39:37 +0000 (16:39 +0000)]
MathML for InsetMathBoldSymbol.

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

14 years agoStyle.
Richard Heck [Thu, 31 Dec 2009 16:34:55 +0000 (16:34 +0000)]
Style.

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

14 years agoProvide for the possibility of deferred material, per Andre's excellent
Richard Heck [Thu, 31 Dec 2009 15:52:57 +0000 (15:52 +0000)]
Provide for the possibility of deferred material, per Andre's excellent
suggestion. Now I wish I'd done XHTMLStream the same way....

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

14 years agoWhitespace.
Richard Heck [Thu, 31 Dec 2009 15:52:16 +0000 (15:52 +0000)]
Whitespace.

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

14 years agoRevert r32684, per Andre's suggestion.
Richard Heck [Thu, 31 Dec 2009 15:46:39 +0000 (15:46 +0000)]
Revert r32684, per Andre's suggestion.

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

14 years agoConstify some functions and correct a typo.
Vincent van Ravesteijn [Thu, 31 Dec 2009 14:40:02 +0000 (14:40 +0000)]
Constify some functions and correct a typo.

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

14 years agoFix bug #6332: Do not paint the cursor after a resize event when it should be invisible.
Vincent van Ravesteijn [Thu, 31 Dec 2009 13:46:10 +0000 (13:46 +0000)]
Fix bug #6332: Do not paint the cursor after a resize event when it should be invisible.

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

14 years agoNow, current buffer is marked as dirty (instead of document buffer) when typing or...
Tommaso Cucinotta [Thu, 31 Dec 2009 12:22:11 +0000 (12:22 +0000)]
Now, current buffer is marked as dirty (instead of document buffer) when typing or doing other editing actions.

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

14 years agoMathML for InsetMathBig.
Richard Heck [Thu, 31 Dec 2009 04:16:45 +0000 (04:16 +0000)]
MathML for InsetMathBig.

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

14 years agoIntroduce a return value for mathmlize(). We will need this to be able
Richard Heck [Thu, 31 Dec 2009 03:50:12 +0000 (03:50 +0000)]
Introduce a return value for mathmlize(). We will need this to be able
to defer labels.

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

14 years agoSome BufferParams for XHTML output.
Richard Heck [Wed, 30 Dec 2009 22:22:33 +0000 (22:22 +0000)]
Some BufferParams for XHTML output.

These are not actually implemented yet, but I wanted to make sure to get
them into the format now, so even if I can't implement them before the
1.7 release, I can do so during the release cycle, without a format
change. I don't expect that to happen, but you never know....

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

14 years agoCode cleanup.
Tommaso Cucinotta [Wed, 30 Dec 2009 22:21:23 +0000 (22:21 +0000)]
Code cleanup.

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

14 years agoMake gcc happy.
Richard Heck [Wed, 30 Dec 2009 22:17:39 +0000 (22:17 +0000)]
Make gcc happy.

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

14 years agoImplemented S_OPEN_BUFFERS scope in Advanced Find feature (keep searching and find...
Tommaso Cucinotta [Wed, 30 Dec 2009 21:50:55 +0000 (21:50 +0000)]
Implemented S_OPEN_BUFFERS scope in Advanced Find feature (keep searching and find all occurrences within all open buffers).

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

14 years agoCosmetics: removed unneeded std::
Tommaso Cucinotta [Wed, 30 Dec 2009 18:58:20 +0000 (18:58 +0000)]
Cosmetics: removed unneeded std::

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

14 years agoImplemented the "Current Buffer" & "Current (Master) Document" scopes in the Advanced...
Tommaso Cucinotta [Wed, 30 Dec 2009 18:40:18 +0000 (18:40 +0000)]
Implemented the "Current Buffer" & "Current (Master) Document" scopes in the Advanced Find and Replace feature.

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

14 years agouse lfun
Peter Kümmel [Wed, 30 Dec 2009 17:15:00 +0000 (17:15 +0000)]
use lfun

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

14 years agouse template instead of macro,
Peter Kümmel [Wed, 30 Dec 2009 15:37:14 +0000 (15:37 +0000)]
use template instead of macro,
no template parsing in debug.h

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

14 years agono stl includes in debug.h
Peter Kümmel [Wed, 30 Dec 2009 15:09:49 +0000 (15:09 +0000)]
no stl includes in debug.h
change Debug API

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

14 years agolevels are not exclusive
Peter Kümmel [Wed, 30 Dec 2009 14:48:47 +0000 (14:48 +0000)]
levels are not exclusive

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

14 years agoNow, on C-S-f, only the findWA cursor remains visible and blinking, as it should be
Tommaso Cucinotta [Tue, 29 Dec 2009 17:21:09 +0000 (17:21 +0000)]
Now, on C-S-f, only the findWA cursor remains visible and blinking, as it should be
(formerly, the replaceWA cursor used to remain visible but non-blinking).

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