]> git.lyx.org Git - lyx.git/blob - src/frontends/gtk/GText.C
Search the src tree for glade files, so preventing an unnecessary crash
[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
24 GText::GText(Dialog & parent, string const & title, string const & label)
25         : GViewCB<ControlCommand, GViewGladeB>(parent, title),
26           label_(label), entry_(0)
27 {
28 }
29
30 void GText::apply()
31 {
32         string const contents = Glib::locale_from_utf8(entry_->get_text());
33         controller().params().setContents(contents);
34 }
35
36 void GText::update()
37 {
38         string const contents = lyx::support::trim(
39                 controller().params().getContents());
40         entry_->set_text(Glib::locale_to_utf8(contents));
41 }
42
43 void GText::doBuild()
44 {
45         string const gladeName = findGladeFile("text");
46         xml_ = Gnome::Glade::Xml::create(gladeName);
47         Gtk::Label * label;
48         Gtk::Button * restore;
49         Gtk::Button * cancel;
50         Gtk::Button * apply;
51         Gtk::Button * ok;
52         xml_->get_widget("Label", label);
53         xml_->get_widget("Text", entry_);
54         xml_->get_widget("Restore", restore);
55         xml_->get_widget("Cancel", cancel);
56         xml_->get_widget("Apply", apply);
57         xml_->get_widget("OK", ok);
58         label->set_text(Glib::locale_to_utf8(id_sc::id(label_)));
59         setOK(ok);
60         setApply(apply);
61         setCancel(cancel);
62         setRestore(restore);
63         bcview().addReadOnly(entry_);
64         entry_->signal_changed().connect(
65                 SigC::slot(*this, &GText::onEntryChanged));
66 }
67
68 void GText::onEntryChanged()
69 {
70         bc().valid(!entry_->get_text().empty());
71 }