mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-13 14:32:04 +00:00
200f5a292f
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20976 a592a061-630c-0410-9148-cb99ea01b6c8
90 lines
1.6 KiB
C++
90 lines
1.6 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GuiToolbar.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
* \author John Levon
|
|
* \author Jean-Marc Lasgouttes
|
|
* \author Angus Leeming
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GUITOOLBAR_H
|
|
#define GUITOOLBAR_H
|
|
|
|
#include "Session.h"
|
|
|
|
#include <QList>
|
|
#include <QToolBar>
|
|
#include <QComboBox>
|
|
|
|
namespace lyx {
|
|
|
|
class ToolbarItem;
|
|
|
|
namespace frontend {
|
|
|
|
class GuiCommandBuffer;
|
|
class GuiViewBase;
|
|
class Action;
|
|
|
|
|
|
class GuiLayoutBox : public QComboBox
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
GuiLayoutBox(GuiViewBase &);
|
|
|
|
/// select the right layout in the combobox.
|
|
void set(docstring const & layout);
|
|
/// Populate the layout combobox.
|
|
void updateContents();
|
|
|
|
private Q_SLOTS:
|
|
void selected(const QString & str);
|
|
|
|
private:
|
|
GuiViewBase & owner_;
|
|
};
|
|
|
|
|
|
class GuiToolbar : public QToolBar
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
GuiToolbar(ToolbarInfo const &, GuiViewBase &);
|
|
|
|
/// Add a button to the bar.
|
|
void add(ToolbarItem const & item);
|
|
/** update toolbar information
|
|
* ToolbarInfo will then be saved by session
|
|
*/
|
|
void saveInfo(ToolbarSection::ToolbarInfo & info);
|
|
/// Refresh the contents of the bar.
|
|
void updateContents();
|
|
GuiLayoutBox * layout() const { return layout_; }
|
|
///
|
|
GuiCommandBuffer * commandBuffer() { return command_buffer_; }
|
|
|
|
Q_SIGNALS:
|
|
void updated();
|
|
|
|
private:
|
|
Action * addItem(ToolbarItem const & item);
|
|
|
|
QList<Action *> actions_;
|
|
GuiViewBase & owner_;
|
|
|
|
GuiLayoutBox * layout_;
|
|
GuiCommandBuffer * command_buffer_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GUITOOLBAR_H
|