]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/GUrl.h
Change glob() API to accept a dir parameter.
[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 namespace lyx {
18 namespace frontend {
19
20 class ControlCommand;
21
22 class GUrl : public GViewCB<ControlCommand, GViewGladeB> {
23 public:
24         GUrl(Dialog & parent);
25 private:
26         virtual void apply();
27         virtual void doBuild();
28         virtual void update();
29         void onEntryChanged();
30         Gtk::Entry * url_;
31         Gtk::Entry * name_;
32         Gtk::CheckButton * htmlType_;
33 };
34
35 } // namespace frontend
36 } // namespace lyx
37
38 #endif