Code

Unit test cleanup.
[inkscape.git] / src / helper / window.h
1 #ifndef __SP_WINDOW_H__
2 #define __SP_WINDOW_H__
4 /*
5  * Generic window implementation
6  *
7  * Author:
8  *   Lauris Kaplinski <lauris@kaplinski.com>
9  *
10  * This code is in public domain
11  */
13 #include <gtk/gtkwidget.h>
14 #include <gtkmm/window.h>
16 /*
17  * This function is depreciated. Use Inkscape::UI::window_new instead.
18  */
19 GtkWidget *sp_window_new (const gchar *title, unsigned int resizeable);
21 namespace Inkscape {
22 namespace UI {
24 Gtk::Window *window_new (const gchar *title, unsigned int resizeable);
26 }
27 }
29 #endif
31 /*
32   Local Variables:
33   mode:c++
34   c-file-style:"stroustrup"
35   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
36   indent-tabs-mode:nil
37   fill-column:99
38   End:
39 */
40 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :