lyx_mirror/src/frontends/qt2/QURL.h
John Levon 20f2690c6d ref dialog, more updates (BC stuff should now be OK along with the coming
controllers/ patch)


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2586 a592a061-630c-0410-9148-cb99ea01b6c8
2001-08-26 00:29:39 +00:00

37 lines
529 B
C++

/**
* \file QURL.h
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author John Levon
*/
#ifndef QURL_H
#define QURL_H
#include "Qt2Base.h"
class ControlUrl;
class QURLDialog;
class QURL :
public Qt2CB<ControlUrl, Qt2DB<QURLDialog> >
{
friend class QURLDialog;
public:
QURL(ControlUrl & c);
protected:
virtual bool isValid();
private:
/// apply dialog
virtual void apply();
/// build dialog
virtual void build_dialog();
/// update dialog
virtual void update_contents();
};
#endif // QURL_H