summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/entry.cpp
blob: 9ee6c9a081d5dd3f4bdb462ebf87298ed50d2794 (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
/*
 * Authors:
 *   Johan Engelen <goejendaagh@zonnet.nl>
 *
 * Copyright (C) 2006 Authors
 *
 * Released under GNU GPL.  Read the file 'COPYING' for more information
 */

#include "entry.h"

#include <gtkmm/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