1999-09-27 18:44:28 +00:00
|
|
|
|
// -*- C++ -*-
|
2003-08-23 00:17:00 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file lyxfunc.h
|
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
|
* \author John Levon
|
|
|
|
|
* \author Andr<EFBFBD> P<EFBFBD>nitz
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
1999-10-07 18:44:17 +00:00
|
|
|
|
#ifndef LYXFUNC_H
|
|
|
|
|
#define LYXFUNC_H
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-02-04 09:38:32 +00:00
|
|
|
|
#include "kbsequence.h"
|
2003-03-19 17:15:32 +00:00
|
|
|
|
#include "lfuns.h"
|
1999-11-22 16:19:48 +00:00
|
|
|
|
|
2003-09-06 20:08:10 +00:00
|
|
|
|
#include <boost/shared_ptr.hpp>
|
2002-05-29 16:21:03 +00:00
|
|
|
|
#include <boost/signals/trackable.hpp>
|
|
|
|
|
|
2003-09-07 01:45:40 +00:00
|
|
|
|
#include "support/std_string.h"
|
|
|
|
|
|
|
|
|
|
class BufferView;
|
|
|
|
|
class FuncRequest;
|
2003-09-04 03:54:04 +00:00
|
|
|
|
class FuncStatus;
|
2003-09-06 20:08:10 +00:00
|
|
|
|
class LyXKeySym;
|
2001-07-29 17:39:01 +00:00
|
|
|
|
class LyXText;
|
2003-09-07 01:45:40 +00:00
|
|
|
|
class LyXView;
|
2001-04-17 15:15:59 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
/** This class encapsulates all the LyX command operations.
|
1999-09-27 18:44:28 +00:00
|
|
|
|
This is the class of the LyX's "high level event handler".
|
|
|
|
|
Every user command is processed here, either invocated from
|
|
|
|
|
keyboard or from the GUI. All GUI objects, including buttons and
|
|
|
|
|
menus should use this class and never call kernel functions directly.
|
|
|
|
|
*/
|
2002-05-29 16:21:03 +00:00
|
|
|
|
class LyXFunc : public boost::signals::trackable {
|
1999-09-27 18:44:28 +00:00
|
|
|
|
public:
|
|
|
|
|
///
|
2000-04-08 17:02:02 +00:00
|
|
|
|
explicit
|
1999-11-22 16:19:48 +00:00
|
|
|
|
LyXFunc(LyXView *);
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2000-06-12 11:27:15 +00:00
|
|
|
|
/// LyX dispatcher, executes lyx actions.
|
2002-08-07 08:11:41 +00:00
|
|
|
|
void dispatch(FuncRequest const &, bool verbose = false);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2002-07-18 20:15:29 +00:00
|
|
|
|
/// Dispatch via a string argument
|
|
|
|
|
void dispatch(string const & s, bool verbose = false);
|
2002-12-01 22:59:25 +00:00
|
|
|
|
|
2002-07-18 20:15:29 +00:00
|
|
|
|
/// return the status bar state string
|
|
|
|
|
string const view_status_message();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
2003-09-06 20:08:10 +00:00
|
|
|
|
///
|
|
|
|
|
typedef boost::shared_ptr<LyXKeySym> LyXKeySymPtr;
|
2000-08-14 15:31:16 +00:00
|
|
|
|
///
|
2002-06-18 15:44:30 +00:00
|
|
|
|
void processKeySym(LyXKeySymPtr key, key_modifier::state state);
|
2000-11-04 10:00:12 +00:00
|
|
|
|
|
2001-05-16 07:53:23 +00:00
|
|
|
|
///
|
2002-08-07 08:11:41 +00:00
|
|
|
|
FuncStatus getStatus(FuncRequest const & action) const;
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
/// The last key was meta
|
1999-11-22 16:19:48 +00:00
|
|
|
|
bool wasMetaKey() const;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2002-03-21 17:27:08 +00:00
|
|
|
|
/// True if lyxfunc reports an error
|
|
|
|
|
bool errorStat() const { return errorstat; }
|
|
|
|
|
/// Buffer to store result messages
|
|
|
|
|
void setMessage(string const & m) const;
|
|
|
|
|
/// Buffer to store result messages
|
|
|
|
|
void setErrorMessage(string const &) const;
|
|
|
|
|
/// Buffer to store result messages from getStatus
|
|
|
|
|
void setStatusMessage(string const &) const;
|
|
|
|
|
/// Buffer to store result messages
|
|
|
|
|
string const getMessage() const { return dispatch_buffer; }
|
|
|
|
|
/// Buffer to store result messages
|
|
|
|
|
string const getStatusMessage() const { return status_buffer; }
|
2002-06-18 15:44:30 +00:00
|
|
|
|
/// Handle a accented char key sequence
|
2001-02-23 16:10:03 +00:00
|
|
|
|
void handleKeyFunc(kb_action action);
|
2002-01-12 20:00:47 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
private:
|
2002-08-13 17:43:40 +00:00
|
|
|
|
///
|
|
|
|
|
BufferView * view() const;
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
1999-11-22 16:19:48 +00:00
|
|
|
|
LyXView * owner;
|
2003-01-05 22:38:42 +00:00
|
|
|
|
|
|
|
|
|
/// the last character added to the key sequence, in ISO encoded form
|
|
|
|
|
char encoded_last_key;
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2002-03-21 17:27:08 +00:00
|
|
|
|
kb_sequence keyseq;
|
|
|
|
|
///
|
|
|
|
|
kb_sequence cancel_meta_seq;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2002-05-26 17:33:14 +00:00
|
|
|
|
key_modifier::state meta_fake_bit;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
2003-07-28 22:34:48 +00:00
|
|
|
|
void moveCursorUpdate();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
///
|
|
|
|
|
void setupLocalKeymap();
|
2002-03-21 17:27:08 +00:00
|
|
|
|
/// Error status, only Dispatch can change this flag
|
|
|
|
|
mutable bool errorstat;
|
|
|
|
|
|
|
|
|
|
/** Buffer to store messages and result data. Is there a
|
1999-12-16 06:43:25 +00:00
|
|
|
|
good reason to have this one as static in Dispatch? (Ale)
|
|
|
|
|
*/
|
2002-03-21 17:27:08 +00:00
|
|
|
|
mutable string dispatch_buffer;
|
|
|
|
|
/** Buffer to store messages and result data from getStatus
|
2002-01-13 13:07:27 +00:00
|
|
|
|
*/
|
2002-03-21 17:27:08 +00:00
|
|
|
|
mutable string status_buffer;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2002-07-18 20:15:29 +00:00
|
|
|
|
/// send a post-dispatch status message
|
2002-08-07 08:11:41 +00:00
|
|
|
|
void sendDispatchMessage(string const & msg, FuncRequest const & ev, bool verbose);
|
2002-07-18 20:15:29 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// I think the following should be moved to BufferView. (Asger)
|
|
|
|
|
|
|
|
|
|
///
|
2002-07-11 15:13:21 +00:00
|
|
|
|
void menuNew(string const & argument, bool fromTemplate);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
///
|
2001-07-16 15:42:57 +00:00
|
|
|
|
void open(string const &);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
///
|
2000-04-28 11:18:04 +00:00
|
|
|
|
void doImport(string const &);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
///
|
2001-07-16 15:42:57 +00:00
|
|
|
|
void closeBuffer();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
};
|
2002-03-21 17:27:08 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#endif
|