~valavanisalex/ubuntu/oneiric/inkscape/inkscape_0.48.1-2ubuntu4

« back to all changes in this revision

Viewing changes to src/ui/dialog/tree-editor.h

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook, Ted Gould, Kees Cook
  • Date: 2009-06-24 14:00:43 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624140043-07stp20mry48hqup
Tags: 0.47~pre0-0ubuntu1
* New upstream release

[ Ted Gould ]
* debian/control: Adding libgsl0 and removing version specifics on boost

[ Kees Cook ]
* debian/watch: updated to run uupdate and mangle pre-release versions.
* Dropped patches that have been taken upstream:
  - 01_mips
  - 02-poppler-0.8.3
  - 03-chinese-inkscape
  - 05_fix_latex_patch
  - 06_gcc-4.4
  - 07_cdr2svg
  - 08_skip-bad-utf-on-pdf-import
  - 09_gtk-clist
  - 10_belarussian
  - 11_libpng
  - 12_desktop
  - 13_slider
  - 100_svg_import_improvements
  - 102_sp_pattern_painter_free
  - 103_bitmap_type_print

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * \brief  Tree Editor - Abstract base class for dialogs that allow
3
 
 *         editing properties of tree-organized data.
4
 
 *
5
 
 * Authors:
6
 
 *   Bryce W. Harrington <bryce@bryceharrington.org>
7
 
 *
8
 
 * Copyright (C) 2004, 2005 Authors
9
 
 *
10
 
 * Released under GNU GPL.  Read the file 'COPYING' for more information.
11
 
 */
12
 
 
13
 
#ifndef INKSCAPE_DIALOG_TREE_EDITOR_H
14
 
#define INKSCAPE_DIALOG_TREE_EDITOR_H
15
 
 
16
 
#include <gtkmm/box.h>
17
 
#include <gtkmm/scrolledwindow.h>
18
 
#include <gtkmm/treeview.h>
19
 
#include <glibmm/i18n.h>
20
 
 
21
 
#include "dialog.h"
22
 
 
23
 
namespace Inkscape {
24
 
namespace UI {
25
 
namespace Dialog {
26
 
 
27
 
class TreeEditor : public Dialog {
28
 
public:
29
 
    TreeEditor(Behavior::BehaviorFactory behavior_factory);
30
 
    virtual ~TreeEditor();
31
 
 
32
 
protected:
33
 
 
34
 
    Gtk::HBox             _hbox;
35
 
    Gtk::ScrolledWindow   _leftWin;
36
 
    Gtk::TreeView         _leftTree;
37
 
 
38
 
    // TODO:  Add the tree model
39
 
    // Glib::RefPtr<ExampleTreeModel> _refTreeModel;
40
 
 
41
 
private:
42
 
    TreeEditor(TreeEditor const &d);
43
 
    TreeEditor& operator=(TreeEditor const &d);
44
 
};
45
 
 
46
 
} // namespace Dialog
47
 
} // namespace UI
48
 
} // namespace Inkscape
49
 
 
50
 
#endif // INKSCAPE_UI_DIALOG_TREE_EDITOR_H
51
 
 
52
 
/*
53
 
  Local Variables:
54
 
  mode:c++
55
 
  c-file-style:"stroustrup"
56
 
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
57
 
  indent-tabs-mode:nil
58
 
  fill-column:99
59
 
  End:
60
 
*/
61
 
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :