mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-04 16:42:57 +00:00
Menu structure cleanup, configure tweaks
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1203 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
890f5feda6
commit
b40e8a006d
12
ChangeLog
12
ChangeLog
@ -1,3 +1,15 @@
|
||||
2000-11-07 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
|
||||
|
||||
* lib/reLyX/acinclude.m4 (RELYX_CHECK_ERRORS): remove useless message.
|
||||
|
||||
* lib/configure.m4 (latex_to_html_command): avoid spaces around =
|
||||
for variable assignment.
|
||||
|
||||
2000-11-07 Rob Lahaye <lahaye@postech.edu>
|
||||
|
||||
* src/lib/ui/default.ui: added sub/superscripts to menu as
|
||||
Insert->Special characters and cleaned-up the file a bit
|
||||
|
||||
2000-11-07 Allan Rae <rae@lyx.org>
|
||||
|
||||
* src/frontends/xforms/FormPreferences.C (feedback): make sure
|
||||
|
@ -1,6 +1,5 @@
|
||||
dnl Usage: RELYX_WARNING(message) Displays the warning "message" and sets
|
||||
the
|
||||
dnl flag lyx_warning to yes.
|
||||
dnl the flag lyx_warning to yes.
|
||||
AC_DEFUN(RELYX_WARNING,[
|
||||
relyx_warning_txt="$relyx_warning_txt
|
||||
== $1
|
||||
@ -90,10 +89,5 @@ cat <<EOF
|
||||
$relyx_warning_txt
|
||||
EOF
|
||||
fi
|
||||
cat <<EOF
|
||||
Configuration of LyX was successful.
|
||||
Type 'make' to compile the program,
|
||||
and then 'make install' to install it.
|
||||
EOF
|
||||
fi])
|
||||
|
||||
|
@ -29,7 +29,8 @@ Menuset
|
||||
Item "New...|N" "buffer-new"
|
||||
Item "New from template...|t" "buffer-new-template"
|
||||
Item "Open...|O" "buffer-open"
|
||||
Submenu "Import|I" "fileimport"
|
||||
Separator
|
||||
Submenu "Import|I" "file_import"
|
||||
Separator
|
||||
Item "Exit|x" "lyx-quit"
|
||||
Separator
|
||||
@ -47,10 +48,10 @@ Menuset
|
||||
Item "Revert to saved|R" "buffer-reload"
|
||||
Submenu "Version control|V" "file_vc"
|
||||
Separator
|
||||
Submenu "Import|m" "fileimport"
|
||||
Submenu "Insert|I" "fileinsert"
|
||||
Submenu "Import|m" "file_import"
|
||||
Submenu "Insert|I" "file_insert"
|
||||
Separator
|
||||
Submenu "Export|E" "exportfile"
|
||||
Submenu "Export|E" "file_export"
|
||||
Item "Print...|P" "buffer-print"
|
||||
Item "Fax...|F" "buffer-export fax"
|
||||
Separator
|
||||
@ -59,21 +60,6 @@ Menuset
|
||||
Lastfiles
|
||||
End
|
||||
|
||||
Menu "fileimport"
|
||||
Item "Ascii text as lines...|A" "buffer-import text"
|
||||
Item "Ascii text as paragraphs...|p" "buffer-import textparagraph"
|
||||
ImportFormats
|
||||
End
|
||||
|
||||
Menu "fileinsert"
|
||||
Item "File...|F" "buffer-child-insert"
|
||||
Item "LyX file...|X" "file-insert"
|
||||
Item "Ascii as lines...|l" "file-insert-ascii lines"
|
||||
Item "Ascii as paragraphs...|p" "file-insert-ascii paragraphs"
|
||||
Item "External material...|E" "external-insert"
|
||||
End
|
||||
|
||||
|
||||
Menu "file_vc"
|
||||
OptItem "Register|R" "vc-register"
|
||||
OptItem "Check In Changes|I" "vc-check-in"
|
||||
@ -83,7 +69,22 @@ Menuset
|
||||
OptItem "Show History|H" "vc-history"
|
||||
End
|
||||
|
||||
Menu "exportfile"
|
||||
Menu "file_import"
|
||||
Item "Ascii text as lines...|A" "buffer-import text"
|
||||
Item "Ascii text as paragraphs...|p" "buffer-import textparagraph"
|
||||
ImportFormats
|
||||
End
|
||||
|
||||
Menu "file_insert"
|
||||
Item "File...|F" "buffer-child-insert"
|
||||
Item "LyX file...|X" "file-insert"
|
||||
Item "Ascii as lines...|l" "file-insert-ascii lines"
|
||||
Item "Ascii as paragraphs...|p" "file-insert-ascii paragraphs"
|
||||
Item "External material...|E" "external-insert"
|
||||
End
|
||||
|
||||
|
||||
Menu "file_export"
|
||||
ExportFormats
|
||||
End
|
||||
|
||||
@ -91,8 +92,8 @@ Menuset
|
||||
# EDIT MENU
|
||||
#
|
||||
Menu "edit_nobuffer"
|
||||
Item "Reconfigure|R" "reconfigure"
|
||||
Item "Preferences...|P" "dialog-preferences"
|
||||
Item "Reconfigure|R" "reconfigure"
|
||||
End
|
||||
|
||||
Menu "edit"
|
||||
@ -180,6 +181,19 @@ Menuset
|
||||
Submenu "Lists & TOC|i" "insert_toc"
|
||||
End
|
||||
|
||||
Menu "insert_special"
|
||||
Item "Subscript|S" "math-insert _"
|
||||
Item "Superscript|u" "math-insert ^"
|
||||
Item "HFill|H" "hfill-insert"
|
||||
Item "Hyphenation point|p" "hyphenation-point-insert"
|
||||
Item "Protected blank|b" "protected-space-insert"
|
||||
Item "Linebreak|L" "break-line"
|
||||
Item "Ellipsis|i" "dots-insert"
|
||||
Item "End of sentence|E" "end-of-sentence-period-insert"
|
||||
Item "Ordinary Quote|Q" "quote-insert"
|
||||
Item "Menu Separator|M" "menu-separator-insert"
|
||||
End
|
||||
|
||||
Menu "insert_floats"
|
||||
Item "Figure float|F" "buffer-float-insert figure"
|
||||
Item "Table float|T" "buffer-float-insert table"
|
||||
@ -198,17 +212,6 @@ Menuset
|
||||
Item "BibTeX reference...|B" "bibtex-insert"
|
||||
End
|
||||
|
||||
Menu "insert_special"
|
||||
Item "HFill|H" "hfill-insert"
|
||||
Item "Hyphenation point|p" "hyphenation-point-insert"
|
||||
Item "Protected blank|b" "protected-space-insert"
|
||||
Item "Linebreak|L" "break-line"
|
||||
Item "Ellipsis|i" "dots-insert"
|
||||
Item "End of sentence|E" "end-of-sentence-period-insert"
|
||||
Item "Ordinary Quote|Q" "quote-insert"
|
||||
Item "Menu Separator|M" "menu-separator-insert"
|
||||
End
|
||||
|
||||
#
|
||||
# LAYOUT MENU
|
||||
#
|
||||
@ -314,13 +317,13 @@ Toolbar
|
||||
Icon "font-noun"
|
||||
Icon "font-free"
|
||||
Separator
|
||||
Icon "tex-mode"
|
||||
Icon "math-mode"
|
||||
Separator
|
||||
Icon "footnote-insert"
|
||||
Icon "marginpar-insert"
|
||||
Icon "depth-next"
|
||||
Separator
|
||||
Icon "tex-mode"
|
||||
Icon "math-mode"
|
||||
Separator
|
||||
Icon "figure-insert"
|
||||
Icon "dialog-tabular-insert"
|
||||
End
|
||||
|
Loading…
Reference in New Issue
Block a user