2000-08-03 12:56:25 +00:00
|
|
|
// -*- 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
|
|
|
|
|
2000-10-13 05:57:05 +00:00
|
|
|
#include "FormInset.h"
|
2000-08-03 12:56:25 +00:00
|
|
|
struct FD_form_index;
|
|
|
|
|
|
|
|
/** This class provides an XForms implementation of the FormIndex Dialog.
|
|
|
|
*/
|
|
|
|
class FormIndex : public FormCommand {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
FormIndex(LyXView *, Dialogs *);
|
|
|
|
///
|
|
|
|
~FormIndex();
|
|
|
|
private:
|
|
|
|
/// Build the dialog
|
|
|
|
virtual void build();
|
|
|
|
/// Update dialog before showing it
|
2000-10-13 05:57:05 +00:00
|
|
|
virtual void update(bool switched = false);
|
2000-08-03 12:56:25 +00:00
|
|
|
/// Apply from dialog (modify or create inset)
|
|
|
|
virtual void apply();
|
|
|
|
/// Pointer to the actual instantiation of the xform's form
|
2000-10-03 05:53:25 +00:00
|
|
|
virtual FL_FORM * form() const;
|
2000-08-03 12:56:25 +00:00
|
|
|
///
|
|
|
|
FD_form_index * build_index();
|
2000-08-08 13:55:26 +00:00
|
|
|
///
|
2000-08-14 15:31:16 +00:00
|
|
|
int minh;
|
|
|
|
///
|
|
|
|
int minw;
|
2000-08-03 12:56:25 +00:00
|
|
|
/// Real GUI implementation.
|
|
|
|
FD_form_index * dialog_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|