~mc.../inkscape/inkscape

« back to all changes in this revision

Viewing changes to src/ui/dialog/xml-editor.cpp

  • Committer: mental
  • Date: 2006-01-16 02:36:01 UTC
  • Revision ID: mental@users.sourceforge.net-20060116023601-wkr0h7edl5veyudq
moving trunk for module inkscape

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * \brief XML Editor dialog
 
3
 *
 
4
 * Authors:
 
5
 *   Bryce W. Harrington <bryce@bryceharrington.org>
 
6
 *
 
7
 * Copyright (C) 2004, 2005 Authors
 
8
 *
 
9
 * Released under GNU GPL.  Read the file 'COPYING' for more information.
 
10
 */
 
11
 
 
12
#ifdef HAVE_CONFIG_H
 
13
# include <config.h>
 
14
#endif
 
15
 
 
16
#include "xml-editor.h"
 
17
#include "verbs.h"
 
18
 
 
19
namespace Inkscape {
 
20
namespace UI {
 
21
namespace Dialog {
 
22
 
 
23
XmlEditor::XmlEditor() 
 
24
    : Dialog ("dialogs.xml", SP_VERB_DIALOG_XML_EDITOR)
 
25
{
 
26
    // TODO:  Insert widgets
 
27
 
 
28
    show_all_children();
 
29
}
 
30
 
 
31
XmlEditor::~XmlEditor() 
 
32
{
 
33
}
 
34
 
 
35
} // namespace Dialog
 
36
} // namespace UI
 
37
} // namespace Inkscape
 
38
 
 
39
/*
 
40
  Local Variables:
 
41
  mode:c++
 
42
  c-file-style:"stroustrup"
 
43
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
44
  indent-tabs-mode:nil
 
45
  fill-column:99
 
46
  End:
 
47
*/
 
48
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :