]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/GUrl.h
Minipage is no more (long live the box inset)
[lyx.git] / src / frontends / gtk / GUrl.h
1 // -*- C++ -*-
2 /**
3  * \file GUrl.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Huang Ying
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #ifndef GURL_H
13 #define GURL_H
14
15 #include "GViewBase.h"
16
17 class ControlCommand;
18
19 class GUrl : public GViewCB<ControlCommand, GViewGladeB>
20 {
21 public:
22         GUrl(Dialog & parent);
23 private:
24         virtual void apply();
25         virtual void doBuild();
26         virtual void update();
27         void onEntryChanged();
28         Gtk::Entry * url_;
29         Gtk::Entry * name_;
30         Gtk::CheckButton * htmlType_;
31 };
32
33 #endif