mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-12 06:03:36 +00:00
2ca370b135
http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg144343.html git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26684 a592a061-630c-0410-9148-cb99ea01b6c8
82 lines
1.6 KiB
C++
82 lines
1.6 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file TocWidget.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Levon
|
|
* \author Abdelrazak Younes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef TOC_WIDGET_H
|
|
#define TOC_WIDGET_H
|
|
|
|
#include "ui_TocUi.h"
|
|
|
|
#include <QWidget>
|
|
|
|
class QModelIndex;
|
|
class QString;
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class GuiView;
|
|
|
|
class TocWidget : public QWidget, public Ui::TocUi
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
///
|
|
TocWidget(GuiView & gui_view, QWidget * parent = 0);
|
|
|
|
/// Initialise GUI.
|
|
void init(QString const & str);
|
|
|
|
public Q_SLOTS:
|
|
/// Update the display of the dialog whilst it is still visible.
|
|
void updateView();
|
|
|
|
protected Q_SLOTS:
|
|
///
|
|
void select(QModelIndex const & index);
|
|
///
|
|
void goTo(QModelIndex const &);
|
|
|
|
void on_tocTV_activated(QModelIndex const &);
|
|
void on_tocTV_clicked(QModelIndex const &);
|
|
void on_updateTB_clicked();
|
|
void on_sortCB_stateChanged(int state);
|
|
void on_persistentCB_stateChanged(int state);
|
|
void on_depthSL_valueChanged(int depth);
|
|
void on_typeCO_currentIndexChanged(int value);
|
|
void on_moveUpTB_clicked();
|
|
void on_moveDownTB_clicked();
|
|
void on_moveInTB_clicked();
|
|
void on_moveOutTB_clicked();
|
|
|
|
private:
|
|
///
|
|
void enableControls(bool enable = true);
|
|
///
|
|
void setTreeDepth(int depth);
|
|
///
|
|
void outline(int func_code);
|
|
///
|
|
QString current_type_;
|
|
|
|
/// depth of list shown
|
|
int depth_;
|
|
/// persistence of uncollapsed nodes in toc view
|
|
bool persistent_;
|
|
///
|
|
GuiView & gui_view_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // TOC_WIDGET_H
|