Abdelrazak Younes wrote:
Hello,
As discussed with Georg in another thread, this patch transfers the
singletons defined in the Application class to the private
LyX::Singletons implementation.
Singletons::lyx_func_ is a scoped_ptr instead of a full LyXFunc because
the LyXFunc constructor needs some global variables that where not
initialised at the time of the pimpl_ construction. This constructor
needs some cleaning up.
I've done that. So this updated patch modifies the LyXFunc class. A
LyXView is not needed any more at construction. Neither is the top level
keymap. The LyXFunc key sequences are initialized only if we are in GUI
mode.
I have also erased this private method LyXFunc::setupLocalKeymap() that
was not used anywhere.
Once this patch is in, I will rename LyXFunc::owner to
LyXFunc::lyx_view_ and put some BOOST_ASSERT. A classification between
Gui and Kernel oriented LFUNs would be welcome.
The Singletons structure now also contains the formally global variable
toplevel_keymap.
Abdel.
Index: format.C
===================================================================
--- format.C (revision 15361)
+++ format.C (working copy)
@@ -312,7 +312,7 @@
command = subst(command, token_from, quoteName(filename));
command = subst(command, token_path, quoteName(onlyPath(filename)));
- command = subst(command, token_socket,
quoteName(theApp->socket().address()));
+ command = subst(command, token_socket,
quoteName(theLyXServerSocket().address()));
lyxerr[Debug::FILES] << "Executing command: " << command << std::endl;
buffer.message(_("Executing command: ") + lyx::from_utf8(command));
@@ -371,7 +371,7 @@
command = subst(command, token_from, quoteName(filename));
command = subst(command, token_path, quoteName(onlyPath(filename)));
- command = subst(command, token_socket,
quoteName(theApp->socket().address()));
+ command = subst(command, token_socket,
quoteName(theLyXServerSocket().address()));
lyxerr[Debug::FILES] << "Executing command: " << command << std::endl;
buffer.message(_("Executing command: ") + lyx::from_utf8(command));
Index: frontends/Application.C
===================================================================
--- frontends/Application.C (revision 15361)
+++ frontends/Application.C (working copy)
@@ -20,16 +20,12 @@
#include "frontends/LyXView.h"
#include "frontends/WorkArea.h"
-#include "bufferlist.h"
#include "funcrequest.h"
#include "FuncStatus.h"
#include "lyx_main.h"
-#include "LyXAction.h"
#include "lyxfont.h"
#include "lyxfunc.h"
#include "lyxrc.h"
-#include "lyxserver.h"
-#include "lyxsocket.h"
#include "support/lstrings.h"
#include "support/os.h"
@@ -43,60 +39,12 @@
namespace lyx {
namespace frontend {
-/// The main application class private implementation.
-struct Application_pimpl
-{
- /// our function handler
- boost::scoped_ptr<LyXFunc> lyxfunc_;
- ///
- boost::scoped_ptr<LyXServer> lyx_server_;
- ///
- boost::scoped_ptr<LyXServerSocket> lyx_socket_;
-};
-
Application::Application(int &, char **)
{
- pimpl_ = new Application_pimpl;
}
-LyXFunc & Application::lyxFunc()
-{
- return *pimpl_->lyxfunc_.get();
-}
-
-
-LyXFunc const & Application::lyxFunc() const
-{
- return *pimpl_->lyxfunc_.get();
-}
-
-
-LyXServer & Application::server()
-{
- return *pimpl_->lyx_server_.get();
-}
-
-
-LyXServer const & Application::server() const
-{
- return *pimpl_->lyx_server_.get();
-}
-
-
-LyXServerSocket & Application::socket()
-{
- return *pimpl_->lyx_socket_.get();
-}
-
-
-LyXServerSocket const & Application::socket() const
-{
- return *pimpl_->lyx_socket_.get();
-}
-
-
void Application::setBufferView(BufferView * buffer_view)
{
buffer_view_ = buffer_view;
@@ -117,7 +65,7 @@
int view_id = gui().newView();
LyXView & view = gui().view(view_id);
- pimpl_->lyxfunc_.reset(new LyXFunc(&view));
+ theLyXFunc().setLyXView(&view);
// FIXME: for now we assume that there is only one LyXView with id = 0.
/*int workArea_id_ =*/ gui().newWorkArea(width, height, 0);
@@ -132,42 +80,13 @@
int Application::start(std::string const & batch)
{
- pimpl_->lyx_server_.reset(new LyXServer(pimpl_->lyxfunc_.get(),
lyxrc.lyxpipes));
- pimpl_->lyx_socket_.reset(new LyXServerSocket(pimpl_->lyxfunc_.get(),
- lyx::support::os::internal_path(package().temp_dir() +
"/lyxsocket")));
-
- // handle the batch commands the user asked for
- if (!batch.empty()) {
- pimpl_->lyxfunc_->dispatch(lyxaction.lookupFunc(batch));
- }
-
return exec();
}
} // namespace frontend
-
-
-FuncStatus getStatus(FuncRequest const & action)
-{
- return theApp->lyxFunc().getStatus(action);
-}
-
-
-void dispatch(FuncRequest const & action)
-{
- theApp->lyxFunc().dispatch(action);
-}
-
} // namespace lyx
-LyXFunc & theLyXFunc()
-{
- BOOST_ASSERT(theApp);
- return theApp->lyxFunc();
-}
-
-
lyx::frontend::FontLoader & theFontLoader()
{
static lyx::frontend::NoGuiFontLoader no_gui_font_loader;
Index: frontends/Application.h
===================================================================
--- frontends/Application.h (revision 15361)
+++ frontends/Application.h (working copy)
@@ -15,11 +15,7 @@
#include <string>
-class BufferList;
class BufferView;
-class LyXFunc;
-class LyXServer;
-class LyXServerSocket;
class LyXView;
class LColor_color;
@@ -29,7 +25,6 @@
namespace frontend {
-struct Application_pimpl;
class Clipboard;
class FontLoader;
class Gui;
@@ -116,16 +111,6 @@
*/
virtual void unregisterSocketCallback(int fd) = 0;
- ///
- LyXFunc & lyxFunc();
- LyXFunc const & lyxFunc() const;
- ///
- LyXServer & server();
- LyXServer const & server() const;
- ///
- LyXServerSocket & socket();
- LyXServerSocket const & socket() const;
-
/// Create the main window with given geometry settings.
LyXView & createView(unsigned int width, unsigned int height,
int posx, int posy, bool maximize);
@@ -139,10 +124,6 @@
/// FIXME: \todo use Gui::currentView() in the future
BufferView * buffer_view_;
-private:
- /// Application private implementation.
- Application_pimpl * pimpl_;
-
}; // Application
} // namespace frontend
Index: frontends/qt3/QLPopupMenu.C
===================================================================
--- frontends/qt3/QLPopupMenu.C (revision 15361)
+++ frontends/qt3/QLPopupMenu.C (working copy)
@@ -27,7 +27,6 @@
#ifdef Q_WS_MACX
#include "kbmap.h"
#include "QLyXKeySym.h"
-extern boost::scoped_ptr<kb_keymap> toplevel_keymap;
#endif
#include <qapplication.h>
@@ -137,7 +136,7 @@
needed (JMarc)
*/
pair<LyXKeySym const *, key_modifier::state>
- binding =
toplevel_keymap->find1keybinding(m->func());
+ binding =
theTopLevelKeymap().find1keybinding(m->func());
if (binding.first) {
QLyXKeySym const *key = static_cast<QLyXKeySym
const *>(binding.first);
label += '\t' + key->qprint(binding.second);
Index: frontends/qt4/QLPopupMenu.C
===================================================================
--- frontends/qt4/QLPopupMenu.C (revision 15361)
+++ frontends/qt4/QLPopupMenu.C (working copy)
@@ -30,7 +30,6 @@
#ifdef Q_WS_MACX
#include "kbmap.h"
#include "QLyXKeySym.h"
-extern boost::scoped_ptr<kb_keymap> toplevel_keymap;
#endif
using std::make_pair;
Index: kbmap.h
===================================================================
--- kbmap.h (revision 15361)
+++ kbmap.h (working copy)
@@ -126,4 +126,7 @@
Table table;
};
+/// Implementation is in lyx_main.C
+extern kb_keymap & theTopLevelKeymap();
+
#endif // KBMAP_H
Index: lyx_main.C
===================================================================
--- lyx_main.C (revision 15361)
+++ lyx_main.C (working copy)
@@ -31,10 +31,12 @@
#include "session.h"
#include "LColor.h"
#include "lyx_cb.h"
+#include "LyXAction.h"
#include "lyxfunc.h"
#include "lyxlex.h"
#include "lyxrc.h"
#include "lyxserver.h"
+#include "lyxsocket.h"
#include "lyxtextclasslist.h"
#include "MenuBackend.h"
#include "mover.h"
@@ -92,10 +94,6 @@
using std::system;
#endif
-
-/// convenient to have it here.
-boost::scoped_ptr<kb_keymap> toplevel_keymap;
-
///
lyx::frontend::Application * theApp = 0;
@@ -107,8 +105,9 @@
*/
bool use_gui = true;
-}
+} // namespace lyx
+
namespace {
// Filled with the command line arguments "foo" of "-sysdir foo" or
@@ -139,8 +138,29 @@
} // namespace anon
+/// The main application class private implementation.
+struct LyX::Singletons
+{
+ /// our function handler
+ LyXFunc lyxfunc_;
+ ///
+ BufferList buffer_list_;
+ ///
+ boost::scoped_ptr<kb_keymap> toplevel_keymap_;
+ ///
+ boost::scoped_ptr<LyXServer> lyx_server_;
+ ///
+ boost::scoped_ptr<LyXServerSocket> lyx_socket_;
+ ///
+ boost::scoped_ptr<lyx::frontend::Application> application_;
+ /// lyx session, containing lastfiles, lastfilepos, and lastopened
+ boost::scoped_ptr<lyx::Session> session_;
+};
+
+
boost::scoped_ptr<LyX> LyX::singleton_;
+
int LyX::exec(int & argc, char * argv[])
{
BOOST_ASSERT(!singleton_.get());
@@ -167,45 +187,106 @@
}
-BufferList & theBufferList()
-{
- return LyX::ref().bufferList();
-}
-
-
LyX::LyX()
: first_start(false), geometryOption_(false)
{
- buffer_list_.reset(new BufferList);
+ pimpl_.reset(new Singletons);
}
BufferList & LyX::bufferList()
{
- return *buffer_list_.get();
+ return pimpl_->buffer_list_;
}
BufferList const & LyX::bufferList() const
{
- return *buffer_list_.get();
+ return pimpl_->buffer_list_;
}
lyx::Session & LyX::session()
{
- BOOST_ASSERT(session_.get());
- return *session_.get();
+ BOOST_ASSERT(pimpl_->session_.get());
+ return *pimpl_->session_.get();
}
lyx::Session const & LyX::session() const
{
- BOOST_ASSERT(session_.get());
- return *session_.get();
+ BOOST_ASSERT(pimpl_->session_.get());
+ return *pimpl_->session_.get();
}
+LyXFunc & LyX::lyxFunc()
+{
+ return pimpl_->lyxfunc_;
+}
+
+
+LyXFunc const & LyX::lyxFunc() const
+{
+ return pimpl_->lyxfunc_;
+}
+
+
+LyXServer & LyX::server()
+{
+ BOOST_ASSERT(pimpl_->lyx_server_.get());
+ return *pimpl_->lyx_server_.get();
+}
+
+
+LyXServer const & LyX::server() const
+{
+ BOOST_ASSERT(pimpl_->lyx_server_.get());
+ return *pimpl_->lyx_server_.get();
+}
+
+
+LyXServerSocket & LyX::socket()
+{
+ BOOST_ASSERT(pimpl_->lyx_socket_.get());
+ return *pimpl_->lyx_socket_.get();
+}
+
+
+LyXServerSocket const & LyX::socket() const
+{
+ BOOST_ASSERT(pimpl_->lyx_socket_.get());
+ return *pimpl_->lyx_socket_.get();
+}
+
+
+lyx::frontend::Application & LyX::application()
+{
+ BOOST_ASSERT(pimpl_->application_.get());
+ return *pimpl_->application_.get();
+}
+
+
+lyx::frontend::Application const & LyX::application() const
+{
+ BOOST_ASSERT(pimpl_->application_.get());
+ return *pimpl_->application_.get();
+}
+
+
+kb_keymap & LyX::topLevelKeymap()
+{
+ BOOST_ASSERT(pimpl_->toplevel_keymap_.get());
+ return *pimpl_->toplevel_keymap_.get();
+}
+
+
+kb_keymap const & LyX::topLevelKeymap() const
+{
+ BOOST_ASSERT(pimpl_->toplevel_keymap_.get());
+ return *pimpl_->toplevel_keymap_.get();
+}
+
void LyX::addLyXView(LyXView * lyxview)
{
views_.push_back(lyxview);
@@ -243,20 +324,36 @@
if (exit_status)
return exit_status;
-
+
if (lyx::use_gui) {
// Force adding of font path _before_ Application is initialized
lyx::support::addFontResources();
- application_.reset(lyx::createApplication(argc, argv));
+ pimpl_->application_.reset(lyx::createApplication(argc, argv));
initGuiFont();
// FIXME: this global pointer should probably go.
- theApp = application_.get();
+ theApp = pimpl_->application_.get();
restoreGuiSession(files);
// Start the real execution loop.
- exit_status = application_->start(batch_command);
+
+ // FIXME
+ /* Create a CoreApplication class that will provide the main
event loop and
+ * the socket callback registering. With Qt4, only QtCore
library would be needed.
+ * When this done, a lyx::server_mode could be created and the
following two
+ * line would be moved out from here.
+ */
+ pimpl_->lyx_server_.reset(new LyXServer(&pimpl_->lyxfunc_,
lyxrc.lyxpipes));
+ pimpl_->lyx_socket_.reset(new
LyXServerSocket(&pimpl_->lyxfunc_,
+ lyx::support::os::internal_path(package().temp_dir() +
"/lyxsocket")));
+
+ // handle the batch commands the user asked for
+ if (!batch_command.empty()) {
+
pimpl_->lyxfunc_.dispatch(lyxaction.lookupFunc(batch_command));
+ }
+
+ exit_status = pimpl_->application_->start(batch_command);
// Kill the application object before exiting. This avoid crash
// on exit on Linux.
- application_.reset();
+ pimpl_->application_.reset();
// Restore original font resources after Application is
destroyed.
lyx::support::restoreFontResources();
}
@@ -276,7 +373,7 @@
quitting = true;
// close buffers first
- buffer_list_->closeAll();
+ pimpl_->buffer_list_.closeAll();
// do any other cleanup procedures now
lyxerr[Debug::INFO] << "Deleting tmp dir " << package().temp_dir() <<
endl;
@@ -292,8 +389,8 @@
void LyX::earlyExit(int status)
{
- BOOST_ASSERT(application_.get());
- // LyX::application_ is not initialised at this
+ BOOST_ASSERT(pimpl_->application_.get());
+ // LyX::pimpl_::application_ is not initialised at this
// point so it's safe to just exit after some cleanup.
prepareExit();
exit(status);
@@ -305,16 +402,16 @@
lyxerr[Debug::INFO] << "Running QuitLyX." << endl;
if (lyx::use_gui) {
- if (!noask && !buffer_list_->quitWriteAll())
+ if (!noask && !pimpl_->buffer_list_.quitWriteAll())
return;
- session_->writeFile();
+ pimpl_->session_->writeFile();
}
prepareExit();
if (lyx::use_gui) {
- application_->exit(0);
+ pimpl_->application_->exit(0);
}
}
@@ -366,7 +463,7 @@
if (b)
last_loaded = b;
} else {
- Buffer * buf = buffer_list_->newBuffer(s,
false);
+ Buffer * buf =
pimpl_->buffer_list_.newBuffer(s, false);
if (loadLyXFile(buf, s)) {
last_loaded = buf;
ErrorList const & el =
buf->errorList("Parse");
@@ -375,7 +472,7 @@
boost::bind(&LyX::printError, this, _1));
}
else
- buffer_list_->release(buf);
+ pimpl_->buffer_list_.release(buf);
}
}
@@ -434,7 +531,7 @@
height = 0;
}
// create the main window
- LyXView * view = &application_->createView(width, height, posx, posy,
maximize);
+ LyXView * view = &pimpl_->application_->createView(width, height, posx,
posy, maximize);
ref().addLyXView(view);
// load files
@@ -443,7 +540,7 @@
// if a file is specified, I assume that user wants to edit *that* file
if (files.empty() && lyxrc.load_session) {
- vector<string> const & lastopened = session_->lastOpenedFiles();
+ vector<string> const & lastopened =
pimpl_->session_->lastOpenedFiles();
// do not add to the lastfile list since these files are
restored from
// last seesion, and should be already there (regular files),
or should
// not be added at all (help files).
@@ -451,7 +548,7 @@
bind(&LyXView::loadLyXFile, view, _1, false));
}
// clear this list to save a few bytes of RAM
- session_->clearLastOpenedFiles();
+ pimpl_->session_->clearLastOpenedFiles();
}
@@ -565,14 +662,14 @@
void LyX::initGuiFont()
{
if (lyxrc.roman_font_name.empty())
- lyxrc.roman_font_name = application_->romanFontName();
+ lyxrc.roman_font_name = pimpl_->application_->romanFontName();
if (lyxrc.sans_font_name.empty())
- lyxrc.sans_font_name = application_->sansFontName();
+ lyxrc.sans_font_name = pimpl_->application_->sansFontName();
if (lyxrc.typewriter_font_name.empty())
lyxrc.typewriter_font_name
- = application_->typewriterFontName();
+ = pimpl_->application_->typewriterFontName();
}
@@ -651,10 +748,12 @@
if (lyx::use_gui) {
// Set up bindings
- toplevel_keymap.reset(new kb_keymap);
- defaultKeyBindings(toplevel_keymap.get());
- toplevel_keymap->read(lyxrc.bind_file);
+ pimpl_->toplevel_keymap_.reset(new kb_keymap);
+ defaultKeyBindings(pimpl_->toplevel_keymap_.get());
+ pimpl_->toplevel_keymap_->read(lyxrc.bind_file);
+
pimpl_->lyxfunc_.initKeySequences(pimpl_->toplevel_keymap_.get());
+
// Read menus
if (!readUIFile(lyxrc.ui_file))
return false;
@@ -691,7 +790,7 @@
}
lyxerr[Debug::INIT] << "Reading session information '.lyx/session'..."
<< endl;
- session_.reset(new lyx::Session(lyxrc.num_lastfiles));
+ pimpl_->session_.reset(new lyx::Session(lyxrc.num_lastfiles));
return true;
}
@@ -755,9 +854,9 @@
// contain documents etc. which might be helpful on
// a crash
- buffer_list_->emergencyWriteAll();
+ pimpl_->buffer_list_.emergencyWriteAll();
if (lyx::use_gui)
- application_->server().emergencyCleanup();
+ pimpl_->lyx_server_->emergencyCleanup();
}
@@ -1150,3 +1249,53 @@
batch_command = batch;
}
+
+namespace lyx {
+
+FuncStatus getStatus(FuncRequest const & action)
+{
+ return LyX::ref().lyxFunc().getStatus(action);
+}
+
+
+void dispatch(FuncRequest const & action)
+{
+ LyX::ref().lyxFunc().dispatch(action);
+}
+
+} // namespace lyx
+
+
+BufferList & theBufferList()
+{
+ return LyX::ref().bufferList();
+}
+
+
+LyXFunc & theLyXFunc()
+{
+ return LyX::ref().lyxFunc();
+}
+
+
+LyXServer & theLyXServer()
+{
+ // FIXME: this should not be use_gui dependent
+ BOOST_ASSERT(lyx::use_gui);
+ return LyX::ref().server();
+}
+
+
+LyXServerSocket & theLyXServerSocket()
+{
+ // FIXME: this should not be use_gui dependent
+ BOOST_ASSERT(lyx::use_gui);
+ return LyX::ref().socket();
+}
+
+
+kb_keymap & theTopLevelKeymap()
+{
+ BOOST_ASSERT(lyx::use_gui);
+ return LyX::ref().topLevelKeymap();
+}
Index: lyx_main.h
===================================================================
--- lyx_main.h (revision 15361)
+++ lyx_main.h (working copy)
@@ -26,9 +26,13 @@
class BufferList;
class ErrorItem;
class InsetBase;
+class LyXFunc;
+class LyXServer;
+class LyXServerSocket;
class LyXView;
class kb_keymap;
+
namespace lyx {
extern bool use_gui;
class Session;
@@ -74,7 +78,24 @@
///
lyx::Session & session();
lyx::Session const & session() const;
+ ///
+ LyXFunc & lyxFunc();
+ LyXFunc const & lyxFunc() const;
+ ///
+ LyXServer & server();
+ LyXServer const & server() const;
+ ///
+ LyXServerSocket & socket();
+ LyXServerSocket const & socket() const;
+ ///
+ lyx::frontend::Application & application();
+ lyx::frontend::Application const & application() const;
+
+ ///
+ kb_keymap & topLevelKeymap();
+ kb_keymap const & topLevelKeymap() const;
+
void addLyXView(LyXView * lyxview);
/** redraw \c inset in all the BufferViews in which it is currently
@@ -139,19 +160,15 @@
/// the parsed command line batch command if any
std::string batch_command;
+ /// Use the Pimpl idiom to hide the internals.
+ struct Singletons;
+ boost::scoped_ptr<Singletons> pimpl_;
///
- boost::scoped_ptr<BufferList> buffer_list_;
- /// lyx session, containing lastfiles, lastfilepos, and lastopened
- boost::scoped_ptr<lyx::Session> session_;
- ///
typedef std::list<LyXView *> ViewList;
ViewList views_;
///
bool geometryOption_;
-
- ///
- boost::scoped_ptr<lyx::frontend::Application> application_;
};
#endif // LYX_MAIN_H
Index: lyxfunc.C
===================================================================
--- lyxfunc.C (revision 15361)
+++ lyxfunc.C (working copy)
@@ -141,8 +141,6 @@
namespace fs = boost::filesystem;
-extern boost::scoped_ptr<kb_keymap> toplevel_keymap;
-
// (alkis)
extern tex_accent_struct get_accent(kb_action action);
@@ -202,26 +200,32 @@
}
-LyXFunc::LyXFunc(LyXView * lv)
- : owner(lv),
+LyXFunc::LyXFunc()
+ : owner(0),
encoded_last_key(0),
- keyseq(toplevel_keymap.get(), toplevel_keymap.get()),
- cancel_meta_seq(toplevel_keymap.get(), toplevel_keymap.get()),
meta_fake_bit(key_modifier::none)
{
}
+void LyXFunc::initKeySequences(kb_keymap * kb)
+{
+ keyseq.reset(new kb_sequence(kb, kb));
+ cancel_meta_seq.reset(new kb_sequence(kb, kb));
+}
+
+
void LyXFunc::setLyXView(LyXView * lv)
{
owner = lv;
}
+
void LyXFunc::handleKeyFunc(kb_action action)
{
char c = encoded_last_key;
- if (keyseq.length()) {
+ if (keyseq->length()) {
c = 0;
}
@@ -229,7 +233,7 @@
.deadkey(c, get_accent(action).accent, view()->getLyXText());
// Need to clear, in case the minibuffer calls these
// actions
- keyseq.clear();
+ keyseq->clear();
// copied verbatim from do_accent_char
view()->cursor().resetAnchor();
view()->update();
@@ -259,9 +263,9 @@
// Do a one-deep top-level lookup for
// cancel and meta-fake keys. RVDK_PATCH_5
- cancel_meta_seq.reset();
+ cancel_meta_seq->reset();
- FuncRequest func = cancel_meta_seq.addkey(keysym, state);
+ FuncRequest func = cancel_meta_seq->addkey(keysym, state);
lyxerr[Debug::KEY] << BOOST_CURRENT_FUNCTION
<< " action first set to [" << func.action << ']'
<< endl;
@@ -271,7 +275,7 @@
// Mostly, meta_fake_bit = key_modifier::none. RVDK_PATCH_5.
if ((func.action != LFUN_CANCEL) && (func.action != LFUN_META_PREFIX)) {
// remove Caps Lock and Mod2 as a modifiers
- func = keyseq.addkey(keysym, (state | meta_fake_bit));
+ func = keyseq->addkey(keysym, (state | meta_fake_bit));
lyxerr[Debug::KEY] << BOOST_CURRENT_FUNCTION
<< "action now set to ["
<< func.action << ']' << endl;
@@ -289,7 +293,7 @@
lyxerr << BOOST_CURRENT_FUNCTION
<< " Key [action="
<< func.action << "]["
- << keyseq.print() << ']'
+ << keyseq->print() << ']'
<< endl;
}
@@ -297,8 +301,8 @@
// why not return already here if action == -1 and
// num_bytes == 0? (Lgb)
- if (keyseq.length() > 1) {
- owner->message(lyx::from_utf8(keyseq.print()));
+ if (keyseq->length() > 1) {
+ owner->message(lyx::from_utf8(keyseq->print()));
}
@@ -307,7 +311,7 @@
if (func.action == LFUN_UNKNOWN_ACTION &&
state == key_modifier::shift) {
lyxerr[Debug::KEY] << "Trying without shift" << endl;
- func = keyseq.addkey(keysym, key_modifier::none);
+ func = keyseq->addkey(keysym, key_modifier::none);
lyxerr[Debug::KEY] << "Action now " << func.action << endl;
}
@@ -315,7 +319,7 @@
// Hmm, we didn't match any of the keysequences. See
// if it's normal insertable text not already covered
// by a binding
- if (keysym->isText() && keyseq.length() == 1) {
+ if (keysym->isText() && keyseq->length() == 1) {
lyxerr[Debug::KEY] << "isText() is true, inserting." <<
endl;
func = FuncRequest(LFUN_SELF_INSERT,
FuncRequest::KEYBOARD);
@@ -765,7 +769,7 @@
}
case LFUN_COMMAND_PREFIX:
- owner->message(lyx::from_utf8(keyseq.printOptions()));
+ owner->message(lyx::from_utf8(keyseq->printOptions()));
break;
case LFUN_COMMAND_EXECUTE:
@@ -774,7 +778,7 @@
break;
case LFUN_CANCEL:
- keyseq.reset();
+ keyseq->reset();
meta_fake_bit = key_modifier::none;
if (view()->buffer())
// cancel any selection
@@ -784,7 +788,7 @@
case LFUN_META_PREFIX:
meta_fake_bit = key_modifier::alt;
- setMessage(lyx::from_utf8(keyseq.print()));
+ setMessage(lyx::from_utf8(keyseq->print()));
break;
case LFUN_BUFFER_TOGGLE_READ_ONLY:
@@ -1120,8 +1124,8 @@
break;
case LFUN_SERVER_NOTIFY:
- dispatch_buffer = lyx::from_utf8(keyseq.print());
-
theApp->server().notifyClient(lyx::to_utf8(dispatch_buffer));
+ dispatch_buffer = lyx::from_utf8(keyseq->print());
+
theLyXServer().notifyClient(lyx::to_utf8(dispatch_buffer));
break;
case LFUN_SERVER_GOTO_FILE_ROW: {
@@ -1656,7 +1660,7 @@
}
}
- string const shortcuts = toplevel_keymap->printbindings(cmd);
+ string const shortcuts = theTopLevelKeymap().printbindings(cmd);
if (!shortcuts.empty())
comname += ": " + shortcuts;
@@ -1675,15 +1679,6 @@
}
-void LyXFunc::setupLocalKeymap()
-{
- keyseq.stdmap = toplevel_keymap.get();
- keyseq.curmap = toplevel_keymap.get();
- cancel_meta_seq.stdmap = toplevel_keymap.get();
- cancel_meta_seq.curmap = toplevel_keymap.get();
-}
-
-
void LyXFunc::menuNew(string const & name, bool fromTemplate)
{
string initpath = lyxrc.document_path;
@@ -1930,12 +1925,12 @@
{
// When meta-fake key is pressed, show the key sequence so far + "M-".
if (wasMetaKey())
- return keyseq.print() + "M-";
+ return keyseq->print() + "M-";
// Else, when a non-complete key sequence is pressed,
// show the available options.
- if (keyseq.length() > 0 && !keyseq.deleted())
- return keyseq.printOptions();
+ if (keyseq->length() > 0 && !keyseq->deleted())
+ return keyseq->printOptions();
if (!view()->buffer())
return lyx::to_utf8(_("Welcome to LyX!"));
Index: lyxfunc.h
===================================================================
--- lyxfunc.h (revision 15361)
+++ lyxfunc.h (working copy)
@@ -20,7 +20,7 @@
#include "support/docstring.h"
-#include <boost/shared_ptr.hpp>
+#include <boost/scoped_ptr.hpp>
#include <boost/signals/trackable.hpp>
@@ -41,7 +41,7 @@
class LyXFunc : public boost::signals::trackable {
public:
///
- explicit LyXFunc(LyXView * lv = 0);
+ explicit LyXFunc();
/// LyX dispatcher, executes lyx actions.
void dispatch(FuncRequest const &);
@@ -49,6 +49,9 @@
///
void setLyXView(LyXView * lv);
+ ///
+ void initKeySequences(kb_keymap * kb);
+
/// return the status bar state string
std::string const viewStatusMessage();
@@ -83,13 +86,12 @@
lyx::char_type encoded_last_key;
///
- kb_sequence keyseq;
+ boost::scoped_ptr<kb_sequence> keyseq;
///
- kb_sequence cancel_meta_seq;
+ boost::scoped_ptr<kb_sequence> cancel_meta_seq;
///
key_modifier::state meta_fake_bit;
- ///
- void setupLocalKeymap();
+
/// Error status, only Dispatch can change this flag
mutable bool errorstat;
@@ -115,14 +117,15 @@
bool ensureBufferClean(BufferView * bv);
};
+/// Implementation is in lyx_main.C
extern LyXFunc & theLyXFunc();
namespace lyx {
-/// Implementation is in frontends/Application.C
+/// Implementation is in lyx_main.C
extern FuncStatus getStatus(FuncRequest const & action);
-/// Implementation is in frontends/Application.C
+/// Implementation is in lyx_main.C
extern void dispatch(FuncRequest const & action);
}
Index: lyxserver.h
===================================================================
--- lyxserver.h (revision 15361)
+++ lyxserver.h (working copy)
@@ -140,6 +140,9 @@
LyXComm pipes;
};
+/// Implementation is in lyx_main.C
+extern LyXServer & theLyXServer();
+
#endif /* _LYXSERVER_H_ */
/* === End of File: lyxserver.h ========================================== */
Index: lyxsocket.h
===================================================================
--- lyxsocket.h (revision 15361)
+++ lyxsocket.h (working copy)
@@ -89,4 +89,7 @@
std::string buffer_;
};
+/// Implementation is in lyx_main.C
+extern LyXServerSocket & theLyXServerSocket();
+
#endif // LYXSOCKET_H
Index: MenuBackend.C
===================================================================
--- MenuBackend.C (revision 15361)
+++ MenuBackend.C (working copy)
@@ -65,8 +65,6 @@
using std::vector;
-extern boost::scoped_ptr<kb_keymap> toplevel_keymap;
-
namespace {
class MenuNamesEqual : public std::unary_function<Menu, bool> {
@@ -139,7 +137,7 @@
// Get the keys bound to this action, but keep only the
// first one later
- kb_keymap::Bindings bindings = toplevel_keymap->findbindings(func_);
+ kb_keymap::Bindings bindings = theTopLevelKeymap().findbindings(func_);
if (bindings.size()) {
return lyx::from_utf8(bindings.begin()->print());