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
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
#include <boost/smart_ptr.hpp>
|
|
|
|
|
2000-07-27 10:26:38 +00:00
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
2000-10-13 05:57:05 +00:00
|
|
|
#include "FormInset.h"
|
2001-03-15 13:37:04 +00:00
|
|
|
|
2000-08-01 17:33:32 +00:00
|
|
|
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:
|
|
|
|
///
|
|
|
|
FormUrl(LyXView *, Dialogs *);
|
|
|
|
private:
|
2001-03-15 13:37:04 +00:00
|
|
|
/// Pointer to the actual instantiation of the ButtonController.
|
|
|
|
virtual xformsBC & bc();
|
2000-10-20 09:50:09 +00:00
|
|
|
/// Connect signals etc. Set form's max size.
|
|
|
|
virtual void connect();
|
2000-07-27 08:55:59 +00:00
|
|
|
/// Build the dialog
|
2000-08-03 12:56:25 +00:00
|
|
|
virtual void build();
|
|
|
|
/// Update dialog before showing it
|
2000-10-24 13:13:59 +00:00
|
|
|
virtual void update();
|
2000-08-03 12:56:25 +00:00
|
|
|
/// Apply from dialog (modify or create inset)
|
|
|
|
virtual void apply();
|
2001-03-05 19:02:40 +00:00
|
|
|
/// Pointer to the actual instantiation of the xforms form
|
2000-10-03 05:53:25 +00:00
|
|
|
virtual FL_FORM * form() const;
|
2000-08-01 17:33:32 +00:00
|
|
|
///
|
2000-07-27 08:55:59 +00:00
|
|
|
FD_form_url * build_url();
|
|
|
|
/// Real GUI implementation.
|
2001-03-15 13:37:04 +00:00
|
|
|
boost::scoped_ptr<FD_form_url> dialog_;
|
|
|
|
/// The ButtonController
|
|
|
|
ButtonController<NoRepeatedApplyReadOnlyPolicy, xformsBC> bc_;
|
2000-07-27 08:55:59 +00:00
|
|
|
};
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
|
|
|
|
inline
|
|
|
|
xformsBC & FormUrl::bc()
|
|
|
|
{
|
|
|
|
return bc_;
|
|
|
|
}
|
2000-07-27 08:55:59 +00:00
|
|
|
#endif
|