Code

Fixes for transient dialogs in win32.
[inkscape.git] / src / ui / widget / entry.cpp
1 /** \file
2  *
3  * \brief Helperclass for Gtk::Entry widgets
4  *
5  * Authors:
6  *   Johan Engelen <goejendaagh@zonnet.nl>
7  *
8  * Copyright (C) 2006 Authors
9  *
10  * Released under GNU GPL.  Read the file 'COPYING' for more information
11  */
13 #ifdef HAVE_CONFIG_H
14 # include <config.h>
15 #endif
17 #include "entry.h"
19 namespace Inkscape {
20 namespace UI {
21 namespace Widget {
23 Entry::Entry(  Glib::ustring const &label, Glib::ustring const &tooltip,
24                Glib::ustring const &suffix,
25                Glib::ustring const &icon,
26                bool mnemonic)
27     : Labelled(label, tooltip, new Gtk::Entry(), suffix, icon, mnemonic)
28 {    
29 }
30     
32 } // namespace Widget
33 } // namespace UI
34 } // namespace Inkscape