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 17:33:32 +00:00
|
|
|
class FormUrl : public FormCommand, public noncopyable {
|
2000-07-27 08:55:59 +00:00
|
|
|
public:
|
|
|
|
/**@name Constructors and Destructors */
|
|
|
|
//@{
|
|
|
|
///
|
|
|
|
FormUrl(LyXView *, Dialogs *);
|
|
|
|
///
|
|
|
|
~FormUrl();
|
|
|
|
//@}
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**@name Slot Methods */
|
|
|
|
//@{
|
|
|
|
///
|
2000-08-01 17:33:32 +00:00
|
|
|
virtual void update();
|
2000-07-27 08:55:59 +00:00
|
|
|
/// Apply from dialog
|
|
|
|
void apply();
|
2000-08-01 17:33:32 +00:00
|
|
|
///
|
|
|
|
virtual void input( long ) {};
|
2000-07-27 08:55:59 +00:00
|
|
|
/// Build the dialog
|
|
|
|
void build();
|
|
|
|
///
|
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();
|
|
|
|
//@}
|
|
|
|
|
|
|
|
/// Real GUI implementation.
|
|
|
|
FD_form_url * dialog_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|