adg-adim.h   adg-adim.h 
skipping to change at line 97 skipping to change at line 97
const AdgPoint *org2); const AdgPoint *org2);
void adg_adim_set_org2_explicit (AdgADim *adim, void adg_adim_set_org2_explicit (AdgADim *adim,
gdouble x, gdouble x,
gdouble y); gdouble y);
void adg_adim_set_org2_from_pair (AdgADim *adim, void adg_adim_set_org2_from_pair (AdgADim *adim,
const AdgPair *org2); const AdgPair *org2);
void adg_adim_set_org2_from_model (AdgADim *adim, void adg_adim_set_org2_from_model (AdgADim *adim,
AdgModel *model, AdgModel *model,
const gchar *org2); const gchar *org2);
AdgPoint * adg_adim_get_org2 (AdgADim *adim); AdgPoint * adg_adim_get_org2 (AdgADim *adim);
void adg_adim_switch_extension1 (AdgADim *adim,
gboolean new_state)
;
gboolean adg_adim_has_extension1 (AdgADim *adim);
void adg_adim_switch_extension2 (AdgADim *adim,
gboolean new_state)
;
gboolean adg_adim_has_extension2 (AdgADim *adim);
G_END_DECLS G_END_DECLS
#endif /* __ADG_ADIM_H__ */ #endif /* __ADG_ADIM_H__ */
 End of changes. 1 change blocks. 
0 lines changed or deleted 8 lines changed or added


 adg-canvas.h   adg-canvas.h 
skipping to change at line 60 skipping to change at line 60
}; };
struct _AdgCanvasClass { struct _AdgCanvasClass {
/*< private >*/ /*< private >*/
AdgContainerClass parent_class; AdgContainerClass parent_class;
}; };
GType adg_canvas_get_type (void) G_GNUC_CONST; GType adg_canvas_get_type (void) G_GNUC_CONST;
AdgCanvas * adg_canvas_new (void); AdgCanvas * adg_canvas_new (void);
void adg_canvas_set_size (AdgCanvas *canvas,
const AdgPair *pair);
void adg_canvas_set_size_explicit (AdgCanvas *canvas,
gdouble x,
gdouble y);
const AdgPair * adg_canvas_get_size (AdgCanvas *canvas);
void adg_canvas_set_background_dress (AdgCanvas *canvas, void adg_canvas_set_background_dress (AdgCanvas *canvas,
AdgDress dress); AdgDress dress);
AdgDress adg_canvas_get_background_dress (AdgCanvas *canvas); AdgDress adg_canvas_get_background_dress (AdgCanvas *canvas);
void adg_canvas_set_frame_dress (AdgCanvas *canvas, void adg_canvas_set_frame_dress (AdgCanvas *canvas,
AdgDress dress); AdgDress dress);
AdgDress adg_canvas_get_frame_dress (AdgCanvas *canvas); AdgDress adg_canvas_get_frame_dress (AdgCanvas *canvas);
void adg_canvas_set_title_block (AdgCanvas *canvas, void adg_canvas_set_title_block (AdgCanvas *canvas,
AdgTitleBlock *title_bloc k); AdgTitleBlock *title_bloc k);
AdgTitleBlock * adg_canvas_get_title_block (AdgCanvas *canvas); AdgTitleBlock * adg_canvas_get_title_block (AdgCanvas *canvas);
void adg_canvas_set_top_margin (AdgCanvas *canvas, void adg_canvas_set_top_margin (AdgCanvas *canvas,
 End of changes. 1 change blocks. 
0 lines changed or deleted 6 lines changed or added


 adg-gtk-utils.h   adg-gtk-utils.h 
skipping to change at line 31 skipping to change at line 31
#error "Only <adg-gtk.h> can be included directly." #error "Only <adg-gtk.h> can be included directly."
#endif #endif
#ifndef __ADG_GTK_UTILS_H__ #ifndef __ADG_GTK_UTILS_H__
#define __ADG_GTK_UTILS_H__ #define __ADG_GTK_UTILS_H__
G_BEGIN_DECLS G_BEGIN_DECLS
#if GTK_CHECK_VERSION(2, 14, 0) #if GTK_CHECK_VERSION(2, 14, 0)
#else #else
GdkWindow * gtk_widget_get_window (GtkWidget *widget); GdkWindow * gtk_widget_get_window (GtkWidget *widget);
#endif #endif
void adg_gtk_window_hide_here (GtkWindow *window);
void adg_gtk_toggle_button_sensitivize
(GtkToggleButton*toggle_but
ton,
GtkWidget *widget);
void adg_canvas_set_paper (AdgCanvas *canvas,
const gchar *paper_name
,
GtkPageOrientation orienta
tion);
void adg_canvas_set_page_setup (AdgCanvas *canvas,
GtkPageSetup *page_setup
);
G_END_DECLS G_END_DECLS
#endif /* __ADG_GTK_UTILS_H__ */ #endif /* __ADG_GTK_UTILS_H__ */
 End of changes. 2 change blocks. 
1 lines changed or deleted 16 lines changed or added


 adg-model.h   adg-model.h 
skipping to change at line 71 skipping to change at line 71
void (*add_dependency) (AdgModel *model, void (*add_dependency) (AdgModel *model,
AdgEntity *entity); AdgEntity *entity);
void (*remove_dependency) (AdgModel *model, void (*remove_dependency) (AdgModel *model,
AdgEntity *entity); AdgEntity *entity);
const AdgPair * (*named_pair) (AdgModel *model, const AdgPair * (*named_pair) (AdgModel *model,
const gchar *name); const gchar *name);
void (*set_named_pair) (AdgModel *model, void (*set_named_pair) (AdgModel *model,
const gchar *name, const gchar *name,
const AdgPair *pair); const AdgPair *pair);
void (*clear) (AdgModel *model); void (*clear) (AdgModel *model);
void (*reset) (AdgModel *model);
void (*changed) (AdgModel *model); void (*changed) (AdgModel *model);
}; };
GType adg_model_get_type (void) G_GNUC_CONST; GType adg_model_get_type (void) G_GNUC_CONST;
void adg_model_add_dependency (AdgModel *model, void adg_model_add_dependency (AdgModel *model,
AdgEntity *entity); AdgEntity *entity);
void adg_model_remove_dependency (AdgModel *model, void adg_model_remove_dependency (AdgModel *model,
AdgEntity *entity); AdgEntity *entity);
const GSList * adg_model_get_dependencies (AdgModel *model); const GSList * adg_model_get_dependencies (AdgModel *model);
skipping to change at line 98 skipping to change at line 99
(AdgModel *model, (AdgModel *model,
const gchar *name, const gchar *name,
gdouble x, gdouble x,
gdouble y); gdouble y);
const AdgPair * adg_model_get_named_pair (AdgModel *model, const AdgPair * adg_model_get_named_pair (AdgModel *model,
const gchar *name); const gchar *name);
void adg_model_foreach_named_pair (AdgModel *model, void adg_model_foreach_named_pair (AdgModel *model,
AdgNamedPairFunc callback , AdgNamedPairFunc callback ,
gpointer user_dat a); gpointer user_dat a);
void adg_model_clear (AdgModel *model); void adg_model_clear (AdgModel *model);
void adg_model_reset (AdgModel *model);
void adg_model_changed (AdgModel *model); void adg_model_changed (AdgModel *model);
G_END_DECLS G_END_DECLS
#endif /* __ADG_MODEL_H__ */ #endif /* __ADG_MODEL_H__ */
 End of changes. 2 change blocks. 
0 lines changed or deleted 2 lines changed or added


 adg-pair.h   adg-pair.h 
skipping to change at line 37 skipping to change at line 37
#include <cpml.h> #include <cpml.h>
#include <glib-object.h> #include <glib-object.h>
G_BEGIN_DECLS G_BEGIN_DECLS
#define ADG_TYPE_PAIR (adg_pair_get_type()) #define ADG_TYPE_PAIR (adg_pair_get_type())
typedef CpmlPair AdgPair; typedef CpmlPair AdgPair;
GType adg_pair_get_type (void) G_GNUC_CONST; GType adg_pair_get_type (void) G_GNUC_CONST;
void adg_pair_copy (AdgPair *pair,
const AdgPair *src);
AdgPair * adg_pair_dup (const AdgPair *pair); AdgPair * adg_pair_dup (const AdgPair *pair);
gboolean adg_pair_equal (const AdgPair *pair1, gboolean adg_pair_equal (const AdgPair *pair1,
const AdgPair *pair2); const AdgPair *pair2);
G_END_DECLS G_END_DECLS
#endif /* __ADG_PAIR_H__ */ #endif /* __ADG_PAIR_H__ */
 End of changes. 1 change blocks. 
0 lines changed or deleted 2 lines changed or added


 adg-table.h   adg-table.h 
skipping to change at line 105 skipping to change at line 105
const gchar *title); const gchar *title);
AdgEntity * adg_table_cell_title (AdgTableCell *cell); AdgEntity * adg_table_cell_title (AdgTableCell *cell);
void adg_table_cell_set_value (AdgTableCell *cell, void adg_table_cell_set_value (AdgTableCell *cell,
AdgEntity *value); AdgEntity *value);
void adg_table_cell_set_text_value (AdgTableCell *cell, void adg_table_cell_set_text_value (AdgTableCell *cell,
const gchar *value); const gchar *value);
AdgEntity * adg_table_cell_value (AdgTableCell *cell); AdgEntity * adg_table_cell_value (AdgTableCell *cell);
void adg_table_cell_set_value_pos (AdgTableCell *cell, void adg_table_cell_set_value_pos (AdgTableCell *cell,
const AdgPair *from_facto r, const AdgPair *from_facto r,
const AdgPair *to_factor) ; const AdgPair *to_factor) ;
void adg_table_cell_set_value_pos_explicit
(AdgTableCell *cell,
gdouble from_x,
gdouble from_y,
gdouble to_x,
gdouble to_y);
void adg_table_cell_set_width (AdgTableCell *cell, void adg_table_cell_set_width (AdgTableCell *cell,
gdouble width); gdouble width);
gdouble adg_table_cell_get_width (AdgTableCell *cell); gdouble adg_table_cell_get_width (AdgTableCell *cell);
void adg_table_cell_switch_frame (AdgTableCell *cell, void adg_table_cell_switch_frame (AdgTableCell *cell,
gboolean new_state) ; gboolean new_state) ;
gboolean adg_table_cell_has_frame (AdgTableCell *cell); gboolean adg_table_cell_has_frame (AdgTableCell *cell);
const CpmlExtents * const CpmlExtents *
adg_table_cell_get_extents (AdgTableCell *cell); adg_table_cell_get_extents (AdgTableCell *cell);
G_END_DECLS G_END_DECLS
 End of changes. 1 change blocks. 
0 lines changed or deleted 6 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/