]> saetta.ns0.it Git - libgtkcalendarex/commitdiff
Showed the widget in the test window.
authorAndrea Zagli <azagli@libero.it>
Mon, 1 Nov 2010 09:06:12 +0000 (10:06 +0100)
committerAndrea Zagli <azagli@libero.it>
Mon, 1 Nov 2010 09:06:12 +0000 (10:06 +0100)
src/gtkcalex.c
src/gtkcalex.h
src/gtkcalexviewday.c
src/gtkcalexviewmonth.c
src/gtkcalexviewweek.c
tests/test.c
tests/test.ui

index 5f9ec39be2976eaf44125facea8082ee94d82d67..121993feb91f905819f77975f37d69ac200025d8 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include "gtkcalex.h"
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
 
 #include <goocanvas.h>
 
+#include "gtkcalex.h"
+
 enum
 {
        PROP_0,
@@ -30,6 +34,14 @@ enum
 static void gtk_calex_class_init (GtkCalExClass *klass);
 static void gtk_calex_init (GtkCalEx *gtk_calex);
 
+static void gtk_calex_add (GtkContainer *container,
+                           GtkWidget *widget);
+
+static void gtk_calex_forall (GtkContainer *container,
+                              gboolean include_internals,
+                              GtkCallback callback,
+                              gpointer callback_data);
+
 static void gtk_calex_set_property (GObject *object,
                                     guint property_id,
                                     const GValue *value,
@@ -39,34 +51,87 @@ static void gtk_calex_get_property (GObject *object,
                                     GValue *value,
                                     GParamSpec *pspec);
 
+static void gtk_calex_realize (GtkWidget *widget);
+static void gtk_calex_unrealize (GtkWidget *widget);
+static void gtk_calex_map (GtkWidget *widget);
+static void gtk_calex_size_request (GtkWidget *widget,
+                                    GtkRequisition *requisition);
+static void gtk_calex_size_allocate (GtkWidget *widget,
+                                     GtkAllocation *allocation);
+
 
 #define GTK_CALEX_GET_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE ((obj), TYPE_GTK_CALEX, GtkCalExPrivate))
 
 typedef struct _GtkCalExPrivate GtkCalExPrivate;
 struct _GtkCalExPrivate
        {
+               GdkWindow *event_window;
+
                GtkWidget *scrolledw; 
                GtkWidget *goo_canvas;
                GooCanvasItem *goo_canvas_root;
+
+               GtkCalExViewType view_type;
+               GDate *date;
        };
 
-G_DEFINE_TYPE (GtkCalEx, gtk_calex, G_TYPE_OBJECT)
+G_DEFINE_TYPE (GtkCalEx, gtk_calex, GTK_TYPE_BIN)
 
 static void
 gtk_calex_class_init (GtkCalExClass *klass)
 {
        GObjectClass *object_class = G_OBJECT_CLASS (klass);
+       GtkWidgetClass *widget_class = (GtkWidgetClass*) klass;
+       GtkContainerClass *container_class = (GtkContainerClass*) klass;
 
        g_type_class_add_private (object_class, sizeof (GtkCalExPrivate));
 
        object_class->set_property = gtk_calex_set_property;
        object_class->get_property = gtk_calex_get_property;
+
+       widget_class->realize = gtk_calex_realize;
+       widget_class->unrealize = gtk_calex_unrealize;
+       widget_class->map = gtk_calex_map;
+       widget_class->size_request = gtk_calex_size_request;
+       widget_class->size_allocate = gtk_calex_size_allocate;
+
+       container_class->add = gtk_calex_add;
+       container_class->forall = gtk_calex_forall;
 }
 
 static void
 gtk_calex_init (GtkCalEx *gtk_calex)
 {
+       GTimeVal tval;
+
        GtkCalExPrivate *priv = GTK_CALEX_GET_PRIVATE (gtk_calex);
+
+       GTK_WIDGET_SET_FLAGS (gtk_calex, GTK_CAN_FOCUS);
+       GTK_WIDGET_UNSET_FLAGS (gtk_calex, GTK_NO_WINDOW);
+
+       priv->scrolledw = gtk_scrolled_window_new (NULL, NULL);
+       gtk_container_add (GTK_CONTAINER (gtk_calex), priv->scrolledw);
+
+       priv->goo_canvas = goo_canvas_new ();
+       gtk_widget_set_size_request (priv->goo_canvas, 600, 450);
+       goo_canvas_set_bounds (GOO_CANVAS (priv->goo_canvas), 0, 0, 1000, 1000);
+       gtk_container_add (GTK_CONTAINER (priv->scrolledw), priv->goo_canvas);
+
+       priv->goo_canvas_root = goo_canvas_get_root_item (GOO_CANVAS (priv->goo_canvas));
+
+       goo_canvas_rect_new (priv->goo_canvas_root, 100, 100, 400, 400,
+                                     "line-width", 10.0,
+                                     "radius-x", 20.0,
+                                     "radius-y", 10.0,
+                                     "stroke-color", "yellow",
+                                     "fill-color", "red",
+                                     NULL);
+
+       priv->view_type = GTK_CALEX_VIEW_TYPE_DAY;
+
+       priv->date = g_date_new ();
+       g_get_current_time (&tval);
+       g_date_set_time_val (priv->date, &tval);
 }
 
 static void
@@ -116,23 +181,10 @@ gtk_calex_get_property (GObject *object, guint property_id, GValue *value, GPara
  *
  * Returns: the newly created #GtkCalEx object.
  */
-GtkCalEx
+GtkWidget
 *gtk_calex_new ()
 {
-       GtkWidget *viewport;
-
-       GtkCalEx *gtk_calex = GTK_CALEX (g_object_new (gtk_calex_get_type (), NULL));
-
-       GtkCalExPrivate *priv = GTK_CALEX_GET_PRIVATE (gtk_calex);
-
-       priv->scrolledw = gtk_scrolled_window_new (NULL, NULL);
-
-       viewport = gtk_viewport_new (NULL, NULL);
-       gtk_container_add (GTK_CONTAINER (priv->scrolledw), viewport);
-
-       priv->goo_canvas = goo_canvas_new ();
-
-       priv->goo_canvas_root = goo_canvas_get_root_item (GOO_CANVAS (priv->goo_canvas));
+       GtkWidget *gtk_calex = g_object_new (gtk_calex_get_type (), NULL);
 
        return gtk_calex;
 }
@@ -140,19 +192,212 @@ GtkCalEx
 GtkCalExViewType
 gtk_calex_get_view_type (GtkCalEx *calex)
 {
+       g_return_val_if_fail (IS_GTK_CALEX (calex), GTK_CALEX_VIEW_TYPE_DAY);
+
+       GtkCalExPrivate *priv = GTK_CALEX_GET_PRIVATE (calex);
+
+       return priv->view_type;
 }
 
 void
 gtk_calex_set_view_type (GtkCalEx *calex, GtkCalExViewType type)
 {
+       g_return_if_fail (IS_GTK_CALEX (calex));
+
+       GtkCalExPrivate *priv = GTK_CALEX_GET_PRIVATE (calex);
+
+       priv->view_type = type;
 }
 
 GDate
 *gtk_calex_get_date (GtkCalEx *calex)
 {
+       g_return_val_if_fail (IS_GTK_CALEX (calex), GTK_CALEX_VIEW_TYPE_DAY);
+
+       GtkCalExPrivate *priv = GTK_CALEX_GET_PRIVATE (calex);
+
+       return g_memdup (priv->date, sizeof (GDate));
 }
 
 void
 gtk_calex_set_date (GtkCalEx *calex, GDate *date)
 {
+       g_return_if_fail (IS_GTK_CALEX (calex));
+
+       GtkCalExPrivate *priv = GTK_CALEX_GET_PRIVATE (calex);
+
+       priv->date = g_memdup (date, sizeof (GDate));
+}
+
+static void
+gtk_calex_add (GtkContainer *container,
+               GtkWidget *child)
+{
+       GtkCalEx *gtkcalex;
+       GtkBin *bin;
+
+       bin = GTK_BIN (container);
+       g_return_if_fail (bin->child == NULL);
+
+       gtkcalex = GTK_CALEX (container);
+
+       bin->child = child;
+       gtk_widget_set_parent (child, GTK_WIDGET (bin));
+}
+
+static void
+gtk_calex_forall (GtkContainer *container,
+                gboolean include_internals,
+                GtkCallback callback,
+                gpointer callback_data)
+{
+       g_return_if_fail (IS_GTK_CALEX (container));
+       g_return_if_fail (callback != NULL);
+
+       GTK_CONTAINER_CLASS (gtk_calex_parent_class)->forall (container,
+                            include_internals,
+                            callback,
+                            callback_data);
+}
+
+static void
+gtk_calex_realize (GtkWidget *widget)
+{
+       GdkWindowAttr attributes;
+       gint attributes_mask;
+
+       GtkCalExPrivate *priv;
+
+       GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
+
+       priv = GTK_CALEX_GET_PRIVATE (GTK_CALEX (widget));
+
+       attributes.x = widget->allocation.x;
+       attributes.y = widget->allocation.y;
+       attributes.width = widget->allocation.width;
+       attributes.height = widget->allocation.height;
+       attributes.window_type = GDK_WINDOW_CHILD;
+       attributes.wclass = GDK_INPUT_OUTPUT;
+       attributes.visual = gtk_widget_get_visual (widget);
+       attributes.colormap = gtk_widget_get_colormap (widget);
+       attributes.event_mask = gtk_widget_get_events (widget)
+                               | GDK_BUTTON_MOTION_MASK
+                               | GDK_BUTTON_PRESS_MASK
+                               | GDK_BUTTON_RELEASE_MASK
+                               | GDK_POINTER_MOTION_MASK
+                               | GDK_POINTER_MOTION_HINT_MASK;
+
+       attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
+
+       widget->window = gdk_window_new (gtk_widget_get_parent_window (widget),
+                                        &attributes, attributes_mask);
+       gdk_window_set_user_data (widget->window, widget);
+
+       attributes.wclass = GDK_INPUT_ONLY;
+       attributes_mask = 0;
+
+       priv->event_window = gdk_window_new (widget->window,
+                                            &attributes, attributes_mask);
+       gdk_window_set_user_data (priv->event_window, widget);
+
+       widget->style = gtk_style_attach (widget->style, widget->window);
+
+       gdk_window_set_back_pixmap (widget->window, NULL, FALSE);
+}
+
+static void
+gtk_calex_unrealize (GtkWidget *widget)
+{
+       GtkCalExPrivate *priv;
+
+       priv = GTK_CALEX_GET_PRIVATE (widget);
+
+       if (priv->event_window != NULL)
+               {
+                       gdk_window_set_user_data (priv->event_window, NULL);
+                       gdk_window_destroy (priv->event_window);
+                       priv->event_window = NULL;
+               }
+
+       GTK_WIDGET_CLASS (gtk_calex_parent_class)->unrealize (widget);
+}
+
+static void 
+gtk_calex_map (GtkWidget *widget)
+{
+       GtkCalExPrivate *priv;
+
+       g_return_if_fail (IS_GTK_CALEX (widget));
+
+       priv = GTK_CALEX_GET_PRIVATE (GTK_CALEX (widget));
+
+       GTK_WIDGET_SET_FLAGS (widget, GTK_MAPPED);
+
+       GTK_WIDGET_CLASS (gtk_calex_parent_class)->map (widget);
+
+       gdk_window_show (priv->event_window);
+       gdk_window_show (widget->window);
+}
+
+static void
+gtk_calex_size_request (GtkWidget *widget,
+                      GtkRequisition *requisition)
+{
+       GtkCalEx *gtkcalex;
+       GtkBin *bin;
+       GtkRequisition child_requisition;
+
+       g_return_if_fail (IS_GTK_CALEX (widget));
+       g_return_if_fail (requisition != NULL);
+
+       gtkcalex = GTK_CALEX (widget);
+       bin = GTK_BIN (gtkcalex);
+
+       requisition->width = 0;
+       requisition->height = 0;
+
+       if (bin->child && GTK_WIDGET_VISIBLE (bin->child))
+               {
+                       gtk_widget_size_request (bin->child, &child_requisition);
+                       requisition->width += child_requisition.width;
+                       requisition->height += child_requisition.height;
+               }
+
+       requisition->width += GTK_CONTAINER (widget)->border_width * 2;
+       requisition->height += GTK_CONTAINER (widget)->border_width * 2;
+}
+
+static void
+gtk_calex_size_allocate (GtkWidget *widget,
+                       GtkAllocation *allocation)
+{
+       GtkCalEx *gtkcalex;
+       GtkCalExPrivate *priv;
+       GtkBin *bin;
+       GtkAllocation relative_allocation;
+       GtkAllocation child_allocation;
+
+       g_return_if_fail (IS_GTK_CALEX (widget));
+       g_return_if_fail (allocation != NULL);
+
+       gtkcalex = GTK_CALEX (widget);
+       bin = GTK_BIN (gtkcalex);
+
+       priv = GTK_CALEX_GET_PRIVATE (gtkcalex);
+
+       widget->allocation = *allocation;
+
+       relative_allocation.x = GTK_CONTAINER (widget)->border_width;
+       relative_allocation.y = GTK_CONTAINER (widget)->border_width;
+       relative_allocation.width = MAX (1, (gint)widget->allocation.width - relative_allocation.x * 2);
+       relative_allocation.height = MAX (1, (gint)widget->allocation.height - relative_allocation.y * 2);
+
+       if (bin->child && GTK_WIDGET_VISIBLE (bin->child))
+               {
+                       child_allocation.x = relative_allocation.x + allocation->x;
+                       child_allocation.y = relative_allocation.y + allocation->y;
+                       child_allocation.width = relative_allocation.width;
+                       child_allocation.height = relative_allocation.height;
+                       gtk_widget_size_allocate (bin->child, &child_allocation);
+               }
 }
index 498a1ac1047d22e4bdfad14814c04a1daa1304c0..b1fcb49ac495fd823a6a90369829d4242b4e5ace 100644 (file)
@@ -39,18 +39,18 @@ typedef struct _GtkCalExClass GtkCalExClass;
 
 struct _GtkCalEx
        {
-               GObject parent;
+               GtkBin parent;
        };
 
 struct _GtkCalExClass
        {
-               GObjectClass parent_class;
+               GtkBinClass parent_class;
        };
 
 GType gtk_calex_get_type (void) G_GNUC_CONST;
 
 
-GtkCalEx *gtk_calex_new (void);
+GtkWidget *gtk_calex_new (void);
 
 typedef enum {
        GTK_CALEX_VIEW_TYPE_DAY,
index 6c7dee312e1a1bbdfdca250d897ff7fb3fa7f7bf..0bb6bd609ad966e457b42382dfcc4dcf6b110247 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include "gtkcalexviewday.h"
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
 
 #include <goocanvas.h>
 
+#include "gtkcalexviewday.h"
+
 enum
 {
        PROP_0
index 7fe290b5b2bb57c7224e21b1ee8bdc0cf354f0fb..35a2db9007c286ba30194f167ec3ce67c294eddf 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include "gtkcalexviewmonth.h"
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
 
 #include <goocanvas.h>
 
+#include "gtkcalexviewmonth.h"
+
 enum
 {
        PROP_0
index 67a793a82226ae3b04188cf0fbf140d77b425840..bf3c4e61acebc135c8846727db4380753e114dd5 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
-#include "gtkcalexviewweek.h"
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
 
 #include <goocanvas.h>
 
+#include "gtkcalexviewweek.h"
+
 enum
 {
        PROP_0
index 211f551a6edad58500082e57652017dfd08a0884..2c46ef739205f00c694fccd530b1961bb70feab6 100644 (file)
@@ -26,6 +26,7 @@ main (int argc, char **argv)
        GtkBuilder *gtkbuilder;
        GError *error;
        GtkWidget *w;
+       GtkWidget *calex;
 
        gtk_init (&argc, &argv);
 
@@ -39,6 +40,9 @@ main (int argc, char **argv)
 
        w = GTK_WIDGET (gtk_builder_get_object (gtkbuilder, "window1"));
 
+       calex = gtk_calex_new ();
+       gtk_container_add (GTK_CONTAINER (w), calex);
+
        gtk_builder_connect_signals (gtkbuilder, NULL);
 
        gtk_widget_show_all (w);
index a6ba3ad4b21770da304f340faa8b0df33021e3a1..bfa2d202f8fd8949aacb0f0d0a12809795a5f5f6 100644 (file)
@@ -3,8 +3,10 @@
   <requires lib="gtk+" version="2.16"/>
   <!-- interface-naming-policy project-wide -->
   <object class="GtkWindow" id="window1">
+    <property name="window_position">center</property>
     <property name="default_width">550</property>
     <property name="default_height">400</property>
+    <property name="destroy_with_parent">True</property>
     <signal name="delete_event" handler="gtk_main_quit"/>
     <child>
       <placeholder/>