]> git.lyx.org Git - lyx.git/log
lyx.git
17 years ago* messages.h:
Abdelrazak Younes [Sun, 14 Jan 2007 10:37:14 +0000 (10:37 +0000)]
* messages.h:
  - getMessages(), getGuiMessages(): new global function definitions

* lyx_main.C: implementation of getMessages() and getGuiMessages().

* LyX class:
  - getMessages(), getGuiMessages(), setGuiLanguage(): new interface for Messages access.

* LyX::Singletons class:
  - messages_: new container for Messages objects.

* Buffer::Impl::messages is now a pointer to the singleton defined in lyx_main.C.

* gettext.C: _() uses the global getGuiMessages() instead of the local static Messages object.

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

17 years ago- In order to properly cache <language, Messages> pair I needs to get rid of the...
Abdelrazak Younes [Sun, 14 Jan 2007 09:55:08 +0000 (09:55 +0000)]
- In order to properly cache <language, Messages> pair I needs to get rid of the pimpl. This was not necessary anyway because minimal  header change is needed (<map> is added and <boost/scoped_ptr> is removed).

- I changed (again) the get() interface to return  full copy instead of const reference because the no ENABLE_NLS case was not working.

- I put the C++ example implementation at the end of messages.C.

- I did some header cleanup in messages.C.

This will be the last change to the Messages class.

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

17 years agoAdd two files that are included by the beamer example file and that I forgot.
Georg Baum [Sat, 13 Jan 2007 21:08:13 +0000 (21:08 +0000)]
Add two files that are included by the beamer example file and that I forgot.
Found out by Jean-Pierre Chretien.

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

17 years agofix completely stupid commit.
Abdelrazak Younes [Sat, 13 Jan 2007 20:05:48 +0000 (20:05 +0000)]
fix completely stupid commit.

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

17 years agoFix bug 2138: copy and paste should preserve formatting between different
Georg Baum [Sat, 13 Jan 2007 18:29:50 +0000 (18:29 +0000)]
Fix bug 2138: copy and paste should preserve formatting between different
LyX instances. This re-enables copy/paste from the internal clipboard on
OS X (currently broken since Clipboard::isInternal() always returns false for
some reason).

* src/insets/insettabular.C
(InsetTabular::doDispatch): adjust to clipboard interface change
(InsetTabular::copySelection): ditto

* src/mathed/InsetMathGrid.C
(InsetMathGrid::doDispatch): ditto

* src/mathed/InsetMathNest.C
(InsetMathNest::doDispatch): ditto

* src/buffer.[Ch]
(Buffer::readString): New method: Read document from a string
(Buffer::readFile): Change return value from bool to enum (needed
for readString). Return wrongversion if we are reading from a string
and the version does not match.
(Buffer::do_writeFile): make public and rename to write

* src/CutAndPaste.C
(putClipboard): New helper, put stuff to the system clipboard
(void copySelectionHelper): Use putClipboard instead of
theClipboard().put()
(void copySelection): ditto
(void pasteClipboard): new method for pasting in text
(void pasteParagraphList):

* src/frontends/Clipboard.h
(Clipboard::get): Rename to getAsText
(Clipboard::getAsLyX): New method for getting the system clipboard
in LyX format
(Clipboard::hasLyXContents): New method telling whether there is LyX
contents in the clipboard

* src/frontends/qt4/GuiClipboard.[Ch]: Implement the new methods

* src/text3.C
(LyXText::dispatch): Use pasteClipboard for pasting the system
clipboard

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

17 years ago- rename CacheType
Abdelrazak Younes [Sat, 13 Jan 2007 17:10:39 +0000 (17:10 +0000)]
- rename CacheType
- replace static string with private member
- test the success of the cache insertion

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

17 years agoChange lyx2lyx conversion and LaTeX export of documents with
Georg Baum [Sat, 13 Jan 2007 14:36:54 +0000 (14:36 +0000)]
Change lyx2lyx conversion and LaTeX export of documents with
\inputencoding default

* src/paragraph_pimpl.C
(isEncoding): Explain why bparams.inputenc == "default" is ignored

* src/bufferparams.C
(BufferParams::encoding): Determine the encoding from the language
for inputenc == "default"

* src/buffer.h
(writeLaTeXSource): Mention inputenc == "default" in documentation

* src/bufferparams.h
(inputenc): Update documentation of "default"

* src/output_latex.C
(switchEncoding): Switch the encoding also for inputenc == "default",
but don't output \inputencoding commands in that case

* lib/lyx2lyx/LyX.py
(get_encoding): Determine the encoding from the language for
inputencoding == "default"

* lib/lyx2lyx/lyx_1_5.py
(convert_multiencoding): ditto

* development/FORMAT: Update documentation of \inputencoding default

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

17 years agowhitespace only again
Uwe Stöhr [Sat, 13 Jan 2007 14:19:58 +0000 (14:19 +0000)]
whitespace only again

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

17 years ago* src/frontends/qt4/QGraphicsDialog.C:
Jürgen Spitzmüller [Sat, 13 Jan 2007 10:33:04 +0000 (10:33 +0000)]
* src/frontends/qt4/QGraphicsDialog.C:
- allow double values in the bounding box widgets (bug 3055, 3056).

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

17 years agoMessages:
Abdelrazak Younes [Sat, 13 Jan 2007 09:31:47 +0000 (09:31 +0000)]
Messages:
- cache_: new cache for gettext translated string.

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

17 years agowhitespace only -- improve readability
Uwe Stöhr [Sat, 13 Jan 2007 02:25:14 +0000 (02:25 +0000)]
whitespace only -- improve readability

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

17 years agoAdd a const. A second const as in:
Abdelrazak Younes [Fri, 12 Jan 2007 10:19:51 +0000 (10:19 +0000)]
Add a const. A second const as in:
  InsetBase const * const nextinset = = nextInset();

is not possible because InsetBase::asInsetMath() is not const.

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

17 years agoMake sure that all inputed filenames are in internal style, and avoid
Enrico Forestieri [Fri, 12 Jan 2007 03:19:58 +0000 (03:19 +0000)]
Make sure that all inputed filenames are in internal style, and avoid
a bug on Windows due to an unnecessary conversion to external style.

* src/insets/ExternalSupport.C
(subst_path): avoid a bug in the external material inset on Windows
by don't using external_path. The filename will be quoted and thus
there will be no problems with forward slashes.

* src/frontends/qt4/QGraphics.C
* src/frontends/qt4/QExternal.C
* src/frontends/qt4/QInclude.C:
(Qxxx::apply): On Windows, the user could input an absolute path in
native style by hand (without using the file dialog), so make sure
that no backslashes can slip in by this way.

* src/frontends/qt4/QPrefsDialog.C
(internal_path_list, external_path_list): new wrappers for the
corresponding functions in the os namespace.
(PrefPaths::apply): make sure that path_prefix is stored in the
internal style, i.e., without backslashes.
(PrefPaths::update): make sure that path_prefix is displayed to
the user in the native style.

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

17 years agooptimization.
Abdelrazak Younes [Thu, 11 Jan 2007 22:56:21 +0000 (22:56 +0000)]
optimization.

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

17 years agotiny optimization.
Abdelrazak Younes [Thu, 11 Jan 2007 22:38:37 +0000 (22:38 +0000)]
tiny optimization.

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

17 years agotiny optimisation.
Abdelrazak Younes [Thu, 11 Jan 2007 22:38:00 +0000 (22:38 +0000)]
tiny optimisation.

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

17 years agoLog:
Enrico Forestieri [Thu, 11 Jan 2007 21:22:18 +0000 (21:22 +0000)]
Log:
Move OS dependent code where it belongs.

* src/lyx_cb.C:
Remove unused include

* src/support/os.h
* src/support/os_unix.C
* src/support/os_win32.C
* src/support/os_cygwin.C:
Move here the code from fontutils.[Ch]

* src/support/os_cygwin.C
(external_path, external_path_list): don't differentiate anymore
on Qt/X11 or Qt/Win builds.

* src/support/environment.C
(setEnvPath): get rid of the #ifdef for cygwin.

* src/lyx_main.C
(LyX::exec): addFontResources and restoreFontResources are now
in the os namespace.

* src/support/Makefile.am
* src/client/Makefile.am
* src/tex2lyx/Makefile.am
* development/scons/scons_manifest.py:
Updated

* src/support/fontutils.[Ch]:
Removed

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

17 years agoopen TOC dialog and switching doc crash
Peter Kümmel [Thu, 11 Jan 2007 20:57:47 +0000 (20:57 +0000)]
open TOC dialog and switching doc crash

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

17 years agotiny optimisation.
Abdelrazak Younes [Thu, 11 Jan 2007 18:50:39 +0000 (18:50 +0000)]
tiny optimisation.

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

17 years agotiny optimisation.
Abdelrazak Younes [Thu, 11 Jan 2007 18:25:11 +0000 (18:25 +0000)]
tiny optimisation.

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

17 years agorevert mistake.
Abdelrazak Younes [Thu, 11 Jan 2007 18:20:20 +0000 (18:20 +0000)]
revert mistake.

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

17 years agooptimization.
Abdelrazak Younes [Thu, 11 Jan 2007 18:05:09 +0000 (18:05 +0000)]
optimization.

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

17 years agooptimization.
Abdelrazak Younes [Thu, 11 Jan 2007 17:40:23 +0000 (17:40 +0000)]
optimization.

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

17 years agooptimization.
Abdelrazak Younes [Thu, 11 Jan 2007 16:38:08 +0000 (16:38 +0000)]
optimization.

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

17 years agoFix bug 3092, use both pit and id to keep track of bookmarks.
Bo Peng [Thu, 11 Jan 2007 16:01:10 +0000 (16:01 +0000)]
Fix bug 3092, use both pit and id to keep track of bookmarks.
* src/session.h/C: save pit instead of id
* src/lyxfunc.h/C: gotoBookmark function
* src/BufferView.h/C: proper update of bookmarks

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

17 years agooptimization.
Abdelrazak Younes [Thu, 11 Jan 2007 15:58:26 +0000 (15:58 +0000)]
optimization.

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

17 years agoOptimize buffer-switch: do first updateLabels() on opening instead of at each buffer...
Abdelrazak Younes [Thu, 11 Jan 2007 08:34:23 +0000 (08:34 +0000)]
Optimize buffer-switch: do first updateLabels() on opening instead of at each buffer switching.

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

17 years ago po/de.po: tiny update
Michael Schmitt [Wed, 10 Jan 2007 21:54:04 +0000 (21:54 +0000)]
po/de.po: tiny update

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

17 years ago * po/*.po: remerge
Michael Schmitt [Wed, 10 Jan 2007 21:28:29 +0000 (21:28 +0000)]
* po/*.po: remerge

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

17 years agoAdd more precise comment
Georg Baum [Wed, 10 Jan 2007 21:06:09 +0000 (21:06 +0000)]
Add more precise comment

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

17 years agoremove obsolete comment
Georg Baum [Wed, 10 Jan 2007 20:59:32 +0000 (20:59 +0000)]
remove obsolete comment

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

17 years agoFix encoding problem when reading the latex log file
Enrico Forestieri [Wed, 10 Jan 2007 18:12:52 +0000 (18:12 +0000)]
Fix encoding problem when reading the latex log file

* src/LaTeX.C
(LaTeX::scanLogFile): use from_local8bit instead of from_utf8.

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

17 years agoFix another non-ascii filename related assertion
Enrico Forestieri [Wed, 10 Jan 2007 17:18:41 +0000 (17:18 +0000)]
Fix another non-ascii filename related assertion

* src/frontends/qt4/QErrorList.C
(QErrorList::update_contents): use from_utf8 instead of from_ascii.

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

17 years agofix cursor movements.
Abdelrazak Younes [Wed, 10 Jan 2007 10:59:18 +0000 (10:59 +0000)]
fix cursor movements.

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

17 years agoPartially revert changeset 16635.
Enrico Forestieri [Wed, 10 Jan 2007 04:24:36 +0000 (04:24 +0000)]
Partially revert changeset 16635.

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

17 years agoFix encoding of filenames in python scripts
Enrico Forestieri [Wed, 10 Jan 2007 03:42:06 +0000 (03:42 +0000)]
Fix encoding of filenames in python scripts

* lib/scripts/fig2pstex.py
* lib/scripts/fig2pdftex.py
* lib/scripts/fig_copy.py
* lib/scripts/fen2ascii.py:
convert filenames from utf8 to the default locale encoding.

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

17 years agoFix problem with non-ascii filenames in include inset
Enrico Forestieri [Wed, 10 Jan 2007 00:30:49 +0000 (00:30 +0000)]
Fix problem with non-ascii filenames in include inset

* src/insets/insetinclude.C
(InsetInclude::getScreenLabel): use from_utf8 instead of from_ascii

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

17 years agoMake the output of \inputencoding commands (and the change of output
Georg Baum [Tue, 9 Jan 2007 19:25:40 +0000 (19:25 +0000)]
Make the output of \inputencoding commands (and the change of output
encodings) more fine grained: From paragraph level to individual character
level. The inputenc package supports that since at least 2000.

* src/insets/insetbase.h
(latex): Document the differences between output to a string stream
and a file stream

* src/buffer.h
(writeLaTeXSource): ditto

* src/output_latex.h
(latexParagraphs): ditto
(switchEncoding): new function to change the encoding of a stream
(and output \inputencoding commands)

* src/paragraph_pimpl.C
(Paragraph::Pimpl::simpleTeXSpecialC): Adjust to latexWriteEndChanges
changes

* src/support/docstream.[Ch]
(setEncoding, operator<<): New stream modifier that changes the
encoding of file streams

* src/lyxfont.[Ch]
(LyXFont::latexWriteStartChanges): Change stream encoding if needed
(LyXFont::latexWriteEndChanges): Change stream encoding if needed

* src/lyxfont.h
(public:):

* src/paragraph.C
(Paragraph::simpleTeXOnePar): Adjust to latexWriteStartChanges and latexWriteEndChanges changes
(bool Paragraph::simpleTeXOnePar):
(bool Paragraph::simpleTeXOnePar):
(bool Paragraph::simpleTeXOnePar):
(bool Paragraph::simpleTeXOnePar):
(bool Paragraph::simpleTeXOnePar):

* src/output_latex.C
(TeXOnePar): Remove the ugly hack to for wencoding changes and use
switchEncoding instead. A nice side effect is that the old hack would
not work if the main language encoding is latin1 and a character
would be mapped to a cedilla in the "fake ucs4" encoding, because
iconv refuses to convert such a character to latin1, although it
exists in latin1 (it wants to attach it to a base character).

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

17 years agoAdd some documentation for findtexfile
Georg Baum [Tue, 9 Jan 2007 19:10:29 +0000 (19:10 +0000)]
Add some documentation for findtexfile

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

17 years agoBookmarks: change from LIFO to FIFO
Bo Peng [Tue, 9 Jan 2007 18:13:29 +0000 (18:13 +0000)]
Bookmarks: change from LIFO to FIFO

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

17 years agosmall optimization and code formatting.
Abdelrazak Younes [Tue, 9 Jan 2007 15:48:04 +0000 (15:48 +0000)]
small optimization and code formatting.

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

17 years agomore Sweave commands from Gregor Gorjanc
Georg Baum [Tue, 9 Jan 2007 08:38:17 +0000 (08:38 +0000)]
more Sweave commands from Gregor Gorjanc

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

17 years ago* status.15x: remove bogus report.
Jürgen Spitzmüller [Tue, 9 Jan 2007 07:12:20 +0000 (07:12 +0000)]
* status.15x: remove bogus report.

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

17 years ago* src/changes.C: two changes of type UNCHANGED are always equals
Michael Schmitt [Mon, 8 Jan 2007 23:28:41 +0000 (23:28 +0000)]
* src/changes.C: two changes of type UNCHANGED are always equals

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

17 years ago* lib/ui/stdmenus.inc: use marginally better shortcuts
Michael Schmitt [Mon, 8 Jan 2007 23:17:44 +0000 (23:17 +0000)]
* lib/ui/stdmenus.inc: use marginally better shortcuts

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

17 years ago* src/text.C: replace "[C]" by the more meaningful "[Change tracking]" and support...
Michael Schmitt [Mon, 8 Jan 2007 22:38:49 +0000 (22:38 +0000)]
* src/text.C: replace "[C]" by the more meaningful "[Change tracking]" and support localization

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

17 years ago* src/paragraph_pimpl.C:
Michael Schmitt [Mon, 8 Jan 2007 22:25:59 +0000 (22:25 +0000)]
* src/paragraph_pimpl.C:
* src/paragraph_pimpl.h: lookupChange(): return reference for performance optimization

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

17 years ago* src/paragraph.C:
Michael Schmitt [Mon, 8 Jan 2007 22:21:57 +0000 (22:21 +0000)]
* src/paragraph.C:
* src/paragraph.h: lookupChange(): return reference for performance optimization

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

17 years ago* lib/ui/stdmenus.inc: remove "paste " from "paste selection as xxx"
Michael Schmitt [Mon, 8 Jan 2007 22:00:43 +0000 (22:00 +0000)]
* lib/ui/stdmenus.inc: remove "paste " from "paste selection as xxx"

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

17 years agoUpdated
Uwe Stöhr [Mon, 8 Jan 2007 21:45:27 +0000 (21:45 +0000)]
Updated

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

17 years agoinclude tabulars and math in the "paste recent" stack
Georg Baum [Mon, 8 Jan 2007 18:40:37 +0000 (18:40 +0000)]
include tabulars and math in the "paste recent" stack

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

17 years agoFix enabling of LFUN_PRIMARY_SELECTION_PASTE: It was always disabled, because
Georg Baum [Mon, 8 Jan 2007 18:37:40 +0000 (18:37 +0000)]
Fix enabling of LFUN_PRIMARY_SELECTION_PASTE: It was always disabled, because
we don't set the selection with qApp->clipboard()->put().
Therefore we get the status of the internal selection from the cursor, and
the empty flag for fake selections is not needed anymore.

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

17 years ago* src/insets/insetcite.C (getNatbibLabel): correct check for citation key cache.
Jürgen Spitzmüller [Mon, 8 Jan 2007 17:38:39 +0000 (17:38 +0000)]
* src/insets/insetcite.C (getNatbibLabel): correct check for citation key cache.

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

17 years agoForgot this in revision 16606.
Abdelrazak Younes [Mon, 8 Jan 2007 15:51:43 +0000 (15:51 +0000)]
Forgot this in revision 16606.

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

17 years agoproperly inline inMathed() and inTexted().
Abdelrazak Younes [Mon, 8 Jan 2007 15:30:17 +0000 (15:30 +0000)]
properly inline inMathed() and inTexted().

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

17 years agoDelay bibfileCache first update up until it is used.
Abdelrazak Younes [Mon, 8 Jan 2007 13:36:01 +0000 (13:36 +0000)]
Delay bibfileCache first update up until it is used.

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

17 years ago* src/frontends/qt4/QGraphicsDialog.C:
Jürgen Spitzmüller [Mon, 8 Jan 2007 13:22:50 +0000 (13:22 +0000)]
* src/frontends/qt4/QGraphicsDialog.C:
- do not focus filename widget for already existing insets (bug 1663).

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

17 years ago * support/os_unix.C (canAutoOpen, autoOpenFile): on Mac OS X, use
Jean-Marc Lasgouttes [Mon, 8 Jan 2007 13:20:19 +0000 (13:20 +0000)]
* support/os_unix.C (canAutoOpen, autoOpenFile): on Mac OS X, use
the role kLSRolesAll for both edito and viewer, since it is what
the finder does.

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

17 years agosame performance fix as rev. 16600.
Abdelrazak Younes [Mon, 8 Jan 2007 11:42:20 +0000 (11:42 +0000)]
same performance fix as rev. 16600.

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

17 years agoperformance fix.
Abdelrazak Younes [Mon, 8 Jan 2007 11:35:55 +0000 (11:35 +0000)]
performance fix.

* InsetFloat::addToToc(): avoid a string copy, a map lookup and a TocItem construction. Don't complete the loop if item found.

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

17 years agoperformance fix, label updating have nothing to do with Buffer contents. 'updateLabel...
Abdelrazak Younes [Mon, 8 Jan 2007 11:15:50 +0000 (11:15 +0000)]
performance fix, label updating have nothing to do with Buffer contents. 'updateLabels()' is called in BufferView::setBuffer().

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

17 years agoperformance fix/cleanup.
Abdelrazak Younes [Mon, 8 Jan 2007 11:01:26 +0000 (11:01 +0000)]
performance fix/cleanup.

* LyXKeySym.h: replace global operator==() with pure virtual method.

* QLyXKeySym: new operator==() method.

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

17 years agoperformance fix.
Abdelrazak Younes [Mon, 8 Jan 2007 10:50:15 +0000 (10:50 +0000)]
performance fix.

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

17 years ago* status.15x: add new dialog bug (and look, I've learned my lesson!)
Jürgen Spitzmüller [Mon, 8 Jan 2007 09:14:38 +0000 (09:14 +0000)]
* status.15x: add new dialog bug (and look, I've learned my lesson!)

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

17 years agoFix rest of bug 3068.
Jürgen Spitzmüller [Mon, 8 Jan 2007 06:52:20 +0000 (06:52 +0000)]
Fix rest of bug 3068.

* src/frontends/qt4/QCitationDialog.[Ch]:
- implement KeyPressEvent, catch ESC key and clear params there as well

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

17 years agoUpdate
Enrico Forestieri [Mon, 8 Jan 2007 03:47:27 +0000 (03:47 +0000)]
Update

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

17 years agoFix problem with filename encoding in python script for graphics conversion
Enrico Forestieri [Mon, 8 Jan 2007 03:03:12 +0000 (03:03 +0000)]
Fix problem with filename encoding in python script for graphics conversion

* src/graphics/GraphicsConverter.C
(build_script): convert the input filename from utf8 to the default
locale encoding as it hopefully corresponds to the filesystem encoding.

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

17 years agoResolve compiler warning unused parameter nr in src/frontends/qt4/QPrefsDialog.C
Bo Peng [Sun, 7 Jan 2007 23:06:54 +0000 (23:06 +0000)]
Resolve compiler warning unused parameter nr in src/frontends/qt4/QPrefsDialog.C

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

17 years agolib/ui/stdmenus.inc: change 'Clipboard as xxx' to 'Plain Text as xxx'. I still think...
Bo Peng [Sun, 7 Jan 2007 22:52:04 +0000 (22:52 +0000)]
lib/ui/stdmenus.inc: change 'Clipboard as xxx' to 'Plain Text as xxx'. I still think we should remove 'Selection as xxx'.

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

17 years agoFix bug 3062, bookmark-goto x crashes lyx for invalid bookmark
Bo Peng [Sun, 7 Jan 2007 22:41:54 +0000 (22:41 +0000)]
Fix bug 3062, bookmark-goto x crashes lyx for invalid bookmark
* src/session.C: check validity of temp bookmark
* src/lyxfunc.C: check validity of bookmark in GOTO_BOOKMARK
* lib/bind/*.bind: remove shortcuts to bookmark-save 2/3/4/5

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

17 years agoAdd missing call to WorkArea::redraw(). Fix bug 3078
Abdelrazak Younes [Sun, 7 Jan 2007 22:01:50 +0000 (22:01 +0000)]
Add missing call to WorkArea::redraw(). Fix bug 3078

http://bugzilla.lyx.org/show_bug.cgi?id=3078

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

17 years agoDon't calculate outerfont twice
Georg Baum [Sun, 7 Jan 2007 19:06:48 +0000 (19:06 +0000)]
Don't calculate outerfont twice

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

17 years agoavoid unneeded stream flushes
Georg Baum [Sun, 7 Jan 2007 18:53:59 +0000 (18:53 +0000)]
avoid unneeded stream flushes

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

17 years agomore typos
Georg Baum [Sun, 7 Jan 2007 18:40:06 +0000 (18:40 +0000)]
more typos

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

17 years ago* src/changes.C:
Michael Schmitt [Sun, 7 Jan 2007 18:13:25 +0000 (18:13 +0000)]
* src/changes.C:
* src/changes.h: some speed optimizations as the result of profiling

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

17 years agohm ...
Jürgen Spitzmüller [Sun, 7 Jan 2007 18:01:36 +0000 (18:01 +0000)]
hm ...

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

17 years ago* src/frontends/qt4/ui/QGraphicsUi.ui:
Jürgen Spitzmüller [Sun, 7 Jan 2007 17:59:47 +0000 (17:59 +0000)]
* src/frontends/qt4/ui/QGraphicsUi.ui:
- fix initial tab.

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

17 years agoAdd some documentation
Georg Baum [Sun, 7 Jan 2007 17:58:36 +0000 (17:58 +0000)]
Add some documentation

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

17 years agofix typos
Georg Baum [Sun, 7 Jan 2007 17:54:26 +0000 (17:54 +0000)]
fix typos

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

17 years agoadd bug for the dialog experts, probably easy to fix.
Georg Baum [Sun, 7 Jan 2007 17:41:01 +0000 (17:41 +0000)]
add bug for the dialog experts, probably easy to fix.

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

17 years ago* status.15x: revert accidental encoding change AGAIN :-(
Jürgen Spitzmüller [Sun, 7 Jan 2007 16:59:23 +0000 (16:59 +0000)]
* status.15x: revert accidental encoding change AGAIN :-(

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

17 years ago* status.15x: update to the TOC issue.
Jürgen Spitzmüller [Sun, 7 Jan 2007 16:57:29 +0000 (16:57 +0000)]
* status.15x: update to the TOC issue.

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

17 years agoCorrectly enable/disable all paste lfuns
Georg Baum [Sun, 7 Jan 2007 16:43:38 +0000 (16:43 +0000)]
Correctly enable/disable all paste lfuns

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

17 years ago* src/frontends/qt4/QTocDialog.C (updateGui):
Jürgen Spitzmüller [Sun, 7 Jan 2007 16:39:35 +0000 (16:39 +0000)]
* src/frontends/qt4/QTocDialog.C (updateGui):
- disable depth slider when there's no content (prevents crash).

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

17 years agoFix bug 144: Support for noteedit
Georg Baum [Sun, 7 Jan 2007 15:56:41 +0000 (15:56 +0000)]
Fix bug 144: Support for noteedit

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

17 years agoAdd comment
Georg Baum [Sun, 7 Jan 2007 14:54:10 +0000 (14:54 +0000)]
Add comment

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

17 years agoTell X the selection status also after it is changed by the keyboard, since
Georg Baum [Sun, 7 Jan 2007 14:44:44 +0000 (14:44 +0000)]
Tell X the selection status also after it is changed by the keyboard, since
we got a consensus on this on the list.
Some calls of haveSelection are still missing, but we need to decide the
"persistent selection" question before those can be implemented properly.

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

17 years agoTOC dialog: fix scrollbar flickering when clicking on items
Peter Kümmel [Sun, 7 Jan 2007 13:13:40 +0000 (13:13 +0000)]
TOC dialog: fix scrollbar flickering when clicking on items

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

17 years ago* src/frontends/qt4/QBibtexDialog.C: sanitize button behaviour (bug 2895)
Jürgen Spitzmüller [Sun, 7 Jan 2007 12:46:37 +0000 (12:46 +0000)]
* src/frontends/qt4/QBibtexDialog.C: sanitize button behaviour (bug 2895)

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

17 years agofix: TOC dialog table content is not visible after clicking the combo box
Peter Kümmel [Sun, 7 Jan 2007 12:10:17 +0000 (12:10 +0000)]
fix: TOC dialog table content is not visible after clicking the combo box

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

17 years ago* src/text.C: fix endless loop in breakParagraph()
Michael Schmitt [Sun, 7 Jan 2007 12:01:26 +0000 (12:01 +0000)]
* src/text.C: fix endless loop in breakParagraph()

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

17 years ago* src/paragraph.C: hfillExpansion(): rewrite loop for better understanding
Michael Schmitt [Sun, 7 Jan 2007 10:42:10 +0000 (10:42 +0000)]
* src/paragraph.C: hfillExpansion(): rewrite loop for better understanding

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

17 years ago* src/paragraph.C: sanitize hfillExpansion()
Michael Schmitt [Sun, 7 Jan 2007 10:25:45 +0000 (10:25 +0000)]
* src/paragraph.C: sanitize hfillExpansion()

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

17 years ago* src/frontends/qt4/QCharacter.C:
Jürgen Spitzmüller [Sun, 7 Jan 2007 10:24:25 +0000 (10:24 +0000)]
* src/frontends/qt4/QCharacter.C:
* src/frontends/qt4/QDocumentDialog.C:
* src/frontends/qt4/QPrefsDialog.C:
- include some information on the resizing bug,

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

17 years ago* development/Win32/packaging/build_msvs_debug.bat: add new build script for debug...
Michael Schmitt [Sun, 7 Jan 2007 09:53:04 +0000 (09:53 +0000)]
* development/Win32/packaging/build_msvs_debug.bat: add new build script for debug mode & msvs project creation

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

17 years agoFix bug 3068.
Jürgen Spitzmüller [Sun, 7 Jan 2007 09:44:57 +0000 (09:44 +0000)]
Fix bug 3068.

* src/frontends/qt4/QCitationDialog.C:
- clear params on dialog closing
* src/frontends/qt4/QCitationDialog.[Ch]:
- implement CloseEvent

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

17 years ago* development/Win32/packaging/build_msvc.bat: return to start directory after compilation
Michael Schmitt [Sun, 7 Jan 2007 09:43:43 +0000 (09:43 +0000)]
* development/Win32/packaging/build_msvc.bat: return to start directory after compilation

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

17 years ago* status.15x: revert accidental encoding change.
Jürgen Spitzmüller [Sun, 7 Jan 2007 09:33:11 +0000 (09:33 +0000)]
* status.15x: revert accidental encoding change.

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

17 years ago* status.15x: update
Jürgen Spitzmüller [Sun, 7 Jan 2007 09:30:42 +0000 (09:30 +0000)]
* status.15x: update

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

17 years agoFix conversion of n-th roots to mathematica and octave syntax.
Enrico Forestieri [Sun, 7 Jan 2007 03:28:53 +0000 (03:28 +0000)]
Fix conversion of n-th roots to mathematica and octave syntax.

* src/mathed/MathExtern.C
(pipeThroughOctave): take into account that the output from octave
may contain ansi control sequences.

* src/mathed/InsetMathRoot.[Ch]
(InsetMathRoot::mathematica): new virtual method to output n-th
roots in mathematica syntax.

* src/mathed/InsetMathRoot.C
(InsetMathRoot::octave): octave has not a root() command.

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