lyx_mirror/src/frontends/kde/FormUrl.h
John Levon 0a736a817a Update to MVC. Ref,Toc and citation don't work at all currently.
Some bugs still need squashing too, but at least it compiles.

Also rename gui widgets consistently.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1873 a592a061-630c-0410-9148-cb99ea01b6c8
2001-04-02 15:12:55 +00:00

31 lines
460 B
C++

/**
* \file FormUrl.h
* Copyright 2001 the LyX Team
* Read the file COPYING
*
* \author John Levon
*/
#ifndef FORMURL_H
#define FORMURL_H
#include "KFormBase.h"
class ControlUrl;
class UrlDialog;
class FormUrl : public KFormBase<ControlUrl, UrlDialog> {
public:
FormUrl(ControlUrl & c);
private:
/// apply dialog
virtual void apply();
/// build dialog
virtual void build();
/// update dialog
virtual void update();
};
#endif // FORMURL_H