|  |  |  | libccc Reference Manual |  | 
|---|---|---|---|---|
#include <ccc.h>
                    CcViewWidget;
                    CcViewWidgetClass;
GtkWidget*          cc_view_widget_new                  (void);
GtkWidget*          cc_view_widget_new_root             (CcItem *root);
gboolean            cc_view_widget_get_center_view      (CcViewWidget const*self);
void                cc_view_widget_set_center_view      (CcViewWidget *self,
                                                         gboolean center_view);
  GObject
   +----GInitiallyUnowned
         +----GtkObject
               +----GtkWidget
                     +----GtkDrawingArea
                           +----CcViewWidget
typedef struct {
	GtkDrawingAreaClass base_class;
	/* signals */
	void (*set_scroll_adjustments) (CcViewWidget * self,
					GtkAdjustment* hadjustment,
					GtkAdjustment* vadjustment);
} CcViewWidgetClass;
GtkWidget* cc_view_widget_new (void);
Create a new CcViewWidget.
| Returns : | a newly created CcViewWidget which can be used to display a canvas. | 
GtkWidget* cc_view_widget_new_root (CcItem *root);
Create a new CcViewWidget and set root to be the model.
| root: | a CcItem, the model of the new view | 
| Returns : | a new CcViewWidget with rootas the model. | 
gboolean cc_view_widget_get_center_view (CcViewWidget const*self);
Find out whether the view is centered.
| self: | a CcViewWidget | 
| Returns : | TRUEifselfdisplays its model centered once there's more space
available than the model requires. | 
void cc_view_widget_set_center_view (CcViewWidget *self, gboolean center_view);
Specify whether the model should be displayed centered if there is as much space.
| self: | a CcViewWidget | 
| center_view: | a gboolean | 
void user_function (CcViewWidget *hadjustment, GtkAdjustment *vadjustment, GtkAdjustment *arg2, gpointer user_data) : Run Last
This signal gets emitted when the widget is being added to a scrollable container.
| hadjustment: | a GtkAdjustment | 
| vadjustment: | a GtkAdjustment | 
| user_data: | user data set when the signal handler was connected. |