~vaifrax/inkscape/bugfix170049

« back to all changes in this revision

Viewing changes to src/ui/dialog/tracedialog.h

  • 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
#ifndef __TRACEDIALOG_H__
 
2
#define __TRACEDIALOG_H__
 
3
/*
 
4
 * A simple dialog for setting the parameters for autotracing a
 
5
 * bitmap <image> into an svg <path>
 
6
 *
 
7
 * Authors:
 
8
 *   Bob Jamison
 
9
 *   Other dudes from The Inkscape Organization
 
10
 *
 
11
 * Copyright (C) 2004, 2005 Authors
 
12
 *
 
13
 * Released under GNU GPL, read the file 'COPYING' for more information
 
14
 */
 
15
 
 
16
 
 
17
#include "verbs.h"
 
18
#include "dialog.h"
 
19
 
 
20
namespace Inkscape {
 
21
namespace UI {
 
22
namespace Dialog {
 
23
 
 
24
 
 
25
/**
 
26
 * A dialog that displays log messages
 
27
 */
 
28
class TraceDialog : public Dialog
 
29
{
 
30
 
 
31
public:
 
32
 
 
33
 
 
34
    /**
 
35
     * Constructor
 
36
     */
 
37
    TraceDialog() : Dialog ("dialogs.trace", SP_VERB_SELECTION_TRACE)
 
38
        {}
 
39
 
 
40
 
 
41
    /**
 
42
     * Factory method
 
43
     */
 
44
    static TraceDialog *create();
 
45
 
 
46
    /**
 
47
     * Destructor
 
48
     */
 
49
    virtual ~TraceDialog() {};
 
50
 
 
51
 
 
52
};
 
53
 
 
54
 
 
55
} //namespace Dialog
 
56
} //namespace UI
 
57
} //namespace Inkscape
 
58
 
 
59
 
 
60
 
 
61
 
 
62
#endif /* __TRACEDIALOG_H__ */
 
63