mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
73 lines
1.4 KiB
C
73 lines
1.4 KiB
C
|
// -*- C++ -*-
|
||
|
/**
|
||
|
* \file LayoutBox.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 LYX_LAYOUT_BOX_H
|
||
|
#define LYX_LAYOUT_BOX_H
|
||
|
|
||
|
#include "support/strfwd.h"
|
||
|
|
||
|
#include <QComboBox>
|
||
|
|
||
|
class QToolBar;
|
||
|
|
||
|
namespace lyx {
|
||
|
|
||
|
class DocumentClass;
|
||
|
class Inset;
|
||
|
|
||
|
namespace frontend {
|
||
|
|
||
|
class GuiView;
|
||
|
class LayoutItemDelegate;
|
||
|
|
||
|
class LayoutBox : public QComboBox
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
LayoutBox(QToolBar *, GuiView &);
|
||
|
|
||
|
/// select the right layout in the combobox.
|
||
|
void set(docstring const & layout);
|
||
|
/// Populate the layout combobox.
|
||
|
void updateContents(bool reset);
|
||
|
/// Add Item to Layout box according to sorting settings from preferences
|
||
|
void addItemSort(docstring const & item, docstring const & category,
|
||
|
bool sorted, bool sortedByCat, bool unknown);
|
||
|
|
||
|
///
|
||
|
void showPopup();
|
||
|
|
||
|
///
|
||
|
bool eventFilter(QObject * o, QEvent * e);
|
||
|
///
|
||
|
QString const & filter() const;
|
||
|
|
||
|
private Q_SLOTS:
|
||
|
///
|
||
|
void selected(int index);
|
||
|
///
|
||
|
void setIconSize(QSize size);
|
||
|
|
||
|
private:
|
||
|
friend class LayoutItemDelegate;
|
||
|
struct Private;
|
||
|
Private * const d;
|
||
|
};
|
||
|
|
||
|
} // namespace frontend
|
||
|
} // namespace lyx
|
||
|
|
||
|
#endif // LYX_LAYOUT_BOX_H
|