mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
20b05ef8c1
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1062 a592a061-630c-0410-9148-cb99ea01b6c8
54 lines
1.1 KiB
C++
54 lines
1.1 KiB
C++
// -*- C++ -*-
|
|
/* This file is part of
|
|
* ======================================================
|
|
*
|
|
* LyX, The Document Processor
|
|
*
|
|
* Copyright 2000 The LyX Team.
|
|
*
|
|
* ======================================================
|
|
*/
|
|
|
|
#ifndef FORMTOC_H
|
|
#define FORMTOC_H
|
|
|
|
#ifdef __GNUG__
|
|
#pragma interface
|
|
#endif
|
|
|
|
#include "FormCommand.h"
|
|
#include "buffer.h"
|
|
struct FD_form_toc;
|
|
|
|
/** This class provides an XForms implementation of the FormToc Dialog.
|
|
*/
|
|
class FormToc : public FormCommand {
|
|
public:
|
|
///
|
|
FormToc(LyXView *, Dialogs *);
|
|
///
|
|
~FormToc();
|
|
private:
|
|
/// Build the dialog
|
|
virtual void build();
|
|
/// Update dialog before showing it
|
|
virtual void update();
|
|
/// Apply from dialog (modify or create inset)
|
|
virtual void apply();
|
|
/// delete derived class variables from hide()
|
|
virtual void clearStore();
|
|
/// Pointer to the actual instantiation of the xform's form
|
|
virtual FL_FORM * const form() const;
|
|
///
|
|
void updateToc();
|
|
///
|
|
FD_form_toc * build_toc();
|
|
|
|
/// Real GUI implementation.
|
|
FD_form_toc * dialog_;
|
|
///
|
|
std::vector<Buffer::TocItem> toclist;
|
|
};
|
|
|
|
#endif
|