mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
d66fbd6442
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5719 a592a061-630c-0410-9148-cb99ea01b6c8
97 lines
1.8 KiB
C++
97 lines
1.8 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file qt2/Toolbar_pimpl.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
*
|
|
* Full author contact details are available in file CREDITS
|
|
*/
|
|
|
|
#ifndef TOOLBAR_PIMPL_H
|
|
#define TOOLBAR_PIMPL_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "frontends/Toolbar.h"
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
#include <map>
|
|
#include <vector>
|
|
|
|
#include <qobject.h>
|
|
#include <qtoolbutton.h>
|
|
|
|
class QtView;
|
|
class QToolBar;
|
|
class QLComboBox;
|
|
class ToolbarProxy;
|
|
|
|
struct Toolbar::Pimpl {
|
|
public:
|
|
friend class ToolbarProxy;
|
|
|
|
Pimpl(LyXView * o, int x, int y);
|
|
|
|
~Pimpl();
|
|
|
|
/// add a new button to the toolbar.
|
|
void add(int action);
|
|
|
|
/// update the state of the icons
|
|
void update();
|
|
|
|
/// select the right layout in the combox
|
|
void setLayout(string const & layout);
|
|
/// Populate the layout combox; re-do everything if force is true.
|
|
void updateLayoutList(bool force);
|
|
/// Drop down the layout list
|
|
void openLayoutList();
|
|
/// Erase the layout list
|
|
void clearLayoutList();
|
|
private:
|
|
void changed_layout(string const & sel);
|
|
|
|
void button_selected(QToolButton * button);
|
|
|
|
QtView * owner_;
|
|
|
|
boost::scoped_ptr<ToolbarProxy> proxy_;
|
|
|
|
std::vector<QToolBar *> toolbars_;
|
|
|
|
QLComboBox * combo_;
|
|
|
|
typedef std::map<QToolButton *, int> ButtonMap;
|
|
|
|
ButtonMap map_;
|
|
};
|
|
|
|
|
|
// moc is mind-numbingly stupid
|
|
class ToolbarProxy : public QObject {
|
|
Q_OBJECT
|
|
public:
|
|
ToolbarProxy(Toolbar::Pimpl & owner)
|
|
: owner_(owner) {}
|
|
public slots:
|
|
|
|
void layout_selected(const QString & str) {
|
|
owner_.changed_layout(str.latin1());
|
|
}
|
|
|
|
void button_selected() {
|
|
owner_.button_selected(
|
|
const_cast<QToolButton *>(
|
|
static_cast<QToolButton const *>(sender()))
|
|
);
|
|
}
|
|
private:
|
|
Toolbar::Pimpl & owner_;
|
|
};
|
|
|
|
#endif
|