2006-03-05 17:24:44 +00:00
|
|
|
|
// -*- C++ -*-
|
|
|
|
|
/**
|
|
|
|
|
* \file QLToolbar.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 John Levon
|
|
|
|
|
* \author Jean-Marc Lasgouttes
|
|
|
|
|
* \author Angus Leeming
|
|
|
|
|
* \author Abdelrazak Younes
|
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef QLTOOLBAR_H
|
|
|
|
|
#define QLTOOLBAR_H
|
|
|
|
|
|
|
|
|
|
#include "frontends/Toolbars.h"
|
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
class QComboBox;
|
|
|
|
|
class QToolBar;
|
|
|
|
|
|
|
|
|
|
namespace lyx {
|
|
|
|
|
namespace frontend {
|
|
|
|
|
|
|
|
|
|
class QLayoutBox;
|
|
|
|
|
class QtView;
|
|
|
|
|
class QLAction;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class QLayoutBox : public QObject, public LayoutBox {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
QLayoutBox(QToolBar *, QtView &);
|
|
|
|
|
|
|
|
|
|
/// select the right layout in the combox.
|
|
|
|
|
void set(std::string const & layout);
|
|
|
|
|
/// Populate the layout combox.
|
|
|
|
|
void update();
|
|
|
|
|
/// Erase the layout list.
|
|
|
|
|
void clear();
|
|
|
|
|
/// Display the layout list.
|
|
|
|
|
void open();
|
|
|
|
|
///
|
|
|
|
|
void setEnabled(bool);
|
|
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
|
void selected(const QString & str);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
QComboBox * combo_;
|
|
|
|
|
QtView & owner_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class QLToolbar : public QObject, public Toolbar {
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
QLToolbar(ToolbarBackend::Toolbar const &, LyXView &);
|
2006-04-05 23:56:29 +00:00
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
//~QLToolbar();
|
|
|
|
|
|
|
|
|
|
void add(FuncRequest const & func, std::string const & tooltip);
|
|
|
|
|
void hide(bool);
|
|
|
|
|
void show(bool);
|
|
|
|
|
void update();
|
|
|
|
|
LayoutBox * layout() const { return layout_.get(); }
|
|
|
|
|
|
2006-05-31 12:53:05 +00:00
|
|
|
|
signals:
|
|
|
|
|
void updated();
|
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
private:
|
2006-04-05 23:56:29 +00:00
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
std::vector<QLAction *> ActionVector;
|
|
|
|
|
QtView & owner_;
|
|
|
|
|
QToolBar * toolbar_;
|
|
|
|
|
|
|
|
|
|
boost::scoped_ptr<QLayoutBox> layout_;
|
2006-04-05 23:56:29 +00:00
|
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
|
Qt::ToolBarArea tba;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
|
} // namespace lyx
|
|
|
|
|
|
|
|
|
|
#endif // NOT QLTOOLBAR_H
|