]> git.lyx.org Git - lyx.git/log
lyx.git
18 years ago* MSVC Compilation fix: #warning is not supported.
Abdelrazak Younes [Thu, 6 Jul 2006 11:28:05 +0000 (11:28 +0000)]
* MSVC Compilation fix: #warning is not supported.
* Change the comment to "This is not a memory leak:"

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

18 years agoRemove quite a few compiler warnings:
Lars Gullik Bjønnes [Thu, 6 Jul 2006 08:18:51 +0000 (08:18 +0000)]
Remove quite a few compiler warnings:
- Change unsigned -> signed
- Change signed -> unsigned
        - Add a cast or two (really few of those)
- Remove/comment out unused variables
- Comment out unused arguments
- Add missing cases to switches.

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

18 years agoScons: exclude boost headers only for system boost header files.
Bo Peng [Wed, 5 Jul 2006 18:48:59 +0000 (18:48 +0000)]
Scons: exclude boost headers only for system boost header files.
* INSTALL.scons: document this change.
* development/scons/SConstruct: check for included_boost to exclude boost
  headers from the dependency tree.

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

18 years agoReduce calls of ::exit()
Georg Baum [Wed, 5 Jul 2006 17:01:26 +0000 (17:01 +0000)]
Reduce calls of ::exit()
* src/main.C
(main): return LyX::exec()

* src/frontends/{gtk,qt3,qt4}/lyx_gui.C
(lyx_gui::exec): Change return value to int
(lyx_gui::start): ditto

* src/frontends/qt[3,4]/lyx_gui.C
(lyx_gui::exit): Call QApplication::exit instead of ::exit, this
hack is not needed anymore

* src/frontends/lyx_gui.h
(lyx_gui::exec): Change return value to int
(lyx_gui::start): ditto

* src/lyxtextclasslist.[Ch]
(LyXSetStyle): SChange return value to bool and don't call ::exit

* src/lyx_main.C
(showFileError): Don't exit anymore

* src/lyx_main.[Ch]
(LyX::exec): Change return value to int
(LyX::priv_exec): ditto
(LyX::exec2): ditto
(LyX::init): Change return value to bool
(LyX::readRcFile): ditto
(LyX::readUIFile): ditto

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

18 years agoScons: do not build boost dependency tree, use debug/release boost system library...
Bo Peng [Wed, 5 Jul 2006 15:33:38 +0000 (15:33 +0000)]
Scons: do not build boost dependency tree, use debug/release boost system library, check for boost system header files

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

18 years agolib/configure.py: fix checkTeXAllowSpaces, by Enrico
Bo Peng [Tue, 4 Jul 2006 13:55:28 +0000 (13:55 +0000)]
lib/configure.py: fix checkTeXAllowSpaces, by Enrico

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

18 years ago* BufferView::Pimpl::update:
Lars Gullik Bjønnes [Tue, 4 Jul 2006 00:30:34 +0000 (00:30 +0000)]
* BufferView::Pimpl::update:
- slight speedup by checking if debugging before creating
  the debug output.

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

18 years ago* BufferView::Pimpl::update:
Lars Gullik Bjønnes [Tue, 4 Jul 2006 00:19:59 +0000 (00:19 +0000)]
* BufferView::Pimpl::update:
- streamline a bit to only run updateMetrics once
- do not take a backup copy of theCoords

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

18 years agoExtraced from r14281 from the younes branch.
Lars Gullik Bjønnes [Tue, 4 Jul 2006 00:04:46 +0000 (00:04 +0000)]
Extraced from r14281 from the younes branch.

* BufferView, BufferView::pimpl:
- metrics_info_: private variable holding ViewMetricsInfo
- viewMetricsInfo(): accessor function
- updateMetrics(): renamed from metrics(), sets metrics_info_
- update(): change to use updateMetrics()

* frontends/WorkArea:
- redraw(): get the ViewMetricsInfo through accessor to BufferView.

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

18 years agoPartially extracted from r14281 from the younes branch.
Lars Gullik Bjønnes [Mon, 3 Jul 2006 22:54:30 +0000 (22:54 +0000)]
Partially extracted from r14281 from the younes branch.

* BufferView, BufferView::Pimpl:
- painter(): remove method
* rowpainter.C:
- paintText(): get painter through LyXView and WorkArea

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

18 years agoExtracted from r14281 from the younes branch.
Lars Gullik Bjønnes [Mon, 3 Jul 2006 22:31:51 +0000 (22:31 +0000)]
Extracted from r14281 from the younes branch.

* BufferView,BufferView::Pimple:
-  workArea_ removed
* frontends/LyXView:
- now contains a pointer reference to the current
  WorkArea instead of the BufferView.
        - workArea(): temporary access method
* frontends/WorkArea:
- bufferView(): new access methods.

* GuiImplementation: updated due to above changes

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

18 years agoupdate postats script to use proper trac URL
Jean-Marc Lasgouttes [Mon, 3 Jul 2006 22:00:18 +0000 (22:00 +0000)]
update postats script to use proper trac URL

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

18 years agoScons: fix handling of lib/lyx2lyx/lyx2lyx_version.py.in
Bo Peng [Mon, 3 Jul 2006 20:57:25 +0000 (20:57 +0000)]
Scons: fix handling of lib/lyx2lyx/lyx2lyx_version.py.in

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

18 years agoSecond part of r14315 from the younes branch:
Lars Gullik Bjønnes [Mon, 3 Jul 2006 20:37:34 +0000 (20:37 +0000)]
Second part of r14315 from the younes branch:

* BufferView and Bufferview::pimpl: repaintAll() methods deleted.

* rowpainter.C:
  - refreshInside : new variable in the anonymous namespace.
  - use of refreshInside instead of the repaintAll() methods

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

18 years agoFirst part of r14315 from the younes branch:
Lars Gullik Bjønnes [Mon, 3 Jul 2006 20:19:33 +0000 (20:19 +0000)]
First part of r14315 from the younes branch:

* BufferView and BufferView::pimpl:
    - getClipboard, stuffClipboard, haveSelection: deleted

* CutAndPaste.C: use BufferView::owner()->gui().clipboard()
* insettabular.C: ditto
* math_nestinset.C: ditto
* text3.C: ditto

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

18 years agolib/lyx2lyx/lyx_1_5.py: replace tab with spaces
Bo Peng [Mon, 3 Jul 2006 20:09:43 +0000 (20:09 +0000)]
lib/lyx2lyx/lyx_1_5.py: replace tab with spaces

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

18 years agoRemove the XForms frontend, update the autotools files, and fixup po.
Lars Gullik Bjønnes [Mon, 3 Jul 2006 19:20:25 +0000 (19:20 +0000)]
Remove the XForms frontend, update the autotools files, and fixup po.

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

18 years agomerge booktabs branch
Georg Baum [Mon, 3 Jul 2006 19:13:56 +0000 (19:13 +0000)]
merge booktabs branch

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

18 years agolib/configure.py: use \nonstopmode instead of -interaction=nonstopmode, from JMarc...
Bo Peng [Mon, 3 Jul 2006 15:28:13 +0000 (15:28 +0000)]
lib/configure.py: use \nonstopmode instead of -interaction=nonstopmode, from JMarc and Enrico

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

18 years agoScons: polish scons' 1.4.x support.
Bo Peng [Mon, 3 Jul 2006 02:02:11 +0000 (02:02 +0000)]
Scons: polish scons' 1.4.x support.
* INSTALL.scons: add instruction for 1.4.x
* development/scons/SConstruct: fix a installation bug for 1.4.x, better handling of QTDIR

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

18 years agoScons: rename option qt_include_path to qt_inc_path (we have extra_inc_path etc.)
Bo Peng [Sun, 2 Jul 2006 22:09:11 +0000 (22:09 +0000)]
Scons: rename option qt_include_path to qt_inc_path (we have extra_inc_path etc.)

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

18 years agoScons: check the validity of QTDIR, and the existence of uic and moc
Bo Peng [Sun, 2 Jul 2006 17:35:14 +0000 (17:35 +0000)]
Scons: check the validity of QTDIR, and the existence of uic and moc

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

18 years agoScons: fix a isdir typo
Bo Peng [Sun, 2 Jul 2006 03:17:15 +0000 (03:17 +0000)]
Scons: fix a isdir typo

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

18 years agolib/configure.py: add -interaction=nonstopmode to cygwin/latex test.
Bo Peng [Sun, 2 Jul 2006 03:09:00 +0000 (03:09 +0000)]
lib/configure.py: add -interaction=nonstopmode to cygwin/latex test.

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

18 years agoScons: set default qt lib directory under cygwin
Bo Peng [Sun, 2 Jul 2006 01:54:44 +0000 (01:54 +0000)]
Scons: set default qt lib directory under cygwin

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

18 years agoRemove all tabs in lib/lyx2lyx/*.py, corresponding to the added -tt option
Bo Peng [Sat, 1 Jul 2006 19:16:09 +0000 (19:16 +0000)]
Remove all tabs in lib/lyx2lyx/*.py, corresponding to the added -tt option

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

18 years agoAdd config.h to src/frontends/qt4/Application.C to avoid MSVC BOOST_ALL_NO_LIB problem.
Bo Peng [Sat, 1 Jul 2006 18:14:58 +0000 (18:14 +0000)]
Add config.h to src/frontends/qt4/Application.C to avoid MSVC BOOST_ALL_NO_LIB problem.

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

18 years ago* ui/QPrefUIModule.ui: fix layout.
Jürgen Spitzmüller [Sat, 1 Jul 2006 11:22:33 +0000 (11:22 +0000)]
* ui/QPrefUIModule.ui: fix layout.

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

18 years agomake sure eol-style native is set and fix eol style
Lars Gullik Bjønnes [Fri, 30 Jun 2006 14:50:44 +0000 (14:50 +0000)]
make sure eol-style native is set and fix eol style

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

18 years agoMake signals and slots to not be defined, and replace them with Q_SIGNALS and Q_SLOTS
Lars Gullik Bjønnes [Fri, 30 Jun 2006 14:37:33 +0000 (14:37 +0000)]
Make signals and slots to not be defined, and replace them with Q_SIGNALS and Q_SLOTS

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

18 years agoStop using 'sh uname' etc for cygdrive, from Enrico Forestieri <forenr@tlc.unipr.it>
Bo Peng [Fri, 30 Jun 2006 14:28:36 +0000 (14:28 +0000)]
Stop using 'sh uname' etc for cygdrive, from Enrico Forestieri <forenr@tlc.unipr.it>
* src/support/os_win32.C: Query the registry about cygwin, instead of
  calling uname

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

18 years agodelete some emits that I missed, add comments about emitting signals
Lars Gullik Bjønnes [Fri, 30 Jun 2006 14:11:50 +0000 (14:11 +0000)]
delete some emits that I missed, add comments about emitting signals

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

18 years agoCall python with the -tt switch to make mixed tab/space indentation an error
Georg Baum [Fri, 30 Jun 2006 13:54:01 +0000 (13:54 +0000)]
Call python with the -tt switch to make mixed tab/space indentation an error

* src/support/os.[Ch]
(python): new function, return the python command

* lib/lyx2lyx/lyx_1_5.py
(revert_font_settings): replace tabs with spaces

The rest is simply s/python/python -tt/ and
s/"python"/lyx::support::os::python()/ where appropriate.

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

18 years agoDo not use the qt "keyword" emit. Make qt not emit it at all. (pun intended)
Lars Gullik Bjønnes [Fri, 30 Jun 2006 11:57:17 +0000 (11:57 +0000)]
Do not use the qt "keyword" emit. Make qt not emit it at all. (pun intended)

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

18 years agoReplace lib/scriptsfig2pdftex.sh and fig2pstex.sh by their python version
Bo Peng [Thu, 29 Jun 2006 15:30:22 +0000 (15:30 +0000)]
Replace lib/scriptsfig2pdftex.sh and fig2pstex.sh by their python version

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

18 years agoinitialize correctly multiparsel_cache_ (may fix bug 2630); fix warning about initial...
Jean-Marc Lasgouttes [Thu, 29 Jun 2006 14:52:48 +0000 (14:52 +0000)]
initialize correctly multiparsel_cache_ (may fix bug 2630); fix warning about initialization order

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

18 years agoReplace lib/scripts/fig_copy.sh with fig_copy.py
Bo Peng [Wed, 28 Jun 2006 14:26:27 +0000 (14:26 +0000)]
Replace lib/scripts/fig_copy.sh with fig_copy.py

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

18 years agoremove annoying debug messages
Jean-Marc Lasgouttes [Wed, 28 Jun 2006 14:22:31 +0000 (14:22 +0000)]
remove annoying debug messages

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

18 years agoheader cleanups and removal of unused methods.
Abdelrazak Younes [Wed, 28 Jun 2006 13:23:39 +0000 (13:23 +0000)]
header cleanups and removal of unused methods.

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

18 years agosome connections not made because of:
Edwin Leuven [Wed, 28 Jun 2006 12:48:51 +0000 (12:48 +0000)]
some connections not made because of:
- signal typo
- slots typos

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

18 years agoQURL renamed to UrlView
Abdelrazak Younes [Wed, 28 Jun 2006 12:09:25 +0000 (12:09 +0000)]
QURL renamed to UrlView

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

18 years agoput citation dialog in good state:
Edwin Leuven [Wed, 28 Jun 2006 08:28:16 +0000 (08:28 +0000)]
put citation dialog in good state:
- natbib style (the combox) works
- when moving/up down the item stays selected (allowing sequential ups/downs)
- when deleting the next selected entry gets focus (allowing sequential deletes)
- the info is now shown and updated
- find subsets the available entries as you type
- no additional find dialog (removed QCitationFind.ui)
- selecting with double-click
- removal of unused: Citation class, toVector() function

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

18 years agoChange the indent level of python code from two to four
Bo Peng [Tue, 27 Jun 2006 21:08:54 +0000 (21:08 +0000)]
Change the indent level of python code from two to four

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

18 years agoPatch from Martin Vermeer for bug 2218.
Jean-Marc Lasgouttes [Tue, 27 Jun 2006 12:20:16 +0000 (12:20 +0000)]
Patch from Martin Vermeer for bug 2218.

* src/frontends/xforms/FormSpellchecker.C (update):
* src/frontends/qt[34]/QSpellchecker.C (update_contents): fix bug
2218: Spellchecker doesn't pop up dialogue window for the first
misspelled word.

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

18 years agoforward port it.po from 1.4.x branch to fix a bug with counters
Jean-Marc Lasgouttes [Tue, 27 Jun 2006 12:02:27 +0000 (12:02 +0000)]
forward port it.po from 1.4.x branch to fix a bug with counters

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

18 years agoforward port pl.po from 1.4.x branch to fix a bug with counters
Jean-Marc Lasgouttes [Tue, 27 Jun 2006 12:01:17 +0000 (12:01 +0000)]
forward port pl.po from 1.4.x branch to fix a bug with counters

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

18 years ago Renaming:
Jean-Marc Lasgouttes [Tue, 27 Jun 2006 10:51:24 +0000 (10:51 +0000)]
Renaming:
cygwin_path_fix -> windows_style_tex_paths
cygwin_path_fix_needed -> tex_expects_windows_paths
check_cygwin_path -> check_windows_style_tex_paths
use_cygwin_paths -> use_windows_paths
RC_CYGWIN_PATH_FIX -> RC_TEX_EXPECTS_WINDOWS_PATHS

* src/frontends/qt4/ui/QPrefCygwinPathUi.ui
* src/frontends/qt3/ui/QPrefCygwinPathModule.ui
  Updated checkbutton label and description

* src/frontends/qt4/QPrefsDialog.C
  (PrefCygwinPath): cygwin_path_fix -> windows_style_tex_paths
  (QPrefsDialog): Enable checkbutton for native WIN32 builds

* src/frontends/xforms/forms/form_preferences.fd
  Updated label and name of checkbutton

* src/frontends/xforms/FormPreferences.C
  (apply): cygwin_path_fix -> windows_style_tex_paths
           check_cygwin_path -> check_windows_style_tex_paths
  (build): Enable checkbutton for native WIN32 builds
  (update): Ditto
  (feedback): Updated description

* src/frontends/qt3/QPrefs.C
* src/frontends/qt3/QPrefsDialog.C
* src/frontends/qt3/QPrefsDialog.h
  Renaming as above, enabled checkbutton for native WIN32 builds

* src/support/os_unix.C
* src/support/os.h
* src/support/os_win32.C
  Renaming cygwin_path_fix -> windows_style_tex_paths
* src/support/os_cygwin.C
  Ditto
  (external_path, external_path_list): always return windows
  style paths, not depending on the checkbutton status

* src/lyxrc.C
* src/lyxrc.h
* src/lyxfunc.C
* src/lyx_main.C
  Renaming

* lib/configure.py
  Renaming, more meaningful diagnostics

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

18 years agoPotential Bux fix: call "update()" instead of "vieport()->update()"
Abdelrazak Younes [Tue, 27 Jun 2006 10:28:04 +0000 (10:28 +0000)]
Potential Bux fix: call "update()"  instead of "vieport()->update()"

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

18 years agoadd link to the task tracker of the Qt4 bug
Peter Kümmel [Tue, 27 Jun 2006 07:53:44 +0000 (07:53 +0000)]
add link to the task tracker of the Qt4 bug

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

18 years agoScons: fix DESTDIR, reloate intl/libintl.h, libgnuintl.h
Bo Peng [Tue, 27 Jun 2006 03:53:04 +0000 (03:53 +0000)]
Scons: fix DESTDIR, reloate intl/libintl.h, libgnuintl.h

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

18 years agoReplace TeXFiles.sh by TeXFiles.py
Bo Peng [Tue, 27 Jun 2006 02:39:03 +0000 (02:39 +0000)]
Replace TeXFiles.sh by TeXFiles.py
* src/frontends/controllers/tex_helpers.C: call TeXFiles.py
* lib/scripts/TeXFiles.py: add
* lib/scripts/TeXFiles.sh: remove
* lib/scripts/convertDefault.py: add encoding line
* lib/Makefile.am

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

18 years ago* src/insets/insettabular.C (doDispatch): set cursor properly on mouse
Jürgen Spitzmüller [Mon, 26 Jun 2006 18:16:38 +0000 (18:16 +0000)]
* src/insets/insettabular.C (doDispatch): set cursor properly on mouse
(button 3) press. Fixes crash.

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

18 years agoPass width = 0 and height = 0 as unsigned int to indicate the usage of the geometry...
Peter Kümmel [Mon, 26 Jun 2006 18:07:10 +0000 (18:07 +0000)]
Pass width = 0 and height = 0 as unsigned int to indicate the usage of the geometry option
* lyx_main.C set             width and height to 0
* frontends/qt3/lyx_gui.C    test on 0
* frontends/qt4/lyx_gui.C    test on 0

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

18 years agoGUI API Cleanup step 2: merge of the "younes" branch. What's missing
Abdelrazak Younes [Mon, 26 Jun 2006 17:18:28 +0000 (17:18 +0000)]
GUI API Cleanup step 2: merge of the "younes" branch. What's missing

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

18 years agoRemoved files because of conflict when merging the "younes" branch
Abdelrazak Younes [Mon, 26 Jun 2006 17:14:25 +0000 (17:14 +0000)]
Removed files because of conflict when merging the "younes" branch

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

18 years agoRemoved file because of conflict when merging the "younes" branch
Abdelrazak Younes [Mon, 26 Jun 2006 17:13:31 +0000 (17:13 +0000)]
Removed file because of conflict when merging the "younes" branch

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

18 years agoGUI API Cleanup step 2: merge of the "younes" branch.
Abdelrazak Younes [Mon, 26 Jun 2006 16:55:35 +0000 (16:55 +0000)]
GUI API Cleanup step 2: merge of the "younes" branch.

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

18 years ago * lib/Makefile.am s/convertDefault.sh/convertDefault.py/
Georg Baum [Mon, 26 Jun 2006 15:13:32 +0000 (15:13 +0000)]
* lib/Makefile.am s/convertDefault.sh/convertDefault.py/

* src/converter.C
(Converters::convert): ditto

* src/graphics/GraphicsConverter.C
(Converter::Impl::Impl): ditto

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

18 years agoFix limit display of intop and ointop
Georg Baum [Mon, 26 Jun 2006 15:01:35 +0000 (15:01 +0000)]
Fix limit display of intop and ointop
* src/mathed/math_scriptinset.C
(MathScriptInset::hasLimits): handle \intop and \ointop

* lib/symbols: add intop and ointop

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

18 years agoGenerate python code in GraphicsConverter.C, replace convertDefault.sh by convertDefa...
Bo Peng [Mon, 26 Jun 2006 14:17:12 +0000 (14:17 +0000)]
Generate python code in GraphicsConverter.C, replace convertDefault.sh by convertDefault.py
* src/graphics/GraphicsConverter.C: generate python instead of shell scripts
* src/converter.C: use convertDefault.py
* lib/scripts/convertDefault.sh: translated to convertDefault.py

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

18 years agofix image paths in German UserGuide (part of bug 2660)
Jean-Marc Lasgouttes [Mon, 26 Jun 2006 10:35:31 +0000 (10:35 +0000)]
fix image paths in German UserGuide (part of bug 2660)

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

18 years agoFix 64bit<->32bit issue.
Lars Gullik Bjønnes [Sun, 25 Jun 2006 11:27:33 +0000 (11:27 +0000)]
Fix 64bit<->32bit issue.

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

18 years ago* reset color/linestyle/linewidth cache to QPen defaults on QPainter creation
Edwin Leuven [Sun, 25 Jun 2006 11:18:56 +0000 (11:18 +0000)]
* reset color/linestyle/linewidth cache to QPen defaults on QPainter creation
* get rid of QPainter arg in setQPainterPen(..)

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

18 years agoScons: remove pch, add stdlib_debug and profiling options
Bo Peng [Sat, 24 Jun 2006 03:49:11 +0000 (03:49 +0000)]
Scons: remove pch, add stdlib_debug and profiling options

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

18 years agorevert last accidental commit and do the intended one
Georg Baum [Fri, 23 Jun 2006 14:20:49 +0000 (14:20 +0000)]
revert last accidental commit and do the intended one

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

18 years ago * src/mathed/math_gridinset.C
Georg Baum [Fri, 23 Jun 2006 14:17:14 +0000 (14:17 +0000)]
* src/mathed/math_gridinset.C
(doDispatch): fix off by one error when checking cur.idx() (bug 2655)

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

18 years ago* qp_ member is now used for painting
Abdelrazak Younes [Fri, 23 Jun 2006 14:12:17 +0000 (14:12 +0000)]
* qp_ member is now used for painting
* QLPainter::start() now re-initialize qp_
* QLPainter::end() now end qp_

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

18 years ago * frontends/qt3/QtView.C: use QRect ctor, coding style
Peter Kümmel [Fri, 23 Jun 2006 10:19:31 +0000 (10:19 +0000)]
* frontends/qt3/QtView.C: use QRect ctor, coding style
* frontends/qt4/lyx_gui.C: coding style
* frontends/qt4/GuiView.C: use QRect ctor, coding style

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

18 years agolib/doc/UserGuide.lyx: remove description of obsolete Comment layout
Jean-Marc Lasgouttes [Fri, 23 Jun 2006 09:38:32 +0000 (09:38 +0000)]
lib/doc/UserGuide.lyx: remove description of obsolete Comment layout

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

18 years agoScons: fix rebuildTargetOnly for lyx msvs projects
Bo Peng [Thu, 22 Jun 2006 15:46:35 +0000 (15:46 +0000)]
Scons: fix rebuildTargetOnly for lyx msvs projects

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

18 years ago * readd accidentally removed code (rev 14143)
Georg Baum [Thu, 22 Jun 2006 09:25:02 +0000 (09:25 +0000)]
* readd accidentally removed code (rev 14143)

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

18 years agofix wrong path to an image (bug 2653)
Jean-Marc Lasgouttes [Wed, 21 Jun 2006 13:21:31 +0000 (13:21 +0000)]
fix wrong path to an image (bug 2653)

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

18 years agoadd release option
Peter Kümmel [Wed, 21 Jun 2006 10:32:17 +0000 (10:32 +0000)]
add release option

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

18 years agofix: qt3/qt4 save/restore of the window geometry and maximize status
Peter Kümmel [Wed, 21 Jun 2006 10:30:32 +0000 (10:30 +0000)]
fix: qt3/qt4 save/restore of the window geometry and maximize status

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

18 years agoScons: restore fast_start, remove BOOST_USER_CONFIG in boost/config.h
Bo Peng [Tue, 20 Jun 2006 16:46:35 +0000 (16:46 +0000)]
Scons: restore fast_start, remove BOOST_USER_CONFIG in boost/config.h

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

18 years agoScons: config.h moves to BUILDDIR/common, boost_config.h moves to BUILDDIR/boost.
Bo Peng [Tue, 20 Jun 2006 14:44:46 +0000 (14:44 +0000)]
Scons: config.h moves to BUILDDIR/common, boost_config.h moves to BUILDDIR/boost.
  Do not use debug libraries for win/mingw.

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

18 years agoQtView renamed to GuiView
Abdelrazak Younes [Tue, 20 Jun 2006 14:35:36 +0000 (14:35 +0000)]
QtView renamed to GuiView

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

18 years ago Redefine the speed-up "Wide" patch to draw proper boxes
Martin Vermeer [Tue, 20 Jun 2006 12:39:39 +0000 (12:39 +0000)]
Redefine the speed-up "Wide" patch to draw proper boxes
in available space instead of line pairs.

* rowpainter.C
(paintPar): change background rectangle

* insets/insettext.C
(InsetText::draw):
(InsetText::drawSelection): simplify rectangle drawing

* insets/insettext.h: dump Tall()

* insets/insetcollapsable.C
(InsetCollapsable::metrics): subtract button from available
space in case of inlined inset

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

18 years agorevert commit 14159
Abdelrazak Younes [Tue, 20 Jun 2006 11:56:31 +0000 (11:56 +0000)]
revert commit 14159

QtView -> GuiView at the right place this time.

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

18 years agoQtView -> GuiView
Abdelrazak Younes [Tue, 20 Jun 2006 11:52:13 +0000 (11:52 +0000)]
QtView -> GuiView

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

18 years ago * insettabular.C (drawSelection): revision of previous patch:
Martin Vermeer [Tue, 20 Jun 2006 10:44:49 +0000 (10:44 +0000)]
* insettabular.C (drawSelection): revision of previous patch:
initialize table background

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

18 years agoadd qt3 support
Peter Kümmel [Tue, 20 Jun 2006 09:59:48 +0000 (09:59 +0000)]
add qt3 support

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

18 years agoadd qt3 support
Peter Kümmel [Tue, 20 Jun 2006 09:57:19 +0000 (09:57 +0000)]
add qt3 support

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

18 years agoQtView renamed to GuiView
Abdelrazak Younes [Tue, 20 Jun 2006 09:33:01 +0000 (09:33 +0000)]
QtView renamed to GuiView

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

18 years ago* [qt3, xforms, gtk]/GuiImplementation::newWorkArea: return 0
Abdelrazak Younes [Tue, 20 Jun 2006 09:17:19 +0000 (09:17 +0000)]
* [qt3, xforms, gtk]/GuiImplementation::newWorkArea: return 0
* qt4/Application.[Ch]: was not merged (GUI API cleanup merge) for an unknown reason
* qt4/clipboard.C: ditto

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

18 years agoThis is the merging of the GUI API cleanup branch that was developed in svn+ssh:...
Abdelrazak Younes [Tue, 20 Jun 2006 08:39:16 +0000 (08:39 +0000)]
This is the merging of the GUI API cleanup branch that was developed in svn+ssh://svn.lyx.org/lyx/lyx-devel/branches/personal/younes.

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

18 years agomove uic files into its own folder in the msvc project
Peter Kümmel [Mon, 19 Jun 2006 15:49:48 +0000 (15:49 +0000)]
move uic files into its own folder in the msvc project

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

18 years agoThe Grand Font Selection Redesign:
Jürgen Spitzmüller [Mon, 19 Jun 2006 08:10:17 +0000 (08:10 +0000)]
The Grand Font Selection Redesign:

        * lib/lyx2lyx/LyX.py (format_relation): add file format 247 (from Georg BAUM).

        * lib/lyx2lyx/lyx_1_5.py: add convert_font_settings, revert_font_settings (from Georg BAUM).

        * lib/chkconfig.ltx: Test for newly supported font packages

        * lib/doc/LaTeXConfig.lyx.in: document newly supported font packages

        * lib/doc/UserGuide.lyx: document new UI.

        * lib/doc/Extended.lyx: update PostScript font documentation

        * development/FORMAT: document file format change 246->247.

        * src/tex-strings.[Ch]: new strings tex_fonts_roman, tex_fonts_sans,
           tex_fonts_monospaced (with GUI equivalents).

        * src/buffer.C: Format up to 247.

        * src/bufferparams.C:
        new params fontsRoman, fontsSans, fontsTypewriter, fontsDefaultFamily,
        fontsSC, fontsOSF, fontsSansScale and fontsTypewriterScale
        (LyXFont const BufferParams::getFont): consider switch of default family.
        (string const BufferParams::loadFonts): new method to get all the LaTeX
        font stuff done.

        * src/paragraph.C
        (LyXFont const Paragraph::getFont):
        (LyXFont const Paragraph::getLabelFont):
        (LyXFont const Paragraph::getLayoutFont): user buffer's not textclass's
        default font

        * src/text.C
        (int LyXText::leftMargin):
        (int LyXText::rightMargin): user buffer's not textclass's default font

        * src/text2.C
        (LyXFont LyXText::getFont):
        (LyXFont LyXText::getLayoutFont):
        (LyXFont LyXText::getLabelFont): check if the family of the default document
        font has been customized.

        * src/frontends/gtk/GDocument.[Ch]: implement new font ui (from Georg BAUM).

        * src/frontends/gtk/glade/document.glade: implement new font ui (from Georg BAUM).

        * src/frontends/qt3/Makefile.dialogs: add new FontModuleBase

        * src/frontends/qt3/ui/FontModuleBase.ui: new File

        * src/frontends/qt3/ui/TextLayoutModuleBase.ui: remove font widgets

        * src/frontends/qt3/QDocument.C
        * src/frontends/qt3/QDocumentDialog.[Ch]: implement new font ui

        * src/frontends/qt4/Makefile.dialogs: add new FontUi

        * src/frontends/qt4/QDocumentDialog.[Ch]: implement new font ui

        * src/frontends/qt4/ui/FontUi.ui: new File

        * src/frontends/qt4/ui/TextLayoutUi.ui: remove font widgets

        * src/frontends/qt4/ui/compile_uic.sh: add new FontUi

        * src/frontends/xforms/FormDocument.[Ch]: implement new font ui

        * src/frontends/xforms/forms/form_document.fd: add new font tab.

        * src/frontends/controllers/ControlDocument.[Ch]
        (char ControlDocument::fontfamilies):
        (char ControlDocument::fontfamilies_gui):
        (bool ControlDocument::isFontAvailable):
        (bool ControlDocument::providesSC):
        (bool ControlDocument::providesOSF):
        (bool ControlDocument::providesScale): new methods, providing font info.

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

18 years ago * src/format.C
Georg Baum [Sun, 18 Jun 2006 10:51:59 +0000 (10:51 +0000)]
* src/format.C
(Formats::view): Call the viewer with the absolute filename instead
of changing the working directory to avoid a race condition on
systems with a slow fork().
(Formats::edit): Ditto (editor instead of viewer)

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

18 years ago * insettabular.C (drawSelection): initialize cell background
Martin Vermeer [Sun, 18 Jun 2006 09:27:57 +0000 (09:27 +0000)]
* insettabular.C (drawSelection): initialize cell background

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

18 years agorestore (14087) save/load geometry logic of qt3
Peter Kümmel [Sun, 18 Jun 2006 09:05:41 +0000 (09:05 +0000)]
restore (14087) save/load geometry logic of qt3

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

18 years agoScons: link to qt debug lib in debug mode
Bo Peng [Sun, 18 Jun 2006 04:04:23 +0000 (04:04 +0000)]
Scons: link to qt debug lib in debug mode

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

18 years agoThose classes (and their associated [Ch] files) are renamed :
Abdelrazak Younes [Sat, 17 Jun 2006 09:14:58 +0000 (09:14 +0000)]
Those classes (and their associated [Ch] files) are renamed :

QLAction -> Action
lcolorcache -> ColorCache
qfont_loader.C -> FontLoader

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

18 years agoScons: imerge SConscript to SConstruct, separate config.h, code cleanup
Bo Peng [Sat, 17 Jun 2006 04:43:44 +0000 (04:43 +0000)]
Scons: imerge SConscript to SConstruct, separate config.h, code cleanup

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

18 years agouse glob instead of lists
Peter Kümmel [Fri, 16 Jun 2006 17:26:32 +0000 (17:26 +0000)]
use glob instead of lists

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

18 years agoadd item for QMAKESPEC
Peter Kümmel [Fri, 16 Jun 2006 17:02:42 +0000 (17:02 +0000)]
add item for QMAKESPEC

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

18 years agouse glob instead of lists
Peter Kümmel [Fri, 16 Jun 2006 16:43:17 +0000 (16:43 +0000)]
use glob instead of lists

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

18 years agouse our own font width cache with Qt/Mac
Jean-Marc Lasgouttes [Fri, 16 Jun 2006 14:39:52 +0000 (14:39 +0000)]
use our own font width cache with Qt/Mac

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

18 years ago * lib/doc/de_Extended.lyx: mention htlatex
Georg Baum [Thu, 15 Jun 2006 17:08:26 +0000 (17:08 +0000)]
* lib/doc/de_Extended.lyx: mention htlatex
* lib/doc/Extended.lyx: ditto

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

18 years agodon't break the geometry option
Peter Kümmel [Thu, 15 Jun 2006 16:01:55 +0000 (16:01 +0000)]
don't break the geometry option

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