mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
cb81965b1e
- initialiseParams(): overload ControlCommand::initialiseParams() so that we can update the model at this point (QToc is the controller _and_ the model). - update(): new - updateBackend(): new protected method to update the TocBackend (called for the "Update" button). * QToc: - is now a QObject - modelReset: new Qt signal to indicate a model reset to associated dialog(s). - QToc(): avoid the duplicate update() call that will be done in the show command anyway. * Dialogs.C - use new TocWidget in a DockView. * TocWidget.[Ch]: renamed from QTocDialog. This striped down widget is only a widget that connects to the 'QToc' model/controller. * DockView.h: new template class that encapsulates a given Widget inside a DockWidget and presents a Dialog::View interface. * QTocUi.ui: - now is a simple Widget. - rearrange the buttons a bit - get rid of the unneeded close button. - modify the shortcut to "Promote" to 'r' because of a clash with "Alt-p" number (we really need real, always valid, shortcuts for all outline action!) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17416 a592a061-630c-0410-9148-cb99ea01b6c8
72 lines
1.4 KiB
C++
72 lines
1.4 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/QTocUi.h"
|
|
|
|
#include <QWidget>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class QToc;
|
|
|
|
class TocWidget : public QWidget, public Ui::QTocUi {
|
|
Q_OBJECT
|
|
public:
|
|
TocWidget(QToc * form, QMainWindow * parent = 0);
|
|
|
|
/// Update the display of the dialog whilst it is still visible.
|
|
void update();
|
|
|
|
protected Q_SLOTS:
|
|
/// Update Gui of the display.
|
|
void updateGui();
|
|
///
|
|
void select(QModelIndex const & index);
|
|
///
|
|
void selectionChanged(const QModelIndex & current,
|
|
const QModelIndex & previous);
|
|
|
|
void on_updatePB_clicked();
|
|
void on_depthSL_valueChanged(int depth);
|
|
void on_typeCO_activated(int value);
|
|
void on_moveUpPB_clicked();
|
|
void on_moveDownPB_clicked();
|
|
void on_moveInPB_clicked();
|
|
void on_moveOutPB_clicked();
|
|
|
|
protected:
|
|
///
|
|
void enableButtons(bool enable = true);
|
|
///
|
|
int getIndexDepth(QModelIndex const & index, int depth = -1);
|
|
///
|
|
void setTreeDepth(int depth);
|
|
|
|
private:
|
|
/// Reconnects the selection model change signal when TOC changed.
|
|
void reconnectSelectionModel();
|
|
|
|
QToc * form_;
|
|
|
|
/// depth of list shown
|
|
int depth_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // TOC_WIDGET_H
|