revert r27209

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27229 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2008-11-03 08:59:03 +00:00
parent 97740523fe
commit 24ac7258c5
5 changed files with 27 additions and 24 deletions

View File

@ -228,26 +228,7 @@ InsetLayout Box:Shaded
MultiPar true MultiPar true
End End
InsetLayout figure InsetLayout Float
LabelString Figure
LabelFont
Color collapsable
Size Small
EndFont
MultiPar true
End
InsetLayout table
LabelString Table
LabelFont
Color collapsable
Size Small
EndFont
MultiPar true
End
InsetLayout algorithm
LabelString Algorithm
LabelFont LabelFont
Color collapsable Color collapsable
Size Small Size Small

View File

@ -2391,7 +2391,7 @@ bool Buffer::doExport(string const & format, bool put_in_tempdir,
makeDocBookFile(FileName(filename), runparams); makeDocBookFile(FileName(filename), runparams);
} }
// LaTeX backend // LaTeX backend
else if (!put_in_tempdir) { else if (backend_format == format) {
runparams.nice = true; runparams.nice = true;
if (!makeLaTeXFile(FileName(filename), string(), runparams)) if (!makeLaTeXFile(FileName(filename), string(), runparams))
return false; return false;

View File

@ -694,9 +694,25 @@ docstring const KeySymbol::print(KeyModifier mod, bool forgui) const
tmpkey += Qt::AltModifier; tmpkey += Qt::AltModifier;
QKeySequence seq(tmpkey); QKeySequence seq(tmpkey);
QString str;
if (forgui)
str = seq.toString(QKeySequence::NativeText);
else {
#ifdef Q_WS_MACX
// Qt/Mac does not use Command and friends in the
// portable case, but the windows-like Control+x (bug 5421).
str = seq.toString(QKeySequence::NativeText);
str.replace(QChar(0x21E7), qt_("Shift-"));
str.replace(QChar(0x2303), qt_("Control-"));
str.replace(QChar(0x2325), qt_("Option-"));
str.replace(QChar(0x2318), qt_("Command-"));
#else
str = seq.toString(QKeySequence::PortableText);
#endif
}
return qstring_to_ucs4(seq.toString(forgui ? QKeySequence::NativeText return qstring_to_ucs4(str);
: QKeySequence::PortableText));
} }

View File

@ -127,6 +127,12 @@ InsetFloat::~InsetFloat()
} }
docstring InsetFloat::name() const
{
return "Float:" + name_;
}
docstring InsetFloat::toolTip(BufferView const & bv, int x, int y) const docstring InsetFloat::toolTip(BufferView const & bv, int x, int y) const
{ {
if (InsetCollapsable::toolTip(bv, x, y).empty() || isOpen()) if (InsetCollapsable::toolTip(bv, x, y).empty() || isOpen())

View File

@ -71,7 +71,7 @@ public:
InsetFloatParams const & params() const { return params_; } InsetFloatParams const & params() const { return params_; }
private: private:
/// ///
docstring name() const { return name_; } docstring name() const;
/// ///
docstring toolTip(BufferView const & bv, int x, int y) const; docstring toolTip(BufferView const & bv, int x, int y) const;
/// ///