mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-16 07:55:41 +00:00
7ac700920f
Now the minibuffer toolbar is "auto" by default. It is opened by command-execute (M-x) and closed when the command is executed without error. * make lyx::dispatch return a DispatchResult struct * there is a new MINIBUFFER type of toolbar, that can be used for this use. * remove special handling of M-x in minnibuffer; Escape can be used instead. Fix focus in this case. * when minibuffer toolbar is "auto", make the toolbar close itself after - a command has been executed without error - an empty command has been executed - the Escape key has been used [this is actually commitfdcff02a
, which was later reverted atdd61d8cf
]
103 lines
2.1 KiB
C++
103 lines
2.1 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiCommandBuffer.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars
|
|
* \author Asger and Jürgen
|
|
* \author John Levon
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUICOMMANDBUFFER_H
|
|
#define GUICOMMANDBUFFER_H
|
|
|
|
#include "support/docstring.h"
|
|
|
|
#include <QPushButton>
|
|
#include <QWidget>
|
|
|
|
#include <vector>
|
|
|
|
class QListWidgetItem;
|
|
|
|
namespace lyx {
|
|
|
|
class DispatchResult;
|
|
|
|
namespace frontend {
|
|
|
|
class GuiView;
|
|
class GuiCommandEdit;
|
|
|
|
class GuiCommandBuffer : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GuiCommandBuffer(GuiView * view);
|
|
|
|
public Q_SLOTS:
|
|
/// dispatch a command
|
|
void dispatch();
|
|
/// tab-complete
|
|
void complete();
|
|
/// show history
|
|
void listHistoryUp();
|
|
/// called when an item in a list is selected
|
|
void itemSelected(QListWidgetItem *);
|
|
/// up
|
|
void up();
|
|
/// down
|
|
void down();
|
|
/// leave and hide the command buffer
|
|
void hideParent();
|
|
private:
|
|
/// owning view
|
|
GuiView * view_;
|
|
/// command widget
|
|
GuiCommandEdit * edit_;
|
|
|
|
/// return the previous history entry if any
|
|
std::string const historyUp();
|
|
/// return the next history entry if any
|
|
std::string const historyDown();
|
|
|
|
/// return the font and depth in the active BufferView as a message.
|
|
docstring const getCurrentState() const;
|
|
|
|
/// open a listbox and show the contents of the list. When reversed
|
|
/// is true, the contents of the list is filled bottom-up.
|
|
void showList(std::vector<std::string> const & list,
|
|
QPoint const & pos, bool reversed = false) const;
|
|
|
|
/// return the possible completions
|
|
std::vector<std::string> const completions(std::string const & prefix,
|
|
std::string & new_prefix);
|
|
|
|
/// dispatch a command
|
|
DispatchResult const & dispatch(std::string const & str);
|
|
|
|
/// available command names
|
|
std::vector<std::string> commands_;
|
|
|
|
/// command history
|
|
std::vector<std::string> history_;
|
|
|
|
/// current position in command history
|
|
std::vector<std::string>::const_iterator history_pos_;
|
|
|
|
/// the button up
|
|
QPushButton * upPB;
|
|
|
|
/// the button down
|
|
QPushButton * downPB;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GUICOMMANDBUFFER_H
|