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