]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/GText.C
Move to gtk 2.4
[lyx.git] / src / frontends / gtk / GText.C
1 /**
2  * \file GText.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Huang Ying
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12 #include <gtkmm.h>
13 #include <libglademm.h>
14
15 #include "support/lstrings.h"
16 #include "ControlCommand.h"
17 #include "GText.h"
18 #include "ghelpers.h"
19 #include "IdSc.h"
20
21 using std::string;
22
23 namespace lyx {
24 namespace frontend {
25
26 GText::GText(Dialog & parent, string const & title, string const & label)
27         : GViewCB<ControlCommand, GViewGladeB>(parent, title),
28           label_(label), entry_(0)
29 {
30 }
31
32
33 void GText::apply()
34 {
35         string const contents = Glib::locale_from_utf8(entry_->get_text());
36         controller().params().setContents(contents);
37 }
38
39
40 void GText::update()
41 {
42         string const contents = support::trim(
43                 controller().params().getContents());
44         entry_->set_text(Glib::locale_to_utf8(contents));
45 }
46
47
48 void GText::doBuild()
49 {
50         string const gladeName = findGladeFile("text");
51         xml_ = Gnome::Glade::Xml::create(gladeName);
52         Gtk::Label * label;
53         Gtk::Button * restore;
54         Gtk::Button * cancel;
55         Gtk::Button * apply;
56         Gtk::Button * ok;
57         xml_->get_widget("Label", label);
58         xml_->get_widget("Text", entry_);
59         xml_->get_widget("Restore", restore);
60         xml_->get_widget("Cancel", cancel);
61         xml_->get_widget("Apply", apply);
62         xml_->get_widget("OK", ok);
63         label->set_text(Glib::locale_to_utf8(id_sc::id(label_)));
64         setOK(ok);
65         setApply(apply);
66         setCancel(cancel);
67         setRestore(restore);
68         bcview().addReadOnly(entry_);
69         entry_->signal_changed().connect(
70                 sigc::mem_fun(*this, &GText::onEntryChanged));
71 }
72
73
74 void GText::onEntryChanged()
75 {
76         bc().valid(!entry_->get_text().empty());
77 }
78
79 } // namespace frontend
80 } // namespace lyx