summaryrefslogtreecommitdiff
path: root/src/analysis/line-int.h
diff options
context:
space:
mode:
authorCyrille Bagard <nocbos@gmail.com>2009-07-01 22:20:38 (GMT)
committerCyrille Bagard <nocbos@gmail.com>2009-07-01 22:20:38 (GMT)
commitb6893c7b85c34f7a3c65ac76bfd9d95b1c4ebf55 (patch)
tree5ce9e501c095e5906f6b1a349c82217d41b605f1 /src/analysis/line-int.h
parent176ad970db109523a3ac6d501b23608540d4a930 (diff)
Made the lines to have different rendering widths depending on the views.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@88 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src/analysis/line-int.h')
-rw-r--r--src/analysis/line-int.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/analysis/line-int.h b/src/analysis/line-int.h
index 59ef5f8..ea8bce0 100644
--- a/src/analysis/line-int.h
+++ b/src/analysis/line-int.h
@@ -36,7 +36,7 @@
typedef void (* get_bin_len_fc) (GRenderingLine *, off_t *);
/* Méthode de mise à jour d'une ligne de représentation. */
-typedef void (* refresh_markup_fc) (GRenderingLine *);
+typedef void (* refresh_markup_fc) (GRenderingLine *, LinesMainOwner);
/* Ligne de représentation générique (instance) */
@@ -57,10 +57,10 @@ struct _GRenderingLine
GRenderingLine *to; /* Eventuelle ligne visée */
InstructionLinkType link_type; /* Type de visée */
- PangoLayout *layout; /* Moteur de rendu du code/txt */
+ PangoLayout *layout[LMO_COUNT]; /* Moteur de rendu du code/txt */
get_bin_len_fc get_bin_len; /* Nbre d'octets représentés */
- off_t max_bin_len; /* Nombre global maximal */
+ off_t max_bin_len[LMO_COUNT]; /* Nombre global maximal */
refresh_markup_fc refresh_markup; /* Reconstruit la représentat° */