plugin selector from doug; lots and lots of fixes from karsten
[ardour.git] / gtk2_ardour / imageframe.h
1 // -*- c++ -*-
2 #ifndef _LIBGNOMECANVASMM_IMAGEFRAME_H
3 #define _LIBGNOMECANVASMM_IMAGEFRAME_H
4
5 #include <glibmm.h>
6
7 /* $Id$ */
8
9 /* rect.h
10  * 
11  * Copyright (C) 1998 EMC Capital Management Inc.
12  * Developed by Havoc Pennington <hp@pobox.com>
13  *
14  * Copyright (C) 1999 The Gtk-- Development Team
15  *
16  * This library is free software; you can redistribute it and/or
17  * modify it under the terms of the GNU Library General Public
18  * License as published by the Free Software Foundation; either
19  * version 2 of the License, or (at your option) any later version.
20  *
21  * This library is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
24  * Library General Public License for more details.
25  *
26  * You should have received a copy of the GNU Library General Public
27  * License along with this library; if not, write to the Free
28  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29  */
30
31 #include <libgnomecanvasmm/item.h>
32 #include <libgnomecanvasmm/group.h>
33 #include <libgnomecanvasmm/shape.h>
34 #include "canvas-imageframe.h"
35
36
37 #ifndef DOXYGEN_SHOULD_SKIP_THIS
38 typedef struct _GnomeCanvasImageFrame GnomeCanvasImageFrame;
39 typedef struct _GnomeCanvasImageFrameClass GnomeCanvasImageFrameClass;
40 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
41
42
43 namespace Gnome
44 {
45
46 namespace Canvas
47 { class ImageFrame_Class; } // namespace Canvas
48
49 } // namespace Gnome
50 namespace Gnome
51 {
52
53 namespace Canvas
54 {
55
56 //class Group;
57
58
59 class ImageFrame : public Item
60 {
61   public:
62 #ifndef DOXYGEN_SHOULD_SKIP_THIS
63   typedef ImageFrame CppObjectType;
64   typedef ImageFrame_Class CppClassType;
65   typedef GnomeCanvasImageFrame BaseObjectType;
66   typedef GnomeCanvasImageFrameClass BaseClassType;
67 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
68
69   virtual ~ImageFrame();
70
71 #ifndef DOXYGEN_SHOULD_SKIP_THIS
72
73 private:
74   friend class ImageFrame_Class;
75   static CppClassType rect_class_;
76
77   // noncopyable
78   ImageFrame(const ImageFrame&);
79   ImageFrame& operator=(const ImageFrame&);
80
81 protected:
82   explicit ImageFrame(const Glib::ConstructParams& construct_params);
83   explicit ImageFrame(GnomeCanvasImageFrame* castitem);
84
85 #endif /* DOXYGEN_SHOULD_SKIP_THIS */
86
87 public:
88 #ifndef DOXYGEN_SHOULD_SKIP_THIS
89   static GType get_type()      G_GNUC_CONST;
90   static GType get_base_type() G_GNUC_CONST;
91 #endif
92
93   ///Provides access to the underlying C GtkObject.
94   GnomeCanvasImageFrame*       gobj()       { return reinterpret_cast<GnomeCanvasImageFrame*>(gobject_); }
95
96   ///Provides access to the underlying C GtkObject.
97   const GnomeCanvasImageFrame* gobj() const { return reinterpret_cast<GnomeCanvasImageFrame*>(gobject_); }
98
99
100 public:
101   //C++ methods used to invoke GTK+ virtual functions:
102
103 protected:
104   //GTK+ Virtual Functions (override these to change behaviour):
105
106   //Default Signal Handlers::
107
108
109 private:
110
111
112 public:
113     ImageFrame(Group& parentx, ArtPixBuf* pbuf, double x, double y, Gtk::AnchorType anchor, double w, double h);
114     explicit ImageFrame(Group& parent);
115
116     Glib::PropertyProxy<double> property_x();
117     Glib::PropertyProxy_ReadOnly<double> property_x() const;
118     Glib::PropertyProxy<double> property_y();
119     Glib::PropertyProxy_ReadOnly<double> property_y() const;
120     Glib::PropertyProxy<double> property_width();
121     Glib::PropertyProxy_ReadOnly<double> property_width() const;
122     Glib::PropertyProxy<double> property_drawwidth();
123     Glib::PropertyProxy_ReadOnly<double> property_drawwidth() const;
124     Glib::PropertyProxy<double> property_height();
125     Glib::PropertyProxy_ReadOnly<double> property_height() const;
126     Glib::PropertyProxy<Gtk::AnchorType> property_anchor() ;
127     Glib::PropertyProxy_ReadOnly<Gtk::AnchorType> property_anchor() const;
128
129 };
130
131 } /* namespace Canvas */
132 } /* namespace Gnome */
133
134 namespace Glib
135 {
136   /** @relates Gnome::Canvas::ImageFrame
137    * @param object The C instance
138    * @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
139    * @result A C++ instance that wraps this C instance.
140    */
141   Gnome::Canvas::ImageFrame* wrap(GnomeCanvasImageFrame* object, bool take_copy = false);
142 }
143 #endif /* _LIBGNOMECANVASMM_IMAGEFRAME_H */
144