mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-23 08:44:01 +00:00
Add button for default layout to the 'extra' toolbar
* src/text3.C (LyXText::dispatch): An empty argument of LFUN_LAYOUT is now allowd and means the default layout of the text class * lib/images/layout.xpm: New image for default layout * lib/Makefile.am: Add new file * development/scons/scons_manifest.py: ditto * lib/ui/stdtoolbars.ui: Add "Deafult" layout button to the extra toolbar git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@15953 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
c904b9aa0c
commit
c4b59fab79
@ -1439,6 +1439,7 @@ lib_images_files = Split('''
|
|||||||
footnote-insert.xpm
|
footnote-insert.xpm
|
||||||
index-insert.xpm
|
index-insert.xpm
|
||||||
label-insert.xpm
|
label-insert.xpm
|
||||||
|
layout.xpm
|
||||||
layout-document.xpm
|
layout-document.xpm
|
||||||
layout-paragraph.xpm
|
layout-paragraph.xpm
|
||||||
layout_Description.xpm
|
layout_Description.xpm
|
||||||
|
@ -196,6 +196,7 @@ dist_images_DATA = \
|
|||||||
images/footnote-insert.xpm \
|
images/footnote-insert.xpm \
|
||||||
images/index-insert.xpm \
|
images/index-insert.xpm \
|
||||||
images/label-insert.xpm \
|
images/label-insert.xpm \
|
||||||
|
images/layout.xpm \
|
||||||
images/layout-document.xpm \
|
images/layout-document.xpm \
|
||||||
images/layout-paragraph.xpm \
|
images/layout-paragraph.xpm \
|
||||||
images/layout_Description.xpm \
|
images/layout_Description.xpm \
|
||||||
|
25
lib/images/layout.xpm
Normal file
25
lib/images/layout.xpm
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
/* XPM */
|
||||||
|
static char * layout_xpm[] = {
|
||||||
|
"20 20 2 1",
|
||||||
|
" c None",
|
||||||
|
". c #000000",
|
||||||
|
" ",
|
||||||
|
" ",
|
||||||
|
" ................. ",
|
||||||
|
" ",
|
||||||
|
" ",
|
||||||
|
" ................. ",
|
||||||
|
" ",
|
||||||
|
" ",
|
||||||
|
" ................. ",
|
||||||
|
" ",
|
||||||
|
" ",
|
||||||
|
" ................. ",
|
||||||
|
" ",
|
||||||
|
" ",
|
||||||
|
" ................. ",
|
||||||
|
" ",
|
||||||
|
" ",
|
||||||
|
" ................. ",
|
||||||
|
" ",
|
||||||
|
" "};
|
@ -63,6 +63,7 @@ Toolbar "standard" "Standard"
|
|||||||
End
|
End
|
||||||
|
|
||||||
Toolbar "extra" "Extra"
|
Toolbar "extra" "Extra"
|
||||||
|
Item "Default" "layout"
|
||||||
Item "Numbered list" "layout Enumerate"
|
Item "Numbered list" "layout Enumerate"
|
||||||
Item "Itemized list" "layout Itemize"
|
Item "Itemized list" "layout Itemize"
|
||||||
Item "List" "layout List"
|
Item "List" "layout List"
|
||||||
|
18
src/text3.C
18
src/text3.C
@ -788,21 +788,13 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
|
|||||||
lyxerr[Debug::INFO] << "LFUN_LAYOUT: (arg) "
|
lyxerr[Debug::INFO] << "LFUN_LAYOUT: (arg) "
|
||||||
<< cmd.argument << endl;
|
<< cmd.argument << endl;
|
||||||
|
|
||||||
// This is not the good solution to the empty argument
|
|
||||||
// problem, but it will hopefully suffice for 1.2.0.
|
|
||||||
// The correct solution would be to augument the
|
|
||||||
// function list/array with information about what
|
|
||||||
// functions needs arguments and their type.
|
|
||||||
if (cmd.argument.empty()) {
|
|
||||||
cur.errorMessage(_("LyX function 'layout' needs an argument."));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Derive layout number from given argument (string)
|
// Derive layout number from given argument (string)
|
||||||
// and current buffer's textclass (number)
|
// and current buffer's textclass (number)
|
||||||
LyXTextClass const & tclass = bv->buffer()->params().getLyXTextClass();
|
LyXTextClass const & tclass = bv->buffer()->params().getLyXTextClass();
|
||||||
bool hasLayout = tclass.hasLayout(cmd.argument);
|
string layout = cmd.argument.empty() ?
|
||||||
string layout = cmd.argument;
|
tclass.defaultLayoutName() :
|
||||||
|
cmd.argument;
|
||||||
|
bool hasLayout = tclass.hasLayout(layout);
|
||||||
|
|
||||||
// If the entry is obsolete, use the new one instead.
|
// If the entry is obsolete, use the new one instead.
|
||||||
if (hasLayout) {
|
if (hasLayout) {
|
||||||
@ -812,7 +804,7 @@ void LyXText::dispatch(LCursor & cur, FuncRequest & cmd)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!hasLayout) {
|
if (!hasLayout) {
|
||||||
cur.errorMessage(string(N_("Layout ")) + cmd.argument +
|
cur.errorMessage(string(N_("Layout ")) + layout +
|
||||||
N_(" not known"));
|
N_(" not known"));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
@ -44,6 +44,10 @@ What's new
|
|||||||
- New Galician translation of the documentation (splash, Intro);
|
- New Galician translation of the documentation (splash, Intro);
|
||||||
Update Hebrew (Intro) and Italian (UserGuide) documentation.
|
Update Hebrew (Intro) and Italian (UserGuide) documentation.
|
||||||
|
|
||||||
|
- The layout lfun without an argument does now set the layout to the default
|
||||||
|
layout of the text class. This is used by a new button "Default" in the
|
||||||
|
extra toolbar.
|
||||||
|
|
||||||
** Bug fixes:
|
** Bug fixes:
|
||||||
|
|
||||||
* Document Input/Output
|
* Document Input/Output
|
||||||
|
Loading…
x
Reference in New Issue
Block a user