Code

including typecheck trying to prevent #1432680
[inkscape.git] / src / ui / dialog / find.h
1 /**
2  * \brief Find 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  */
12 #ifndef INKSCAPE_UI_DIALOG_FIND_H
13 #define INKSCAPE_UI_DIALOG_FIND_H
15 #include <gtkmm/notebook.h>
16 #include <glibmm/i18n.h>
18 #include "dialog.h"
19 #include "ui/widget/notebook-page.h"
21 using namespace Inkscape::UI::Widget;
23 namespace Inkscape {
24 namespace UI {
25 namespace Dialog {
27 class Find : public Dialog {
28 public:
29     Find();
30     virtual ~Find();
32     static Find *create() { return new Find(); }
34 protected:
35     Gtk::Notebook  _notebook;
37     NotebookPage   _page_find;
39 private:
40     Find(Find const &d);
41     Find& operator=(Find const &d);
42 };
44 } // namespace Dialog
45 } // namespace UI
46 } // namespace Inkscape
48 #endif // INKSCAPE_UI_DIALOG_FIND_H
50 /*
51   Local Variables:
52   mode:c++
53   c-file-style:"stroustrup"
54   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
55   indent-tabs-mode:nil
56   fill-column:99
57   End:
58 */
59 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :