lyx_mirror/src/frontends/xforms/FormIndex.h

54 lines
1.1 KiB
C
Raw Normal View History

// -*- C++ -*-
/* This file is part of
* ======================================================
*
* LyX, The Document Processor
*
* Copyright 2000 The LyX Team.
*
* ======================================================
*/
#ifndef FORMINDEX_H
#define FORMINDEX_H
#ifdef __GNUG__
#pragma interface
#endif
#include "FormCommand.h"
struct FD_form_index;
/** This class provides an XForms implementation of the FormIndex Dialog.
*/
class FormIndex : public FormCommand {
public:
/**@name Constructors and Destructors */
//@{
///
FormIndex(LyXView *, Dialogs *);
///
~FormIndex();
//@}
private:
/// Build the dialog
virtual void build();
/// Not used but must be instantiated
virtual void input( long ) {}
/// Update dialog before showing it
virtual void update();
/// Apply from dialog (modify or create inset)
virtual void apply();
/// Pointer to the actual instantiation of the xform's form
virtual FL_FORM * const form() const;
///
FD_form_index * build_index();
//@}
/// Real GUI implementation.
FD_form_index * dialog_;
};
#endif