lyx_mirror/src/frontends/qt4/GuiIndices.h
Jürgen Spitzmüller c52bd08442 Introduce splitindex support. File format change.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29255 a592a061-630c-0410-9148-cb99ea01b6c8
2009-04-16 07:29:01 +00:00

63 lines
1.2 KiB
C++

// -*- C++ -*-
/**
* \file GuiIndices.h
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Edwin Leuven
* \author Jürgen Spitzmüller
*
* Full author contact details are available in file CREDITS.
*/
#ifndef GUIINDICES_H
#define GUIINDICES_H
#include "GuiDocument.h"
#include "ui_IndicesUi.h"
#include "IndicesList.h"
#include <QWidget>
class QTreeWidgetItem;
namespace lyx {
class BufferParams;
namespace frontend {
class GuiIndices : public QWidget, public Ui::IndicesUi
{
Q_OBJECT
public:
GuiIndices(QWidget * parent = 0);
void update(BufferParams const & params);
void apply(BufferParams & params) const;
Q_SIGNALS:
void changed();
protected:
void toggleColor(QTreeWidgetItem *);
void updateView();
protected Q_SLOTS:
void on_addIndexPB_pressed();
void on_renamePB_clicked();
void on_removePB_pressed();
void on_indicesTW_itemDoubleClicked(QTreeWidgetItem *, int);
void on_colorPB_clicked();
void on_multipleIndicesCB_toggled(bool);
private:
/// Contains all legal indices for this doc
IndicesList indiceslist_;
};
} // namespace frontend
} // namespace lyx
#endif // GUIINDICES_H