2000-07-27 08:55:59 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright 2000 The LyX Team.
|
|
|
|
*
|
|
|
|
* ======================================================
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FORMURL_H
|
|
|
|
#define FORMURL_H
|
|
|
|
|
2000-07-27 10:26:38 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2000-08-01 17:33:32 +00:00
|
|
|
#include "FormCommand.h"
|
|
|
|
struct FD_form_url;
|
|
|
|
|
2000-07-27 08:55:59 +00:00
|
|
|
/** This class provides an XForms implementation of the FormUrl Dialog.
|
|
|
|
*/
|
2000-08-01 18:11:14 +00:00
|
|
|
class FormUrl : public FormCommand {
|
2000-07-27 08:55:59 +00:00
|
|
|
public:
|
|
|
|
/**@name Constructors and Destructors */
|
|
|
|
//@{
|
|
|
|
///
|
|
|
|
FormUrl(LyXView *, Dialogs *);
|
|
|
|
///
|
|
|
|
~FormUrl();
|
|
|
|
//@}
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// Build the dialog
|
2000-08-03 12:56:25 +00:00
|
|
|
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
|
2000-08-01 17:33:32 +00:00
|
|
|
virtual FL_FORM * const form() const;
|
|
|
|
///
|
2000-07-27 08:55:59 +00:00
|
|
|
FD_form_url * build_url();
|
|
|
|
|
2000-08-08 13:55:26 +00:00
|
|
|
///
|
|
|
|
int minh, minw;
|
2000-07-27 08:55:59 +00:00
|
|
|
/// Real GUI implementation.
|
|
|
|
FD_form_url * dialog_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|