mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
ae8999aeba
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9034 a592a061-630c-0410-9148-cb99ea01b6c8
62 lines
1.2 KiB
C++
62 lines
1.2 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file GToc.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author John Spray
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef GTOC_H
|
|
#define GTOC_H
|
|
|
|
#include "GViewBase.h"
|
|
#include "toc.h"
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class ControlToc;
|
|
|
|
/** This class provides a GTK+ implementation of the Toc Dialog.
|
|
*/
|
|
class GToc : public GViewCB<ControlToc, GViewGladeB> {
|
|
public:
|
|
///
|
|
GToc(Dialog &);
|
|
private:
|
|
/// not needed
|
|
virtual void apply() {}
|
|
/// Build the dialog
|
|
virtual void doBuild();
|
|
/// Update dialog
|
|
virtual void update();
|
|
|
|
void updateType();
|
|
void updateContents();
|
|
|
|
void onTocViewSelected();
|
|
void onTypeComboChanged();
|
|
|
|
// Makes TocViewSelected ignore events
|
|
bool changing_views_;
|
|
|
|
Gtk::TreeView * tocview_;
|
|
Gtk::ComboBox * typecombo_;
|
|
Gtk::TreeModelColumn<Glib::ustring> listCol_;
|
|
Gtk::TreeModelColumn<unsigned int> listColIndex_;
|
|
Gtk::TreeModel::ColumnRecord listCols_;
|
|
Glib::RefPtr<Gtk::ListStore> tocstore_;
|
|
Glib::RefPtr<Gtk::ListStore> typestore_;
|
|
Glib::RefPtr<Gtk::TreeSelection> listSel_;
|
|
|
|
toc::Toc toc_;
|
|
};
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // GTOC_H
|