2006-03-05 17:24:44 +00:00
|
|
|
|
/**
|
2007-12-26 10:55:43 +00:00
|
|
|
|
* \file qt4/Menus.cpp
|
2006-03-05 17:24:44 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author John Levon
|
2008-03-07 00:21:23 +00:00
|
|
|
|
* \author Asger Alstrup
|
2008-03-10 06:40:55 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2008-03-07 00:21:23 +00:00
|
|
|
|
* \author Jean-Marc Lasgouttes
|
2008-03-09 16:16:39 +00:00
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
2008-03-07 00:21:23 +00:00
|
|
|
|
* \author Dekel Tsur
|
|
|
|
|
* \author Martin Vermeer
|
2006-03-05 17:24:44 +00:00
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2007-12-26 10:55:43 +00:00
|
|
|
|
#include "Menus.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2006-12-20 14:28:06 +00:00
|
|
|
|
#include "Action.h"
|
2007-12-25 22:27:32 +00:00
|
|
|
|
#include "GuiApplication.h"
|
|
|
|
|
#include "GuiView.h"
|
2008-03-08 16:45:51 +00:00
|
|
|
|
#include "qt_helpers.h"
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2008-03-07 00:21:23 +00:00
|
|
|
|
#include "BranchList.h"
|
|
|
|
|
#include "Buffer.h"
|
|
|
|
|
#include "BufferList.h"
|
|
|
|
|
#include "BufferParams.h"
|
|
|
|
|
#include "Converter.h"
|
|
|
|
|
#include "CutAndPaste.h"
|
|
|
|
|
#include "Floating.h"
|
|
|
|
|
#include "FloatList.h"
|
|
|
|
|
#include "Format.h"
|
2008-03-08 15:33:52 +00:00
|
|
|
|
#include "FuncRequest.h"
|
|
|
|
|
#include "FuncStatus.h"
|
2008-03-07 00:21:23 +00:00
|
|
|
|
#include "KeyMap.h"
|
2008-03-08 15:33:52 +00:00
|
|
|
|
#include "Lexer.h"
|
2008-03-07 00:21:23 +00:00
|
|
|
|
#include "LyXAction.h"
|
|
|
|
|
#include "LyX.h" // for lastfiles
|
|
|
|
|
#include "LyXFunc.h"
|
|
|
|
|
#include "Paragraph.h"
|
2008-03-08 15:33:52 +00:00
|
|
|
|
#include "Session.h"
|
2008-03-07 00:21:23 +00:00
|
|
|
|
#include "TextClass.h"
|
|
|
|
|
#include "TocBackend.h"
|
|
|
|
|
#include "ToolbarBackend.h"
|
|
|
|
|
|
|
|
|
|
#include "support/convert.h"
|
2007-11-29 07:04:28 +00:00
|
|
|
|
#include "support/debug.h"
|
2008-03-07 00:21:23 +00:00
|
|
|
|
#include "support/filetools.h"
|
|
|
|
|
#include "support/gettext.h"
|
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
#include <QCursor>
|
2008-03-08 15:33:52 +00:00
|
|
|
|
#include <QHash>
|
2008-03-10 22:23:16 +00:00
|
|
|
|
#include <QList>
|
2007-02-26 19:54:41 +00:00
|
|
|
|
#include <QMenuBar>
|
2008-03-08 15:33:52 +00:00
|
|
|
|
#include <QString>
|
|
|
|
|
|
2008-03-07 00:21:23 +00:00
|
|
|
|
#include <algorithm>
|
|
|
|
|
#include <ostream>
|
2008-03-08 15:33:52 +00:00
|
|
|
|
#include <vector>
|
2008-03-07 00:21:23 +00:00
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
using namespace lyx::support;
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace frontend {
|
|
|
|
|
|
2008-03-07 00:21:23 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2008-03-08 15:33:52 +00:00
|
|
|
|
// MacOSX specific stuff is at the end.
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
class MenuDefinition;
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
class MenuItem {
|
|
|
|
|
public:
|
|
|
|
|
/// The type of elements that can be in a menu
|
|
|
|
|
enum Kind {
|
|
|
|
|
///
|
|
|
|
|
Command,
|
|
|
|
|
///
|
|
|
|
|
Submenu,
|
|
|
|
|
///
|
|
|
|
|
Separator,
|
|
|
|
|
/** This is the list of last opened file,
|
|
|
|
|
typically for the File menu. */
|
|
|
|
|
Lastfiles,
|
|
|
|
|
/** This is the list of opened Documents,
|
|
|
|
|
typically for the Documents menu. */
|
|
|
|
|
Documents,
|
|
|
|
|
/** This is the bookmarks */
|
|
|
|
|
Bookmarks,
|
|
|
|
|
///
|
|
|
|
|
Toc,
|
|
|
|
|
/** This is a list of viewable formats
|
|
|
|
|
typically for the File->View menu. */
|
|
|
|
|
ViewFormats,
|
|
|
|
|
/** This is a list of updatable formats
|
|
|
|
|
typically for the File->Update menu. */
|
|
|
|
|
UpdateFormats,
|
|
|
|
|
/** This is a list of exportable formats
|
|
|
|
|
typically for the File->Export menu. */
|
|
|
|
|
ExportFormats,
|
|
|
|
|
/** This is a list of importable formats
|
|
|
|
|
typically for the File->Export menu. */
|
|
|
|
|
ImportFormats,
|
|
|
|
|
/** This is the list of elements available
|
|
|
|
|
* for insertion into document. */
|
|
|
|
|
CharStyles,
|
|
|
|
|
/** This is the list of user-configurable
|
|
|
|
|
insets to insert into document */
|
|
|
|
|
Custom,
|
|
|
|
|
/** This is the list of XML elements to
|
|
|
|
|
insert into the document */
|
|
|
|
|
Elements,
|
|
|
|
|
/** This is the list of floats that we can
|
|
|
|
|
insert a list for. */
|
|
|
|
|
FloatListInsert,
|
|
|
|
|
/** This is the list of floats that we can
|
|
|
|
|
insert. */
|
|
|
|
|
FloatInsert,
|
|
|
|
|
/** This is the list of selections that can
|
|
|
|
|
be pasted. */
|
|
|
|
|
PasteRecent,
|
|
|
|
|
/** toolbars */
|
|
|
|
|
Toolbars,
|
|
|
|
|
/** Available branches in document */
|
|
|
|
|
Branches
|
|
|
|
|
};
|
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
explicit MenuItem(Kind kind) : kind_(kind), optional_(false) {}
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
|
|
|
|
MenuItem(Kind kind,
|
|
|
|
|
QString const & label,
|
|
|
|
|
QString const & submenu = QString(),
|
2008-03-08 16:45:51 +00:00
|
|
|
|
bool optional = false)
|
|
|
|
|
: kind_(kind), label_(label), submenuname_(submenu), optional_(optional)
|
|
|
|
|
{
|
|
|
|
|
BOOST_ASSERT(kind == Submenu);
|
|
|
|
|
}
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
|
|
|
|
MenuItem(Kind kind,
|
|
|
|
|
QString const & label,
|
|
|
|
|
FuncRequest const & func,
|
2008-03-08 16:45:51 +00:00
|
|
|
|
bool optional = false)
|
|
|
|
|
: kind_(kind), label_(label), func_(func), optional_(optional)
|
|
|
|
|
{
|
|
|
|
|
func_.origin = FuncRequest::MENU;
|
|
|
|
|
}
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
// boost::shared_ptr<MenuDefinition> needs this apprently...
|
2008-03-08 17:34:54 +00:00
|
|
|
|
~MenuItem() {}
|
|
|
|
|
|
2008-03-08 15:33:52 +00:00
|
|
|
|
/// The label of a given menuitem
|
2008-03-08 16:45:51 +00:00
|
|
|
|
QString label() const { return label_.split('|')[0]; }
|
|
|
|
|
|
2008-03-08 15:33:52 +00:00
|
|
|
|
/// The keyboard shortcut (usually underlined in the entry)
|
2008-03-08 16:45:51 +00:00
|
|
|
|
QString shortcut() const
|
|
|
|
|
{
|
|
|
|
|
return label_.contains('|') ? label_.split('|')[1] : QString();
|
|
|
|
|
}
|
2008-03-08 15:33:52 +00:00
|
|
|
|
/// The complete label, with label and shortcut separated by a '|'
|
|
|
|
|
QString fulllabel() const { return label_;}
|
|
|
|
|
/// The kind of entry
|
|
|
|
|
Kind kind() const { return kind_; }
|
|
|
|
|
/// the action (if relevant)
|
|
|
|
|
FuncRequest const & func() const { return func_; }
|
|
|
|
|
/// returns true if the entry should be ommited when disabled
|
|
|
|
|
bool optional() const { return optional_; }
|
|
|
|
|
/// returns the status of the lfun associated with this entry
|
|
|
|
|
FuncStatus const & status() const { return status_; }
|
|
|
|
|
/// returns the status of the lfun associated with this entry
|
|
|
|
|
FuncStatus & status() { return status_; }
|
|
|
|
|
/// returns the status of the lfun associated with this entry
|
|
|
|
|
void status(FuncStatus const & status) { status_ = status; }
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
2008-03-08 15:33:52 +00:00
|
|
|
|
///returns the binding associated to this action.
|
2008-03-08 16:45:51 +00:00
|
|
|
|
QString binding() const
|
|
|
|
|
{
|
|
|
|
|
if (kind_ != Command)
|
|
|
|
|
return QString();
|
|
|
|
|
// Get the keys bound to this action, but keep only the
|
|
|
|
|
// first one later
|
|
|
|
|
KeyMap::Bindings bindings = theTopLevelKeymap().findBindings(func_);
|
|
|
|
|
if (bindings.size())
|
|
|
|
|
return toqstr(bindings.begin()->print(KeySequence::ForGui));
|
|
|
|
|
|
|
|
|
|
LYXERR(Debug::KBMAP, "No binding for "
|
|
|
|
|
<< lyxaction.getActionName(func_.action)
|
|
|
|
|
<< '(' << func_.argument() << ')');
|
|
|
|
|
return QString();
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-08 15:33:52 +00:00
|
|
|
|
/// the description of the submenu (if relevant)
|
|
|
|
|
QString const & submenuname() const { return submenuname_; }
|
|
|
|
|
/// set the description of the submenu
|
|
|
|
|
void submenuname(QString const & name) { submenuname_ = name; }
|
|
|
|
|
///
|
2008-03-10 22:23:16 +00:00
|
|
|
|
bool hasSubmenu() const { return submenu_.isEmpty(); }
|
|
|
|
|
///
|
|
|
|
|
MenuDefinition const & submenu() const { return submenu_.at(0); }
|
|
|
|
|
MenuDefinition & submenu() { return submenu_[0]; }
|
2008-03-08 15:33:52 +00:00
|
|
|
|
///
|
2008-03-10 22:23:16 +00:00
|
|
|
|
void setSubmenu(MenuDefinition const & menu)
|
|
|
|
|
{
|
|
|
|
|
submenu_.clear();
|
|
|
|
|
submenu_.append(menu);
|
|
|
|
|
}
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
///
|
|
|
|
|
Kind kind_;
|
|
|
|
|
///
|
|
|
|
|
QString label_;
|
|
|
|
|
///
|
|
|
|
|
FuncRequest func_;
|
|
|
|
|
///
|
|
|
|
|
QString submenuname_;
|
|
|
|
|
///
|
|
|
|
|
bool optional_;
|
|
|
|
|
///
|
|
|
|
|
FuncStatus status_;
|
2008-03-10 22:23:16 +00:00
|
|
|
|
/// contains 0 or 1 item.
|
|
|
|
|
QList<MenuDefinition> submenu_;
|
2008-03-08 15:33:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
///
|
2008-03-09 20:38:03 +00:00
|
|
|
|
class MenuDefinition {
|
2008-03-08 15:33:52 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
|
|
|
|
typedef std::vector<MenuItem> ItemList;
|
|
|
|
|
///
|
|
|
|
|
typedef ItemList::const_iterator const_iterator;
|
|
|
|
|
///
|
2008-03-09 20:38:03 +00:00
|
|
|
|
explicit MenuDefinition(QString const & name = QString()) : name_(name) {}
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
void read(Lexer &);
|
|
|
|
|
///
|
|
|
|
|
QString const & name() const { return name_; }
|
|
|
|
|
///
|
|
|
|
|
bool empty() const { return items_.empty(); }
|
|
|
|
|
/// Clear the menu content.
|
|
|
|
|
void clear() { items_.clear(); }
|
|
|
|
|
///
|
|
|
|
|
size_t size() const { return items_.size(); }
|
|
|
|
|
///
|
|
|
|
|
MenuItem const & operator[](size_t) const;
|
|
|
|
|
///
|
|
|
|
|
const_iterator begin() const { return items_.begin(); }
|
|
|
|
|
///
|
|
|
|
|
const_iterator end() const { return items_.end(); }
|
|
|
|
|
|
|
|
|
|
// search for func in this menu iteratively, and put menu
|
|
|
|
|
// names in a stack.
|
|
|
|
|
bool searchMenu(FuncRequest const & func, std::vector<docstring> & names)
|
|
|
|
|
const;
|
|
|
|
|
///
|
|
|
|
|
bool hasFunc(FuncRequest const &) const;
|
|
|
|
|
/// Add the menu item unconditionally
|
|
|
|
|
void add(MenuItem const & item) { items_.push_back(item); }
|
|
|
|
|
/// Checks the associated FuncRequest status before adding the
|
|
|
|
|
/// menu item.
|
|
|
|
|
void addWithStatusCheck(MenuItem const &);
|
|
|
|
|
// Check whether the menu shortcuts are unique
|
|
|
|
|
void checkShortcuts() const;
|
|
|
|
|
///
|
|
|
|
|
void expandLastfiles();
|
|
|
|
|
void expandDocuments();
|
|
|
|
|
void expandBookmarks();
|
|
|
|
|
void expandFormats(MenuItem::Kind kind, Buffer const * buf);
|
|
|
|
|
void expandFloatListInsert(Buffer const * buf);
|
|
|
|
|
void expandFloatInsert(Buffer const * buf);
|
|
|
|
|
void expandFlexInsert(Buffer const * buf, std::string s);
|
|
|
|
|
void expandToc2(Toc const & toc_list, size_t from, size_t to, int depth);
|
|
|
|
|
void expandToc(Buffer const * buf);
|
|
|
|
|
void expandPasteRecent();
|
|
|
|
|
void expandToolbars();
|
|
|
|
|
void expandBranches(Buffer const * buf);
|
2008-03-08 16:15:34 +00:00
|
|
|
|
///
|
2008-03-08 15:33:52 +00:00
|
|
|
|
ItemList items_;
|
|
|
|
|
///
|
|
|
|
|
QString name_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
/// Helper for std::find_if
|
2008-03-07 00:21:23 +00:00
|
|
|
|
class MenuNamesEqual
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
MenuNamesEqual(QString const & name) : name_(name) {}
|
2008-03-09 20:38:03 +00:00
|
|
|
|
bool operator()(MenuDefinition const & menu) const { return menu.name() == name_; }
|
2008-03-07 00:21:23 +00:00
|
|
|
|
private:
|
|
|
|
|
QString name_;
|
|
|
|
|
};
|
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
2008-03-08 15:33:52 +00:00
|
|
|
|
///
|
2008-03-09 20:38:03 +00:00
|
|
|
|
typedef std::vector<MenuDefinition> MenuList;
|
2008-03-08 15:33:52 +00:00
|
|
|
|
///
|
|
|
|
|
typedef MenuList::const_iterator const_iterator;
|
|
|
|
|
///
|
|
|
|
|
typedef MenuList::iterator iterator;
|
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
2008-03-09 20:38:03 +00:00
|
|
|
|
// MenuDefinition implementation
|
2008-03-08 16:45:51 +00:00
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
2008-03-08 16:15:34 +00:00
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::addWithStatusCheck(MenuItem const & i)
|
2008-03-08 16:45:51 +00:00
|
|
|
|
{
|
|
|
|
|
switch (i.kind()) {
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case MenuItem::Command: {
|
|
|
|
|
FuncStatus status = lyx::getStatus(i.func());
|
|
|
|
|
if (status.unknown() || (!status.enabled() && i.optional()))
|
|
|
|
|
break;
|
|
|
|
|
items_.push_back(i);
|
|
|
|
|
items_.back().status(status);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2008-03-08 16:15:34 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case MenuItem::Submenu: {
|
2008-03-10 22:23:16 +00:00
|
|
|
|
if (i.hasSubmenu()) {
|
2008-03-08 16:45:51 +00:00
|
|
|
|
bool enabled = false;
|
2008-03-10 22:23:16 +00:00
|
|
|
|
for (const_iterator cit = i.submenu().begin();
|
|
|
|
|
cit != i.submenu().end(); ++cit) {
|
2008-03-08 16:45:51 +00:00
|
|
|
|
if ((cit->kind() == MenuItem::Command
|
|
|
|
|
|| cit->kind() == MenuItem::Submenu)
|
|
|
|
|
&& cit->status().enabled()) {
|
|
|
|
|
enabled = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (enabled || !i.optional()) {
|
|
|
|
|
items_.push_back(i);
|
|
|
|
|
items_.back().status().enabled(enabled);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
items_.push_back(i);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2008-03-08 16:15:34 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case MenuItem::Separator:
|
|
|
|
|
if (!items_.empty() && items_.back().kind() != MenuItem::Separator)
|
|
|
|
|
items_.push_back(i);
|
|
|
|
|
break;
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
default:
|
|
|
|
|
items_.push_back(i);
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::read(Lexer & lex)
|
2008-03-08 16:45:51 +00:00
|
|
|
|
{
|
|
|
|
|
enum Menutags {
|
|
|
|
|
md_item = 1,
|
|
|
|
|
md_branches,
|
|
|
|
|
md_documents,
|
|
|
|
|
md_bookmarks,
|
|
|
|
|
md_charstyles,
|
|
|
|
|
md_custom,
|
|
|
|
|
md_elements,
|
|
|
|
|
md_endmenu,
|
|
|
|
|
md_exportformats,
|
|
|
|
|
md_importformats,
|
|
|
|
|
md_lastfiles,
|
|
|
|
|
md_optitem,
|
|
|
|
|
md_optsubmenu,
|
|
|
|
|
md_separator,
|
|
|
|
|
md_submenu,
|
|
|
|
|
md_toc,
|
|
|
|
|
md_updateformats,
|
|
|
|
|
md_viewformats,
|
|
|
|
|
md_floatlistinsert,
|
|
|
|
|
md_floatinsert,
|
|
|
|
|
md_pasterecent,
|
|
|
|
|
md_toolbars,
|
|
|
|
|
md_last
|
|
|
|
|
};
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
struct keyword_item menutags[md_last - 1] = {
|
|
|
|
|
{ "bookmarks", md_bookmarks },
|
|
|
|
|
{ "branches", md_branches },
|
|
|
|
|
{ "charstyles", md_charstyles },
|
|
|
|
|
{ "custom", md_custom },
|
|
|
|
|
{ "documents", md_documents },
|
|
|
|
|
{ "elements", md_elements },
|
|
|
|
|
{ "end", md_endmenu },
|
|
|
|
|
{ "exportformats", md_exportformats },
|
|
|
|
|
{ "floatinsert", md_floatinsert },
|
|
|
|
|
{ "floatlistinsert", md_floatlistinsert },
|
|
|
|
|
{ "importformats", md_importformats },
|
|
|
|
|
{ "item", md_item },
|
|
|
|
|
{ "lastfiles", md_lastfiles },
|
|
|
|
|
{ "optitem", md_optitem },
|
|
|
|
|
{ "optsubmenu", md_optsubmenu },
|
|
|
|
|
{ "pasterecent", md_pasterecent },
|
|
|
|
|
{ "separator", md_separator },
|
|
|
|
|
{ "submenu", md_submenu },
|
|
|
|
|
{ "toc", md_toc },
|
|
|
|
|
{ "toolbars", md_toolbars },
|
|
|
|
|
{ "updateformats", md_updateformats },
|
|
|
|
|
{ "viewformats", md_viewformats }
|
|
|
|
|
};
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
lex.pushTable(menutags, md_last - 1);
|
|
|
|
|
if (lyxerr.debugging(Debug::PARSER))
|
|
|
|
|
lex.printTable(lyxerr);
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
bool quit = false;
|
|
|
|
|
bool optional = false;
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
while (lex.isOK() && !quit) {
|
|
|
|
|
switch (lex.lex()) {
|
|
|
|
|
case md_optitem:
|
|
|
|
|
optional = true;
|
|
|
|
|
// fallback to md_item
|
|
|
|
|
case md_item: {
|
|
|
|
|
lex.next(true);
|
|
|
|
|
docstring const name = translateIfPossible(lex.getDocString());
|
|
|
|
|
lex.next(true);
|
|
|
|
|
string const command = lex.getString();
|
|
|
|
|
FuncRequest func = lyxaction.lookupFunc(command);
|
|
|
|
|
add(MenuItem(MenuItem::Command, toqstr(name), func, optional));
|
|
|
|
|
optional = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_separator:
|
|
|
|
|
add(MenuItem(MenuItem::Separator));
|
|
|
|
|
break;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_lastfiles:
|
|
|
|
|
add(MenuItem(MenuItem::Lastfiles));
|
|
|
|
|
break;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_charstyles:
|
|
|
|
|
add(MenuItem(MenuItem::CharStyles));
|
|
|
|
|
break;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_custom:
|
|
|
|
|
add(MenuItem(MenuItem::Custom));
|
|
|
|
|
break;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_elements:
|
|
|
|
|
add(MenuItem(MenuItem::Elements));
|
|
|
|
|
break;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_documents:
|
|
|
|
|
add(MenuItem(MenuItem::Documents));
|
|
|
|
|
break;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_bookmarks:
|
|
|
|
|
add(MenuItem(MenuItem::Bookmarks));
|
|
|
|
|
break;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_toc:
|
|
|
|
|
add(MenuItem(MenuItem::Toc));
|
|
|
|
|
break;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_viewformats:
|
|
|
|
|
add(MenuItem(MenuItem::ViewFormats));
|
|
|
|
|
break;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_updateformats:
|
|
|
|
|
add(MenuItem(MenuItem::UpdateFormats));
|
|
|
|
|
break;
|
2006-03-05 17:24:44 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_exportformats:
|
|
|
|
|
add(MenuItem(MenuItem::ExportFormats));
|
|
|
|
|
break;
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_importformats:
|
|
|
|
|
add(MenuItem(MenuItem::ImportFormats));
|
|
|
|
|
break;
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_floatlistinsert:
|
|
|
|
|
add(MenuItem(MenuItem::FloatListInsert));
|
|
|
|
|
break;
|
2008-03-08 15:33:52 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
case md_floatinsert:
|
|
|
|
|
add(MenuItem(MenuItem::FloatInsert));
|
|
|
|
|
break;
|
2008-03-07 00:21:23 +00:00
|
|
|
|
|
|
|
|
|
case md_pasterecent:
|
|
|
|
|
add(MenuItem(MenuItem::PasteRecent));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case md_toolbars:
|
|
|
|
|
add(MenuItem(MenuItem::Toolbars));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case md_branches:
|
|
|
|
|
add(MenuItem(MenuItem::Branches));
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case md_optsubmenu:
|
|
|
|
|
optional = true;
|
|
|
|
|
// fallback to md_submenu
|
|
|
|
|
case md_submenu: {
|
|
|
|
|
lex.next(true);
|
|
|
|
|
docstring const mlabel = translateIfPossible(lex.getDocString());
|
|
|
|
|
lex.next(true);
|
|
|
|
|
docstring const mname = lex.getDocString();
|
|
|
|
|
add(MenuItem(MenuItem::Submenu,
|
|
|
|
|
toqstr(mlabel), toqstr(mname), optional));
|
|
|
|
|
optional = false;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case md_endmenu:
|
|
|
|
|
quit = true;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2008-03-09 20:38:03 +00:00
|
|
|
|
lex.printError("MenuDefinition::read: "
|
2008-03-07 00:21:23 +00:00
|
|
|
|
"Unknown menu tag: `$$Token'");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
lex.popTable();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
MenuItem const & MenuDefinition::operator[](size_type i) const
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
return items_[i];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
bool MenuDefinition::hasFunc(FuncRequest const & func) const
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
2008-03-08 08:20:36 +00:00
|
|
|
|
for (const_iterator it = begin(), et = end(); it != et; ++it)
|
|
|
|
|
if (it->func() == func)
|
|
|
|
|
return true;
|
|
|
|
|
return false;
|
2008-03-07 00:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-03-08 08:20:36 +00:00
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::checkShortcuts() const
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
// This is a quadratic algorithm, but we do not care because
|
|
|
|
|
// menus are short enough
|
|
|
|
|
for (const_iterator it1 = begin(); it1 != end(); ++it1) {
|
|
|
|
|
QString shortcut = it1->shortcut();
|
|
|
|
|
if (shortcut.isEmpty())
|
|
|
|
|
continue;
|
|
|
|
|
if (!it1->label().contains(shortcut))
|
|
|
|
|
lyxerr << "Menu warning: menu entry \""
|
|
|
|
|
<< fromqstr(it1->label())
|
|
|
|
|
<< "\" does not contain shortcut `"
|
|
|
|
|
<< fromqstr(shortcut) << "'." << endl;
|
|
|
|
|
for (const_iterator it2 = begin(); it2 != it1 ; ++it2) {
|
|
|
|
|
if (!it2->shortcut().compare(shortcut, Qt::CaseInsensitive)) {
|
|
|
|
|
lyxerr << "Menu warning: menu entries "
|
|
|
|
|
<< '"' << fromqstr(it1->fulllabel())
|
|
|
|
|
<< "\" and \"" << fromqstr(it2->fulllabel())
|
|
|
|
|
<< "\" share the same shortcut."
|
|
|
|
|
<< endl;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
bool MenuDefinition::searchMenu(FuncRequest const & func, vector<docstring> & names) const
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
const_iterator m = begin();
|
|
|
|
|
const_iterator m_end = end();
|
|
|
|
|
for (; m != m_end; ++m) {
|
|
|
|
|
if (m->kind() == MenuItem::Command && m->func() == func) {
|
|
|
|
|
names.push_back(qstring_to_ucs4(m->label()));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
if (m->kind() == MenuItem::Submenu) {
|
|
|
|
|
names.push_back(qstring_to_ucs4(m->label()));
|
2008-03-10 22:23:16 +00:00
|
|
|
|
if (!m->hasSubmenu()) {
|
2008-03-10 13:42:16 +00:00
|
|
|
|
LYXERR(Debug::GUI, "Warning: non existing sub menu label="
|
|
|
|
|
<< fromqstr(m->label())
|
|
|
|
|
<< " name=" << fromqstr(m->submenuname()));
|
|
|
|
|
names.pop_back();
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2008-03-10 22:23:16 +00:00
|
|
|
|
if (m->submenu().searchMenu(func, names))
|
2008-03-07 00:21:23 +00:00
|
|
|
|
return true;
|
|
|
|
|
names.pop_back();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool compareFormat(Format const * p1, Format const * p2)
|
|
|
|
|
{
|
|
|
|
|
return *p1 < *p2;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QString limitStringLength(docstring const & str)
|
|
|
|
|
{
|
|
|
|
|
size_t const max_item_length = 45;
|
|
|
|
|
|
|
|
|
|
if (str.size() > max_item_length)
|
|
|
|
|
return toqstr(str.substr(0, max_item_length - 3) + "...");
|
|
|
|
|
|
|
|
|
|
return toqstr(str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::expandLastfiles()
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
LastFilesSection::LastFiles const & lf = LyX::cref().session().lastFiles().lastFiles();
|
|
|
|
|
LastFilesSection::LastFiles::const_iterator lfit = lf.begin();
|
|
|
|
|
|
|
|
|
|
int ii = 1;
|
|
|
|
|
|
|
|
|
|
for (; lfit != lf.end() && ii < 10; ++lfit, ++ii) {
|
|
|
|
|
string const file = lfit->absFilename();
|
|
|
|
|
QString const label = QString("%1. %2|%3").arg(ii)
|
|
|
|
|
.arg(toqstr(makeDisplayPath(file, 30))).arg(ii);
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command, label, FuncRequest(LFUN_FILE_OPEN, file)));
|
2008-03-07 00:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::expandDocuments()
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
Buffer * first = theBufferList().first();
|
|
|
|
|
if (first) {
|
|
|
|
|
Buffer * b = first;
|
|
|
|
|
int ii = 1;
|
|
|
|
|
|
|
|
|
|
// We cannot use a for loop as the buffer list cycles.
|
|
|
|
|
do {
|
|
|
|
|
QString label = toqstr(b->fileName().displayName(20));
|
|
|
|
|
if (!b->isClean())
|
|
|
|
|
label += "*";
|
|
|
|
|
if (ii < 10)
|
|
|
|
|
label = QString::number(ii) + ". " + label + '|' + QString::number(ii);
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command, label,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FuncRequest(LFUN_BUFFER_SWITCH, b->absFileName())));
|
|
|
|
|
|
|
|
|
|
b = theBufferList().next(b);
|
|
|
|
|
++ii;
|
|
|
|
|
} while (b != first);
|
|
|
|
|
} else {
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command, qt_("No Documents Open!"),
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FuncRequest(LFUN_NOACTION)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::expandBookmarks()
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
lyx::BookmarksSection const & bm = LyX::cref().session().bookmarks();
|
|
|
|
|
|
|
|
|
|
for (size_t i = 1; i <= bm.size(); ++i) {
|
|
|
|
|
if (bm.isValid(i)) {
|
|
|
|
|
string const file = bm.bookmark(i).filename.absFilename();
|
|
|
|
|
QString const label = QString("%1. %2|%3").arg(i)
|
|
|
|
|
.arg(toqstr(makeDisplayPath(file, 20))).arg(i);
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command, label,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FuncRequest(LFUN_BOOKMARK_GOTO, convert<docstring>(i))));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::expandFormats(MenuItem::Kind kind, Buffer const * buf)
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (!buf && kind != MenuItem::ImportFormats) {
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
qt_("No Document Open!"),
|
|
|
|
|
FuncRequest(LFUN_NOACTION)));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
typedef vector<Format const *> Formats;
|
|
|
|
|
Formats formats;
|
2008-03-15 01:20:36 +00:00
|
|
|
|
FuncCode action;
|
2008-03-07 00:21:23 +00:00
|
|
|
|
|
|
|
|
|
switch (kind) {
|
|
|
|
|
case MenuItem::ImportFormats:
|
|
|
|
|
formats = theConverters().importableFormats();
|
|
|
|
|
action = LFUN_BUFFER_IMPORT;
|
|
|
|
|
break;
|
|
|
|
|
case MenuItem::ViewFormats:
|
|
|
|
|
formats = buf->exportableFormats(true);
|
|
|
|
|
action = LFUN_BUFFER_VIEW;
|
|
|
|
|
break;
|
|
|
|
|
case MenuItem::UpdateFormats:
|
|
|
|
|
formats = buf->exportableFormats(true);
|
|
|
|
|
action = LFUN_BUFFER_UPDATE;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
formats = buf->exportableFormats(false);
|
|
|
|
|
action = LFUN_BUFFER_EXPORT;
|
|
|
|
|
}
|
|
|
|
|
sort(formats.begin(), formats.end(), &compareFormat);
|
|
|
|
|
|
|
|
|
|
Formats::const_iterator fit = formats.begin();
|
|
|
|
|
Formats::const_iterator end = formats.end();
|
|
|
|
|
for (; fit != end ; ++fit) {
|
|
|
|
|
if ((*fit)->dummy())
|
|
|
|
|
continue;
|
|
|
|
|
QString label = toqstr((*fit)->prettyname());
|
|
|
|
|
QString const shortcut = toqstr((*fit)->shortcut());
|
|
|
|
|
|
|
|
|
|
switch (kind) {
|
|
|
|
|
case MenuItem::ImportFormats:
|
|
|
|
|
// FIXME: This is a hack, we should rather solve
|
|
|
|
|
// FIXME: bug 2488 instead.
|
|
|
|
|
if ((*fit)->name() == "text")
|
|
|
|
|
label = qt_("Plain Text");
|
|
|
|
|
else if ((*fit)->name() == "textparagraph")
|
|
|
|
|
label = qt_("Plain Text, Join Lines");
|
|
|
|
|
label += "...";
|
|
|
|
|
break;
|
|
|
|
|
case MenuItem::ViewFormats:
|
|
|
|
|
case MenuItem::ExportFormats:
|
|
|
|
|
case MenuItem::UpdateFormats:
|
|
|
|
|
if (!(*fit)->documentFormat())
|
|
|
|
|
continue;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
BOOST_ASSERT(false);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
// FIXME: if we had proper support for translating the
|
|
|
|
|
// format names defined in configure.py, there would
|
|
|
|
|
// not be a need to check whether the shortcut is
|
|
|
|
|
// correct. If we add it uncondiitonally, it would
|
|
|
|
|
// create useless warnings on bad shortcuts
|
|
|
|
|
if (!shortcut.isEmpty() && label.contains(shortcut))
|
|
|
|
|
label += '|' + shortcut;
|
|
|
|
|
|
|
|
|
|
if (buf)
|
2008-03-08 10:08:10 +00:00
|
|
|
|
addWithStatusCheck(MenuItem(MenuItem::Command, label,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FuncRequest(action, (*fit)->name())));
|
|
|
|
|
else
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command, label,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FuncRequest(action, (*fit)->name())));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::expandFloatListInsert(Buffer const * buf)
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (!buf) {
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command, qt_("No Document Open!"),
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FuncRequest(LFUN_NOACTION)));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FloatList const & floats = buf->params().documentClass().floats();
|
|
|
|
|
FloatList::const_iterator cit = floats.begin();
|
|
|
|
|
FloatList::const_iterator end = floats.end();
|
|
|
|
|
for (; cit != end; ++cit) {
|
2008-03-08 10:08:10 +00:00
|
|
|
|
addWithStatusCheck(MenuItem(MenuItem::Command,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
qt_(cit->second.listName()),
|
|
|
|
|
FuncRequest(LFUN_FLOAT_LIST,
|
|
|
|
|
cit->second.type())));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::expandFloatInsert(Buffer const * buf)
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (!buf) {
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command, qt_("No Document Open!"),
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FuncRequest(LFUN_NOACTION)));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FloatList const & floats = buf->params().documentClass().floats();
|
|
|
|
|
FloatList::const_iterator cit = floats.begin();
|
|
|
|
|
FloatList::const_iterator end = floats.end();
|
|
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
|
// normal float
|
|
|
|
|
QString const label = qt_(cit->second.name());
|
2008-03-08 10:08:10 +00:00
|
|
|
|
addWithStatusCheck(MenuItem(MenuItem::Command, label,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FuncRequest(LFUN_FLOAT_INSERT,
|
|
|
|
|
cit->second.type())));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::expandFlexInsert(Buffer const * buf, string s)
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
if (!buf) {
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command, qt_("No Document Open!"),
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FuncRequest(LFUN_NOACTION)));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
TextClass::InsetLayouts const & insetLayouts =
|
|
|
|
|
buf->params().documentClass().insetLayouts();
|
|
|
|
|
TextClass::InsetLayouts::const_iterator cit = insetLayouts.begin();
|
|
|
|
|
TextClass::InsetLayouts::const_iterator end = insetLayouts.end();
|
|
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
|
docstring const label = cit->first;
|
|
|
|
|
if (cit->second.lyxtype() == s)
|
2008-03-08 10:08:10 +00:00
|
|
|
|
addWithStatusCheck(MenuItem(MenuItem::Command,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
toqstr(label), FuncRequest(LFUN_FLEX_INSERT,
|
|
|
|
|
label)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
size_t const max_number_of_items = 25;
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::expandToc2(Toc const & toc_list,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
size_t from, size_t to, int depth)
|
|
|
|
|
{
|
|
|
|
|
int shortcut_count = 0;
|
|
|
|
|
|
|
|
|
|
// check whether depth is smaller than the smallest depth in toc.
|
|
|
|
|
int min_depth = 1000;
|
|
|
|
|
for (size_t i = from; i < to; ++i)
|
|
|
|
|
min_depth = min(min_depth, toc_list[i].depth());
|
|
|
|
|
if (min_depth > depth)
|
|
|
|
|
depth = min_depth;
|
|
|
|
|
|
|
|
|
|
if (to - from <= max_number_of_items) {
|
|
|
|
|
for (size_t i = from; i < to; ++i) {
|
|
|
|
|
QString label(4 * max(0, toc_list[i].depth() - depth), ' ');
|
|
|
|
|
label += limitStringLength(toc_list[i].str());
|
|
|
|
|
if (toc_list[i].depth() == depth
|
|
|
|
|
&& shortcut_count < 9) {
|
|
|
|
|
if (label.contains(QString::number(shortcut_count + 1)))
|
|
|
|
|
label += '|' + QString::number(++shortcut_count);
|
|
|
|
|
}
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command, label,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FuncRequest(toc_list[i].action())));
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
size_t pos = from;
|
|
|
|
|
while (pos < to) {
|
|
|
|
|
size_t new_pos = pos + 1;
|
2008-03-10 22:23:16 +00:00
|
|
|
|
while (new_pos < to && toc_list[new_pos].depth() > depth)
|
2008-03-07 00:21:23 +00:00
|
|
|
|
++new_pos;
|
|
|
|
|
|
|
|
|
|
QString label(4 * max(0, toc_list[pos].depth() - depth), ' ');
|
|
|
|
|
label += limitStringLength(toc_list[pos].str());
|
|
|
|
|
if (toc_list[pos].depth() == depth &&
|
|
|
|
|
shortcut_count < 9) {
|
|
|
|
|
if (label.contains(QString::number(shortcut_count + 1)))
|
|
|
|
|
label += '|' + QString::number(++shortcut_count);
|
|
|
|
|
}
|
|
|
|
|
if (new_pos == pos + 1) {
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
label, FuncRequest(toc_list[pos].action())));
|
|
|
|
|
} else {
|
2008-03-10 22:23:16 +00:00
|
|
|
|
MenuDefinition sub;
|
|
|
|
|
sub.expandToc2(toc_list, pos, new_pos, depth + 1);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
MenuItem item(MenuItem::Submenu, label);
|
2008-03-10 22:23:16 +00:00
|
|
|
|
item.setSubmenu(sub);
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(item);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
pos = new_pos;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::expandToc(Buffer const * buf)
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
// To make things very cleanly, we would have to pass buf to
|
|
|
|
|
// all MenuItem constructors and to expandToc2. However, we
|
|
|
|
|
// know that all the entries in a TOC will be have status_ ==
|
|
|
|
|
// OK, so we avoid this unnecessary overhead (JMarc)
|
|
|
|
|
|
|
|
|
|
if (!buf) {
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command, qt_("No Document Open!"),
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FuncRequest(LFUN_NOACTION)));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Buffer* cbuf = const_cast<Buffer*>(buf);
|
|
|
|
|
cbuf->tocBackend().update();
|
|
|
|
|
cbuf->structureChanged();
|
|
|
|
|
|
|
|
|
|
// Add an entry for the master doc if this is a child doc
|
|
|
|
|
Buffer const * const master = buf->masterBuffer();
|
|
|
|
|
if (buf != master) {
|
|
|
|
|
ParIterator const pit = par_iterator_begin(master->inset());
|
|
|
|
|
string const arg = convert<string>(pit->id());
|
|
|
|
|
FuncRequest f(LFUN_PARAGRAPH_GOTO, arg);
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command, qt_("Master Document"), f));
|
2008-03-07 00:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-03-11 08:25:13 +00:00
|
|
|
|
MenuDefinition other_lists;
|
|
|
|
|
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FloatList const & floatlist = buf->params().documentClass().floats();
|
|
|
|
|
TocList const & toc_list = buf->tocBackend().tocs();
|
|
|
|
|
TocList::const_iterator cit = toc_list.begin();
|
|
|
|
|
TocList::const_iterator end = toc_list.end();
|
|
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
|
// Handle this later
|
|
|
|
|
if (cit->first == "tableofcontents")
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
string const & floatName = floatlist.getType(cit->first).listName();
|
|
|
|
|
QString label;
|
2008-03-11 08:25:13 +00:00
|
|
|
|
bool in_other_list = true;
|
|
|
|
|
if (!floatName.empty()) {
|
2008-03-07 00:21:23 +00:00
|
|
|
|
label = qt_(floatName);
|
2008-03-11 08:25:13 +00:00
|
|
|
|
in_other_list = false;
|
|
|
|
|
}
|
|
|
|
|
else if (cit->first == "child") {
|
|
|
|
|
label = qt_("Child Documents");
|
|
|
|
|
in_other_list = false;
|
2008-03-11 09:04:09 +00:00
|
|
|
|
} else if (cit->first == "embedded")
|
|
|
|
|
label = qt_("Embedded Files");
|
2008-03-11 10:27:33 +00:00
|
|
|
|
else if (cit->first == "graphics")
|
|
|
|
|
label = qt_("List of Graphics");
|
2008-03-11 09:04:09 +00:00
|
|
|
|
else if (cit->first == "equation")
|
2008-03-07 00:21:23 +00:00
|
|
|
|
label = qt_("List of Equations");
|
|
|
|
|
else if (cit->first == "index")
|
|
|
|
|
label = qt_("List of Indexes");
|
2008-03-21 18:18:46 +00:00
|
|
|
|
else if (cit->first == "listing") {
|
|
|
|
|
// FIXME: the listing navigate menu causes a crash for unknown
|
|
|
|
|
// reason. See http://bugzilla.lyx.org/show_bug.cgi?id=4613
|
|
|
|
|
// This is a temporary fix:
|
|
|
|
|
//label = qt_("List of Listings");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2008-03-07 00:21:23 +00:00
|
|
|
|
else if (cit->first == "marginalnote")
|
|
|
|
|
label = qt_("List of Marginal notes");
|
|
|
|
|
else if (cit->first == "note")
|
|
|
|
|
label = qt_("List of Notes");
|
|
|
|
|
else if (cit->first == "footnote")
|
|
|
|
|
label = qt_("List of Foot notes");
|
|
|
|
|
else if (cit->first == "label")
|
|
|
|
|
label = qt_("Labels and References");
|
|
|
|
|
else if (cit->first == "citation")
|
|
|
|
|
label = qt_("List of Citations");
|
|
|
|
|
else
|
2008-03-11 08:25:13 +00:00
|
|
|
|
// This should not happen unless the entry is missing above.
|
|
|
|
|
label = qt_("Other floats: ") + toqstr(cit->first);
|
|
|
|
|
|
2008-03-11 10:27:33 +00:00
|
|
|
|
MenuDefinition submenu;
|
|
|
|
|
|
|
|
|
|
if (cit->second.size() >= 30) {
|
|
|
|
|
FuncRequest f(LFUN_DIALOG_SHOW, "toc " + cit->first);
|
|
|
|
|
submenu.add(MenuItem(MenuItem::Command, qt_("Open Navigator..."), f));
|
|
|
|
|
} else {
|
|
|
|
|
TocIterator ccit = cit->second.begin();
|
|
|
|
|
TocIterator eend = cit->second.end();
|
|
|
|
|
for (; ccit != eend; ++ccit) {
|
|
|
|
|
QString const label = limitStringLength(ccit->str());
|
|
|
|
|
submenu.add(MenuItem(MenuItem::Command, label,
|
|
|
|
|
FuncRequest(ccit->action())));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-07 00:21:23 +00:00
|
|
|
|
MenuItem item(MenuItem::Submenu, label);
|
2008-03-08 17:34:54 +00:00
|
|
|
|
item.setSubmenu(submenu);
|
2008-03-11 08:25:13 +00:00
|
|
|
|
if (in_other_list)
|
|
|
|
|
other_lists.add(item);
|
|
|
|
|
else {
|
|
|
|
|
item.setSubmenu(submenu);
|
|
|
|
|
add(item);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!other_lists.empty()) {
|
|
|
|
|
MenuItem item(MenuItem::Submenu, qt_("Other Lists"));
|
|
|
|
|
item.setSubmenu(other_lists);
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(item);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-03-11 08:25:13 +00:00
|
|
|
|
|
2008-03-07 00:21:23 +00:00
|
|
|
|
// Handle normal TOC
|
|
|
|
|
cit = toc_list.find("tableofcontents");
|
|
|
|
|
if (cit == end) {
|
2008-03-08 10:08:10 +00:00
|
|
|
|
addWithStatusCheck(MenuItem(MenuItem::Command,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
qt_("No Table of contents"),
|
|
|
|
|
FuncRequest()));
|
|
|
|
|
} else {
|
2008-03-08 10:08:10 +00:00
|
|
|
|
expandToc2(cit->second, 0, cit->second.size(), 0);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::expandPasteRecent()
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
vector<docstring> const sel = cap::availableSelections();
|
|
|
|
|
|
|
|
|
|
vector<docstring>::const_iterator cit = sel.begin();
|
|
|
|
|
vector<docstring>::const_iterator end = sel.end();
|
|
|
|
|
|
|
|
|
|
for (unsigned int index = 0; cit != end; ++cit, ++index) {
|
2008-03-08 10:08:10 +00:00
|
|
|
|
add(MenuItem(MenuItem::Command, toqstr(*cit),
|
2008-03-07 00:21:23 +00:00
|
|
|
|
FuncRequest(LFUN_PASTE, convert<string>(index))));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::expandToolbars()
|
2008-03-08 16:45:51 +00:00
|
|
|
|
{
|
|
|
|
|
//
|
|
|
|
|
// extracts the toolbars from the backend
|
|
|
|
|
ToolbarBackend::Toolbars::const_iterator cit = toolbarbackend.begin();
|
|
|
|
|
ToolbarBackend::Toolbars::const_iterator end = toolbarbackend.end();
|
|
|
|
|
|
|
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
|
QString label = qt_(cit->gui_name);
|
|
|
|
|
// frontends are not supposed to turn on/off toolbars,
|
|
|
|
|
// if they cannot update ToolbarBackend::flags. That
|
|
|
|
|
// is to say, ToolbarsBackend::flags should reflect
|
|
|
|
|
// the true state of toolbars.
|
|
|
|
|
//
|
|
|
|
|
// menu is displayed as
|
|
|
|
|
// on/off review
|
|
|
|
|
// and
|
|
|
|
|
// review (auto)
|
|
|
|
|
// in the case of auto.
|
|
|
|
|
if (cit->flags & ToolbarInfo::AUTO)
|
|
|
|
|
label += qt_(" (auto)");
|
|
|
|
|
add(MenuItem(MenuItem::Command, label,
|
|
|
|
|
FuncRequest(LFUN_TOOLBAR_TOGGLE, cit->name + " allowauto")));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void MenuDefinition::expandBranches(Buffer const * buf)
|
2008-03-08 16:45:51 +00:00
|
|
|
|
{
|
|
|
|
|
if (!buf) {
|
|
|
|
|
add(MenuItem(MenuItem::Command,
|
|
|
|
|
qt_("No Document Open!"),
|
|
|
|
|
FuncRequest(LFUN_NOACTION)));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BufferParams const & params = buf->masterBuffer()->params();
|
|
|
|
|
if (params.branchlist().empty()) {
|
|
|
|
|
add(MenuItem(MenuItem::Command,
|
|
|
|
|
qt_("No Branch in Document!"),
|
|
|
|
|
FuncRequest(LFUN_NOACTION)));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BranchList::const_iterator cit = params.branchlist().begin();
|
|
|
|
|
BranchList::const_iterator end = params.branchlist().end();
|
|
|
|
|
|
|
|
|
|
for (int ii = 1; cit != end; ++cit, ++ii) {
|
|
|
|
|
docstring label = cit->getBranch();
|
|
|
|
|
if (ii < 10)
|
|
|
|
|
label = convert<docstring>(ii) + ". " + label + char_type('|') + convert<docstring>(ii);
|
|
|
|
|
addWithStatusCheck(MenuItem(MenuItem::Command, toqstr(label),
|
|
|
|
|
FuncRequest(LFUN_BRANCH_INSERT,
|
|
|
|
|
cit->getBranch())));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Menu::Impl definition and implementation
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
struct Menu::Impl
|
|
|
|
|
{
|
|
|
|
|
/// populates the menu or one of its submenu
|
|
|
|
|
/// This is used as a recursive function
|
2008-03-10 22:23:16 +00:00
|
|
|
|
void populate(QMenu & qMenu, MenuDefinition const & menu);
|
2008-03-09 20:38:03 +00:00
|
|
|
|
|
|
|
|
|
/// Only needed for top level menus.
|
|
|
|
|
MenuDefinition * top_level_menu;
|
|
|
|
|
/// our owning view
|
|
|
|
|
GuiView * view;
|
|
|
|
|
/// the name of this menu
|
|
|
|
|
QString name;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// Get a MenuDefinition item label from the menu backend
|
|
|
|
|
static QString label(MenuItem const & mi)
|
|
|
|
|
{
|
|
|
|
|
QString label = mi.label();
|
|
|
|
|
label.replace("&", "&&");
|
|
|
|
|
|
|
|
|
|
QString shortcut = mi.shortcut();
|
|
|
|
|
if (!shortcut.isEmpty()) {
|
|
|
|
|
int pos = label.indexOf(shortcut);
|
|
|
|
|
if (pos != -1)
|
|
|
|
|
//label.insert(pos, 1, char_type('&'));
|
|
|
|
|
label.replace(pos, 0, "&");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString const binding = mi.binding();
|
|
|
|
|
if (!binding.isEmpty())
|
|
|
|
|
label += '\t' + binding;
|
|
|
|
|
|
|
|
|
|
return label;
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-10 22:23:16 +00:00
|
|
|
|
void Menu::Impl::populate(QMenu & qMenu, MenuDefinition const & menu)
|
2008-03-09 20:38:03 +00:00
|
|
|
|
{
|
2008-03-10 22:23:16 +00:00
|
|
|
|
LYXERR(Debug::GUI, "populating menu " << fromqstr(menu.name()));
|
|
|
|
|
if (menu.size() == 0) {
|
|
|
|
|
LYXERR(Debug::GUI, "\tERROR: empty menu " << fromqstr(menu.name()));
|
2008-03-09 20:38:03 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2008-03-10 22:23:16 +00:00
|
|
|
|
LYXERR(Debug::GUI, " ***** menu entries " << menu.size());
|
|
|
|
|
MenuDefinition::const_iterator m = menu.begin();
|
|
|
|
|
MenuDefinition::const_iterator end = menu.end();
|
2008-03-09 20:38:03 +00:00
|
|
|
|
for (; m != end; ++m) {
|
|
|
|
|
if (m->kind() == MenuItem::Separator)
|
2008-03-10 22:23:16 +00:00
|
|
|
|
qMenu.addSeparator();
|
2008-03-09 20:38:03 +00:00
|
|
|
|
else if (m->kind() == MenuItem::Submenu) {
|
2008-03-10 22:23:16 +00:00
|
|
|
|
QMenu * subMenu = qMenu.addMenu(label(*m));
|
|
|
|
|
populate(*subMenu, m->submenu());
|
2008-03-09 20:38:03 +00:00
|
|
|
|
} else {
|
|
|
|
|
// we have a MenuItem::Command
|
2008-03-14 16:33:16 +00:00
|
|
|
|
qMenu.addAction(new Action(view, QIcon(), label(*m),
|
|
|
|
|
m->func(), QString(), &qMenu));
|
2008-03-09 20:38:03 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Menu implementation
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
Menu::Menu(GuiView * gv, QString const & name, bool top_level)
|
|
|
|
|
: d(new Menu::Impl)
|
|
|
|
|
{
|
|
|
|
|
d->top_level_menu = top_level? new MenuDefinition : 0;
|
|
|
|
|
d->view = gv;
|
|
|
|
|
d->name = name;
|
|
|
|
|
setTitle(name);
|
|
|
|
|
if (d->top_level_menu)
|
|
|
|
|
connect(this, SIGNAL(aboutToShow()), this, SLOT(updateView()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Menu::~Menu()
|
|
|
|
|
{
|
|
|
|
|
delete d->top_level_menu;
|
|
|
|
|
delete d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Menu::updateView()
|
|
|
|
|
{
|
2008-03-14 15:34:31 +00:00
|
|
|
|
guiApp->menus().updateMenu(this);
|
2008-03-09 20:38:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2008-03-14 15:34:31 +00:00
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Menus::Impl definition and implementation
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
struct Menus::Impl {
|
|
|
|
|
///
|
|
|
|
|
bool hasMenu(QString const &) const;
|
|
|
|
|
///
|
2008-03-09 20:38:03 +00:00
|
|
|
|
MenuDefinition & getMenu(QString const &);
|
2008-03-08 16:45:51 +00:00
|
|
|
|
///
|
2008-03-09 20:38:03 +00:00
|
|
|
|
MenuDefinition const & getMenu(QString const &) const;
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
|
|
|
|
/// Expands some special entries of the menu
|
|
|
|
|
/** The entries with the following kind are expanded to a
|
|
|
|
|
sequence of Command MenuItems: Lastfiles, Documents,
|
|
|
|
|
ViewFormats, ExportFormats, UpdateFormats, Branches
|
|
|
|
|
*/
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void expand(MenuDefinition const & frommenu, MenuDefinition & tomenu,
|
2008-03-14 16:33:16 +00:00
|
|
|
|
Buffer const *) const;
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
|
|
|
|
/// Initialize specific MACOS X menubar
|
2008-03-14 16:33:16 +00:00
|
|
|
|
void macxMenuBarInit(GuiView * view, QMenuBar * qmb);
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
|
|
|
|
/// Mac special menu.
|
|
|
|
|
/** This defines a menu whose entries list the FuncRequests
|
|
|
|
|
that will be removed by expand() in other menus. This is
|
|
|
|
|
used by the Qt/Mac code
|
|
|
|
|
*/
|
2008-03-09 20:38:03 +00:00
|
|
|
|
MenuDefinition specialmenu_;
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
|
|
|
|
///
|
|
|
|
|
MenuList menulist_;
|
|
|
|
|
///
|
2008-03-09 20:38:03 +00:00
|
|
|
|
MenuDefinition menubar_;
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
2008-03-14 15:34:31 +00:00
|
|
|
|
typedef QMap<GuiView *, QHash<QString, Menu *> > NameMap;
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
|
|
|
|
/// name to menu for \c menu() method.
|
|
|
|
|
NameMap name_map_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
Here is what the Qt documentation says about how a menubar is chosen:
|
|
|
|
|
|
|
|
|
|
1) If the window has a QMenuBar then it is used. 2) If the window
|
|
|
|
|
is a modal then its menubar is used. If no menubar is specified
|
|
|
|
|
then a default menubar is used (as documented below) 3) If the
|
|
|
|
|
window has no parent then the default menubar is used (as
|
|
|
|
|
documented below).
|
2008-03-07 00:21:23 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
The above 3 steps are applied all the way up the parent window
|
|
|
|
|
chain until one of the above are satisifed. If all else fails a
|
|
|
|
|
default menubar will be created, the default menubar on Qt/Mac is
|
|
|
|
|
an empty menubar, however you can create a different default
|
|
|
|
|
menubar by creating a parentless QMenuBar, the first one created
|
|
|
|
|
will thus be designated the default menubar, and will be used
|
|
|
|
|
whenever a default menubar is needed.
|
2008-03-07 00:21:23 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
Thus, for Qt/Mac, we add the menus to a free standing menubar, so
|
|
|
|
|
that this menubar will be used also when one of LyX' dialogs has
|
|
|
|
|
focus. (JMarc)
|
|
|
|
|
*/
|
2008-03-14 16:33:16 +00:00
|
|
|
|
void Menus::Impl::macxMenuBarInit(GuiView * view, QMenuBar * qmb)
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
2008-03-08 16:45:51 +00:00
|
|
|
|
/* Since Qt 4.2, the qt/mac menu code has special code for
|
|
|
|
|
specifying the role of a menu entry. However, it does not
|
|
|
|
|
work very well with our scheme of creating menus on demand,
|
|
|
|
|
and therefore we need to put these entries in a special
|
|
|
|
|
invisible menu. (JMarc)
|
|
|
|
|
*/
|
2008-03-07 00:21:23 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
/* The entries of our special mac menu. If we add support for
|
|
|
|
|
* special entries in Menus, we could imagine something
|
|
|
|
|
* like
|
|
|
|
|
* SpecialItem About " "About LyX" "dialog-show aboutlyx"
|
|
|
|
|
* and therefore avoid hardcoding. I am not sure it is worth
|
|
|
|
|
* the hassle, though. (JMarc)
|
|
|
|
|
*/
|
|
|
|
|
struct MacMenuEntry {
|
2008-03-15 01:20:36 +00:00
|
|
|
|
FuncCode action;
|
2008-03-08 16:45:51 +00:00
|
|
|
|
char const * arg;
|
|
|
|
|
char const * label;
|
|
|
|
|
QAction::MenuRole role;
|
|
|
|
|
};
|
2008-03-07 00:21:23 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
MacMenuEntry entries[] = {
|
|
|
|
|
{LFUN_DIALOG_SHOW, "aboutlyx", "About LyX",
|
|
|
|
|
QAction::AboutRole},
|
|
|
|
|
{LFUN_DIALOG_SHOW, "prefs", "Preferences",
|
|
|
|
|
QAction::PreferencesRole},
|
|
|
|
|
{LFUN_RECONFIGURE, "", "Reconfigure",
|
|
|
|
|
QAction::ApplicationSpecificRole},
|
|
|
|
|
{LFUN_LYX_QUIT, "", "Quit LyX", QAction::QuitRole}
|
|
|
|
|
};
|
|
|
|
|
const size_t num_entries = sizeof(entries) / sizeof(entries[0]);
|
|
|
|
|
|
2008-03-14 23:25:38 +00:00
|
|
|
|
// the special menu for Menus. Fill it up only once.
|
|
|
|
|
if (specialmenu_.size() == 0) {
|
|
|
|
|
for (size_t i = 0 ; i < num_entries ; ++i) {
|
|
|
|
|
FuncRequest const func(entries[i].action,
|
|
|
|
|
from_utf8(entries[i].arg));
|
|
|
|
|
specialmenu_.add(MenuItem(MenuItem::Command,
|
|
|
|
|
entries[i].label, func));
|
|
|
|
|
}
|
2008-03-08 16:45:51 +00:00
|
|
|
|
}
|
2008-03-14 23:25:38 +00:00
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
// add the entries to a QMenu that will eventually be empty
|
|
|
|
|
// and therefore invisible.
|
2008-03-14 16:33:16 +00:00
|
|
|
|
QMenu * qMenu = qmb->addMenu("special");
|
2008-03-09 20:38:03 +00:00
|
|
|
|
MenuDefinition::const_iterator cit = specialmenu_.begin();
|
|
|
|
|
MenuDefinition::const_iterator end = specialmenu_.end();
|
2008-03-08 16:45:51 +00:00
|
|
|
|
for (size_t i = 0 ; cit != end ; ++cit, ++i) {
|
2008-03-14 16:33:16 +00:00
|
|
|
|
Action * action = new Action(view, QIcon(), cit->label(),
|
|
|
|
|
cit->func(), QString(), qMenu);
|
2008-03-08 16:45:51 +00:00
|
|
|
|
action->setMenuRole(entries[i].role);
|
|
|
|
|
qMenu->addAction(action);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
void Menus::Impl::expand(MenuDefinition const & frommenu, MenuDefinition & tomenu,
|
2008-03-07 00:21:23 +00:00
|
|
|
|
Buffer const * buf) const
|
|
|
|
|
{
|
|
|
|
|
if (!tomenu.empty())
|
|
|
|
|
tomenu.clear();
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
for (MenuDefinition::const_iterator cit = frommenu.begin();
|
2008-03-07 00:21:23 +00:00
|
|
|
|
cit != frommenu.end() ; ++cit) {
|
|
|
|
|
switch (cit->kind()) {
|
|
|
|
|
case MenuItem::Lastfiles:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandLastfiles();
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::Documents:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandDocuments();
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::Bookmarks:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandBookmarks();
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::ImportFormats:
|
|
|
|
|
case MenuItem::ViewFormats:
|
|
|
|
|
case MenuItem::UpdateFormats:
|
|
|
|
|
case MenuItem::ExportFormats:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandFormats(cit->kind(), buf);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::CharStyles:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandFlexInsert(buf, "charstyle");
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::Custom:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandFlexInsert(buf, "custom");
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::Elements:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandFlexInsert(buf, "element");
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::FloatListInsert:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandFloatListInsert(buf);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::FloatInsert:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandFloatInsert(buf);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::PasteRecent:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandPasteRecent();
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::Toolbars:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandToolbars();
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::Branches:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandBranches(buf);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::Toc:
|
2008-03-08 10:08:10 +00:00
|
|
|
|
tomenu.expandToc(buf);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::Submenu: {
|
|
|
|
|
MenuItem item(*cit);
|
2008-03-10 22:23:16 +00:00
|
|
|
|
item.setSubmenu(MenuDefinition(cit->submenuname()));
|
|
|
|
|
expand(getMenu(cit->submenuname()), item.submenu(), buf);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
tomenu.addWithStatusCheck(item);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::Separator:
|
|
|
|
|
tomenu.addWithStatusCheck(*cit);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case MenuItem::Command:
|
|
|
|
|
if (!specialmenu_.hasFunc(cit->func()))
|
|
|
|
|
tomenu.addWithStatusCheck(*cit);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// we do not want the menu to end with a separator
|
2008-03-08 16:15:34 +00:00
|
|
|
|
if (!tomenu.empty() && tomenu.items_.back().kind() == MenuItem::Separator)
|
2008-03-07 00:21:23 +00:00
|
|
|
|
tomenu.items_.pop_back();
|
|
|
|
|
|
|
|
|
|
// Check whether the shortcuts are unique
|
|
|
|
|
tomenu.checkShortcuts();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
bool Menus::Impl::hasMenu(QString const & name) const
|
|
|
|
|
{
|
|
|
|
|
return find_if(menulist_.begin(), menulist_.end(),
|
|
|
|
|
MenuNamesEqual(name)) != menulist_.end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
MenuDefinition const & Menus::Impl::getMenu(QString const & name) const
|
2008-03-08 16:45:51 +00:00
|
|
|
|
{
|
|
|
|
|
const_iterator cit = find_if(menulist_.begin(), menulist_.end(),
|
|
|
|
|
MenuNamesEqual(name));
|
|
|
|
|
if (cit == menulist_.end())
|
|
|
|
|
lyxerr << "No submenu named " << fromqstr(name) << endl;
|
|
|
|
|
BOOST_ASSERT(cit != menulist_.end());
|
|
|
|
|
return (*cit);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
MenuDefinition & Menus::Impl::getMenu(QString const & name)
|
2008-03-08 16:45:51 +00:00
|
|
|
|
{
|
|
|
|
|
iterator it = find_if(menulist_.begin(), menulist_.end(),
|
|
|
|
|
MenuNamesEqual(name));
|
|
|
|
|
if (it == menulist_.end())
|
|
|
|
|
lyxerr << "No submenu named " << fromqstr(name) << endl;
|
|
|
|
|
BOOST_ASSERT(it != menulist_.end());
|
|
|
|
|
return (*it);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Menus implementation
|
|
|
|
|
/////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
Menus::Menus(): d(new Impl) {}
|
|
|
|
|
|
|
|
|
|
|
2008-03-07 00:21:23 +00:00
|
|
|
|
void Menus::read(Lexer & lex)
|
|
|
|
|
{
|
|
|
|
|
enum Menutags {
|
|
|
|
|
md_menu = 1,
|
|
|
|
|
md_menubar,
|
|
|
|
|
md_endmenuset,
|
|
|
|
|
md_last
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct keyword_item menutags[md_last - 1] = {
|
|
|
|
|
{ "end", md_endmenuset },
|
|
|
|
|
{ "menu", md_menu },
|
|
|
|
|
{ "menubar", md_menubar }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
//consistency check
|
|
|
|
|
if (compare_ascii_no_case(lex.getString(), "menuset")) {
|
|
|
|
|
lyxerr << "Menubackend::read: ERROR wrong token:`"
|
|
|
|
|
<< lex.getString() << '\'' << endl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lex.pushTable(menutags, md_last - 1);
|
|
|
|
|
if (lyxerr.debugging(Debug::PARSER))
|
|
|
|
|
lex.printTable(lyxerr);
|
|
|
|
|
|
|
|
|
|
bool quit = false;
|
|
|
|
|
|
|
|
|
|
while (lex.isOK() && !quit) {
|
|
|
|
|
switch (lex.lex()) {
|
|
|
|
|
case md_menubar:
|
2008-03-08 15:33:52 +00:00
|
|
|
|
d->menubar_.read(lex);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
break;
|
|
|
|
|
case md_menu: {
|
|
|
|
|
lex.next(true);
|
|
|
|
|
QString const name = toqstr(lex.getDocString());
|
2008-03-08 16:15:34 +00:00
|
|
|
|
if (d->hasMenu(name))
|
2008-03-08 15:33:52 +00:00
|
|
|
|
d->getMenu(name).read(lex);
|
2008-03-08 16:15:34 +00:00
|
|
|
|
else {
|
2008-03-09 20:38:03 +00:00
|
|
|
|
MenuDefinition menu(name);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
menu.read(lex);
|
2008-03-08 17:34:54 +00:00
|
|
|
|
d->menulist_.push_back(menu);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case md_endmenuset:
|
|
|
|
|
quit = true;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
lex.printError("menubackend::read: "
|
|
|
|
|
"Unknown menu tag: `$$Token'");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
lex.popTable();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-08 16:45:51 +00:00
|
|
|
|
bool Menus::searchMenu(FuncRequest const & func,
|
|
|
|
|
vector<docstring> & names) const
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
2008-03-10 13:42:16 +00:00
|
|
|
|
MenuDefinition menu;
|
|
|
|
|
d->expand(d->menubar_, menu, 0);
|
|
|
|
|
return menu.searchMenu(func, names);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-15 02:58:05 +00:00
|
|
|
|
void Menus::fillMenuBar(QMenuBar * qmb, GuiView * view, bool initial)
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
2008-03-15 02:58:05 +00:00
|
|
|
|
if (initial) {
|
2008-03-08 16:45:51 +00:00
|
|
|
|
#ifdef Q_WS_MACX
|
2008-03-15 02:58:05 +00:00
|
|
|
|
// setup special mac specific menu item
|
|
|
|
|
d->macxMenuBarInit(view, qmb);
|
2008-03-08 16:45:51 +00:00
|
|
|
|
#endif
|
2008-03-15 02:58:05 +00:00
|
|
|
|
} else {
|
|
|
|
|
// Clear all menubar contents before filling it.
|
|
|
|
|
qmb->clear();
|
|
|
|
|
}
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
|
|
|
|
LYXERR(Debug::GUI, "populating menu bar" << fromqstr(d->menubar_.name()));
|
|
|
|
|
|
|
|
|
|
if (d->menubar_.size() == 0) {
|
|
|
|
|
LYXERR(Debug::GUI, "\tERROR: empty menu bar"
|
|
|
|
|
<< fromqstr(d->menubar_.name()));
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
LYXERR(Debug::GUI, "menu bar entries "
|
|
|
|
|
<< d->menubar_.size());
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
MenuDefinition menu;
|
2008-03-14 16:33:16 +00:00
|
|
|
|
Buffer * buf = 0;
|
|
|
|
|
if (view)
|
|
|
|
|
buf = view->buffer();
|
|
|
|
|
d->expand(d->menubar_, menu, buf);
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
MenuDefinition::const_iterator m = menu.begin();
|
|
|
|
|
MenuDefinition::const_iterator end = menu.end();
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
|
|
|
|
for (; m != end; ++m) {
|
|
|
|
|
|
|
|
|
|
if (m->kind() != MenuItem::Submenu) {
|
|
|
|
|
LYXERR(Debug::GUI, "\tERROR: not a submenu " << fromqstr(m->label()));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LYXERR(Debug::GUI, "menu bar item " << fromqstr(m->label())
|
|
|
|
|
<< " is a submenu named " << fromqstr(m->submenuname()));
|
|
|
|
|
|
|
|
|
|
QString name = m->submenuname();
|
|
|
|
|
if (!d->hasMenu(name)) {
|
|
|
|
|
LYXERR(Debug::GUI, "\tERROR: " << fromqstr(name)
|
|
|
|
|
<< " submenu has no menu!");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
Menu * menu = new Menu(view, m->submenuname(), true);
|
|
|
|
|
menu->setTitle(label(*m));
|
2008-03-14 15:34:31 +00:00
|
|
|
|
qmb->addMenu(menu);
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
2008-03-14 15:34:31 +00:00
|
|
|
|
d->name_map_[view][name] = menu;
|
2008-03-08 16:45:51 +00:00
|
|
|
|
}
|
2008-03-07 00:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-14 15:34:31 +00:00
|
|
|
|
void Menus::updateMenu(Menu * qmenu)
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
2008-03-14 15:34:31 +00:00
|
|
|
|
LYXERR(Debug::GUI, "Triggered menu: " << fromqstr(qmenu->d->name));
|
2008-03-08 16:45:51 +00:00
|
|
|
|
qmenu->clear();
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
if (qmenu->d->name.isEmpty())
|
2008-03-08 16:45:51 +00:00
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// Here, We make sure that theLyXFunc points to the correct LyXView.
|
2008-03-09 20:38:03 +00:00
|
|
|
|
theLyXFunc().setLyXView(qmenu->d->view);
|
2008-03-08 16:45:51 +00:00
|
|
|
|
|
2008-03-14 15:34:31 +00:00
|
|
|
|
if (!d->hasMenu(qmenu->d->name)) {
|
2008-03-09 11:39:00 +00:00
|
|
|
|
qmenu->addAction(qt_("No action defined!"));
|
2008-03-09 11:22:39 +00:00
|
|
|
|
LYXERR(Debug::GUI, "\tWARNING: non existing menu: "
|
2008-03-09 20:38:03 +00:00
|
|
|
|
<< fromqstr(qmenu->d->name));
|
2008-03-09 11:22:39 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-14 15:34:31 +00:00
|
|
|
|
MenuDefinition const & fromLyxMenu = d->getMenu(qmenu->d->name);
|
2008-03-14 16:33:16 +00:00
|
|
|
|
Buffer * buf = 0;
|
|
|
|
|
if (qmenu->d->view)
|
|
|
|
|
buf = qmenu->d->view->buffer();
|
|
|
|
|
d->expand(fromLyxMenu, *qmenu->d->top_level_menu, buf);
|
2008-03-10 22:23:16 +00:00
|
|
|
|
qmenu->d->populate(*qmenu, *qmenu->d->top_level_menu);
|
2008-03-07 00:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
Menu * Menus::menu(QString const & name, GuiView & view)
|
2008-03-07 00:21:23 +00:00
|
|
|
|
{
|
2008-03-08 16:45:51 +00:00
|
|
|
|
LYXERR(Debug::GUI, "Context menu requested: " << fromqstr(name));
|
2008-03-14 15:34:31 +00:00
|
|
|
|
Menu * menu = d->name_map_[&view].value(name, 0);
|
2008-03-09 11:22:39 +00:00
|
|
|
|
if (!menu && !name.startsWith("context-")) {
|
2008-03-10 22:23:16 +00:00
|
|
|
|
LYXERR0("requested context menu not found: " << fromqstr(name));
|
2008-03-09 11:22:39 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-09 20:38:03 +00:00
|
|
|
|
menu = new Menu(&view, name, true);
|
2008-03-14 15:34:31 +00:00
|
|
|
|
d->name_map_[&view][name] = menu;
|
2008-03-08 16:45:51 +00:00
|
|
|
|
return menu;
|
2008-03-07 00:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
} // namespace frontend
|
|
|
|
|
} // namespace lyx
|
2006-05-18 08:51:12 +00:00
|
|
|
|
|
2007-12-26 10:55:43 +00:00
|
|
|
|
#include "Menus_moc.cpp"
|