Code

Translations. French translation minor update.
[inkscape.git] / src / extension / param / description.cpp
1 /*
2  * Copyright (C) 2005-2007 Authors:
3  *   Ted Gould <ted@gould.cx>
4  *   Johan Engelen <johan@shouraizou.nl> *
5  * Released under GNU GPL, read the file 'COPYING' for more information
6  */
8 #ifdef linux  // does the dollar sign need escaping when passed as string parameter?
9 # define ESCAPE_DOLLAR_COMMANDLINE
10 #endif
12 #ifdef HAVE_CONFIG_H
13 # include "config.h"
14 #endif
17 #include "description.h"
19 #include <gtkmm/adjustment.h>
20 #include <gtkmm/box.h>
21 #include <gtkmm/spinbutton.h>
22 #include <sstream>
23 #include <glibmm/i18n.h>
25 #include "xml/node.h"
26 #include "extension/extension.h"
28 namespace Inkscape {
29 namespace Extension {
32 /** \brief  Initialize the object, to do that, copy the data. */
33 ParamDescription::ParamDescription (const gchar * name, const gchar * guitext, const gchar * desc, const Parameter::_scope_t scope, bool gui_hidden, const gchar * gui_tip, Inkscape::Extension::Extension * ext, Inkscape::XML::Node * xml) :
34     Parameter(name, guitext, desc, scope, gui_hidden, gui_tip, ext), _value(NULL)
35 {
36     // printf("Building Description\n");
37     const char * defaultval = NULL;
38     if (sp_repr_children(xml) != NULL)
39         defaultval = sp_repr_children(xml)->content();
41     if (defaultval != NULL)
42         _value = g_strdup(defaultval);
43         
44     _context = xml->attribute("msgctxt");
45     
46     return;
47 }
49 /** \brief  Create a label for the description */
50 Gtk::Widget *
51 ParamDescription::get_widget (SPDocument * /*doc*/, Inkscape::XML::Node * /*node*/, sigc::signal<void> * /*changeSignal*/)
52 {
53         if (_gui_hidden) return NULL;
55     Glib::ustring newguitext;
57     if (_context != NULL) {
58         newguitext = g_dpgettext2(NULL, _context, _value);
59     } else {
60         newguitext = _(_value);
61     }
62     
63     Gtk::Label * label = Gtk::manage(new Gtk::Label(newguitext, Gtk::ALIGN_LEFT));
64     
65     label->set_line_wrap();
66     label->show();
68     Gtk::HBox * hbox = Gtk::manage(new Gtk::HBox(false, 4));
69     hbox->pack_start(*label, true, true, 12);
70     hbox->show();
72     return hbox;
73 }
75 }  /* namespace Extension */
76 }  /* namespace Inkscape */