/* OpenIDA - Outil d'analyse de fichiers binaires
* gbufferline.c - représentation de fragments de texte en ligne
*
* Copyright (C) 2010 Cyrille Bagard
*
* This file is part of OpenIDA.
*
* OpenIDA is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* OpenIDA is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Foobar. If not, see .
*/
#include "gbufferline.h"
#include /* Récupération du langage par défaut ; FIXME ? */
#include /* FIXME : à virer */
/* Informations sur le contenu d'une colonne */
typedef struct _buffer_line_column
{
GBufferSegment **segments;
size_t count;
int max_width; /* Largeur max. de l'espace */
} buffer_line_column;
/* Réinitialise une colonne de ligne. */
static void reset_column(buffer_line_column *);
/* Fournit la quantité de pixels requise pour l'impression. */
static gint get_column_width(buffer_line_column *);
/* Ajoute un fragment de texte à une colonne de ligne. */
static void add_segment_to_column(buffer_line_column *, GBufferSegment *);
/* Imprime le contenu d'une colonne de ligne de texte. */
static void draw_segments_of_column(buffer_line_column *, GdkDrawable *, GdkGC *, gint, gint);
/* Représentation de fragments de texte en ligne (instance) */
struct _GBufferLine
{
GObject parent; /* A laisser en premier */
buffer_line_column columns[BLC_COUNT]; /* Répartition du texte */
BufferLineColumn merge_start; /* Début de la zone globale */
};
/* Représentation de fragments de texte en ligne (classe) */
struct _GBufferLineClass
{
GObjectClass parent; /* A laisser en premier */
PangoContext *context; /* Contexte graphique Pango */
PangoAttrList *attribs[RTT_COUNT]; /* Décorateurs pour tampons */
};
/* Procède à l'initialisation d'une classe de représentation. */
static void g_buffer_line_class_init(GBufferLineClass *);
/* Procède à l'initialisation d'une représentation de fragments. */
static void g_buffer_line_init(GBufferLine *);
/******************************************************************************
* *
* Paramètres : column = colonne de ligne à mettre à jour. *
* *
* Description : Réinitialise une colonne de ligne. *
* *
* Retour : - *
* *
* Remarques : - *
* *
******************************************************************************/
static void reset_column(buffer_line_column *column)
{
column->max_width = -1;
}
/******************************************************************************
* *
* Paramètres : column = colonne de ligne à consulter. *
* *
* Description : Fournit la quantité de pixels requise pour l'impression. *
* *
* Retour : Largeur requise par la colonne, en pixel. *
* *
* Remarques : - *
* *
******************************************************************************/
static gint get_column_width(buffer_line_column *column)
{
size_t i;
if (column->max_width == -1)
{
column->max_width = 0;
for (i = 0; i < column->count; i++)
column->max_width += g_buffer_segment_get_width(column->segments[i]);
}
return column->max_width;
}
/******************************************************************************
* *
* Paramètres : column = colonne de ligne à venir compléter. *
* segment = fragment de texte à ajouter à la colonne. *
* *
* Description : Ajoute un fragment de texte à une colonne de ligne. *
* *
* Retour : - *
* *
* Remarques : - *
* *
******************************************************************************/
static void add_segment_to_column(buffer_line_column *column, GBufferSegment *segment)
{
/* FIXME : à remplacer */
column->segments = (GBufferSegment **)realloc(column->segments, ++column->count * sizeof(GBufferSegment *));
column->segments[column->count - 1] = segment;
}
/******************************************************************************
* *
* Paramètres : column = colonne de ligne de texte à manipuler. *
* drawable = surface de rendu où travailler. *
* gc = contexte graphique à utiliser pour les pinceaux. *
* x_init = abscisse du point d'impression de départ. *
* y = ordonnée du point d'impression. *
* *
* Description : Imprime le contenu d'une colonne de ligne de texte. *
* *
* Retour : - *
* *
* Remarques : - *
* *
******************************************************************************/
static void draw_segments_of_column(buffer_line_column *column, GdkDrawable *drawable, GdkGC *gc, gint x_init, gint y)
{
gint x;
size_t i;
x = x_init;
for (i = 0; i < column->count; i++)
g_buffer_segment_draw(column->segments[i], drawable, gc, &x, y);
}
/* Détermine le type de la représentation de fragments de texte en ligne. */
G_DEFINE_TYPE(GBufferLine, g_buffer_line, G_TYPE_OBJECT);
/******************************************************************************
* *
* Paramètres : class = classe de composant GTK à initialiser. *
* *
* Description : Procède à l'initialisation d'une classe de représentation. *
* *
* Retour : - *
* *
* Remarques : - *
* *
******************************************************************************/
static void g_buffer_line_class_init(GBufferLineClass *class)
{
GdkScreen *screen; /* Ecran pour GDK */
PangoFontDescription *font_desc; /* Police de caractère */
PangoAttribute *attrib; /* Propriété de rendu */
/* Base des exportations */
screen = gdk_screen_get_default();
class->context = gdk_pango_context_get_for_screen(screen);
font_desc = pango_font_description_from_string("mono 10");
pango_context_set_font_description(class->context, font_desc);
pango_context_set_base_dir(class->context, PANGO_DIRECTION_LTR);
pango_context_set_language(class->context, gtk_get_default_language());
/* RTT_RAW */
class->attribs[RTT_RAW] = pango_attr_list_new();
attrib = pango_attr_foreground_new(0, 0, 0);
pango_attr_list_insert(class->attribs[RTT_RAW], attrib);
/* RTT_COMMENT */
class->attribs[RTT_COMMENT] = pango_attr_list_new();
attrib = pango_attr_foreground_new(14335, 45311, 23551);
pango_attr_list_insert(class->attribs[RTT_COMMENT], attrib);
/* RTT_RAW_CODE */
class->attribs[RTT_RAW_CODE] = pango_attr_list_new();
attrib = pango_attr_foreground_new(48895, 48895, 48895);
pango_attr_list_insert(class->attribs[RTT_RAW_CODE], attrib);
/* RTT_INSTRUCTION */
class->attribs[RTT_INSTRUCTION] = pango_attr_list_new();
attrib = pango_attr_foreground_new(0, 0, 0);
pango_attr_list_insert(class->attribs[RTT_INSTRUCTION], attrib);
/* RTT_IMMEDIATE */
class->attribs[RTT_IMMEDIATE] = pango_attr_list_new();
attrib = pango_attr_foreground_new(41215, 8447, 61695);
pango_attr_list_insert(class->attribs[RTT_IMMEDIATE], attrib);
/* RTT_REGISTER */
class->attribs[RTT_REGISTER] = pango_attr_list_new();
//attrib = pango_attr_foreground_new(23551, 23551, 51455);
attrib = pango_attr_foreground_new(16895, 16895, 53759);
pango_attr_list_insert(class->attribs[RTT_REGISTER], attrib);
/* RTT_PUNCT */
class->attribs[RTT_PUNCT] = pango_attr_list_new();
attrib = pango_attr_foreground_new(0, 0, 0);
pango_attr_list_insert(class->attribs[RTT_PUNCT], attrib);
attrib = pango_attr_weight_new(PANGO_WEIGHT_BOLD);
pango_attr_list_insert(class->attribs[RTT_PUNCT], attrib);
/* RTT_HOOK */
class->attribs[RTT_HOOK] = pango_attr_list_new();
attrib = pango_attr_foreground_new(0, 0, 0);
pango_attr_list_insert(class->attribs[RTT_HOOK], attrib);
attrib = pango_attr_weight_new(PANGO_WEIGHT_BOLD);
pango_attr_list_insert(class->attribs[RTT_HOOK], attrib);
/* RTT_SIGNS */
class->attribs[RTT_SIGNS] = pango_attr_list_new();
attrib = pango_attr_foreground_new(0, 0, 0);
pango_attr_list_insert(class->attribs[RTT_SIGNS], attrib);
attrib = pango_attr_weight_new(PANGO_WEIGHT_SEMIBOLD);
pango_attr_list_insert(class->attribs[RTT_SIGNS], attrib);
/* RTT_LTGT */
class->attribs[RTT_LTGT] = pango_attr_list_new();
/* RTT_SECTION */
class->attribs[RTT_SECTION] = pango_attr_list_new();
attrib = pango_attr_foreground_new(51200, 2560, 2560);
pango_attr_list_insert(class->attribs[RTT_SECTION], attrib);
/*
attrib = pango_attr_foreground_new(56832, 26880, 43008);
pango_attr_list_insert(class->attribs[RTT_SECTION], attrib);
attrib = pango_attr_weight_new(PANGO_WEIGHT_BOLD);
pango_attr_list_insert(class->attribs[RTT_SECTION], attrib);
*/
/* RTT_SEGMENT */
class->attribs[RTT_SEGMENT] = pango_attr_list_new();
/* RTT_STRING */
class->attribs[RTT_STRING] = pango_attr_list_new();
attrib = pango_attr_foreground_new(52224, 32256, 0);
pango_attr_list_insert(class->attribs[RTT_STRING], attrib);
/* RTT_VAR_NAME */
class->attribs[RTT_VAR_NAME] = pango_attr_list_new();
attrib = pango_attr_foreground_new(0, 0, 0);
pango_attr_list_insert(class->attribs[RTT_VAR_NAME], attrib);
/* RTT_KEY_WORD */
class->attribs[RTT_KEY_WORD] = pango_attr_list_new();
attrib = pango_attr_foreground_new(0, 0, 0);
pango_attr_list_insert(class->attribs[RTT_KEY_WORD], attrib);
}
/******************************************************************************
* *
* Paramètres : line = composant GTK à initialiser. *
* *
* Description : Procède à l'initialisation d'une représentation de fragments.*
* *
* Retour : - *
* *
* Remarques : - *
* *
******************************************************************************/
static void g_buffer_line_init(GBufferLine *line)
{
BufferLineColumn i; /* Boucle de parcours */
for (i = BLC_ADDRESS; i < BLC_COUNT; i++)
reset_column(&line->columns[i]);
line->merge_start = BLC_COUNT;
}
/******************************************************************************
* *
* Paramètres : - *
* *
* Description : Crée une nouvelle représentation de fragments de texte. *
* *
* Retour : Composant GTK créé. *
* *
* Remarques : - *
* *
******************************************************************************/
GBufferLine *g_buffer_line_new(void)
{
GBufferLine *result; /* Composant à retourner */
result = g_object_new(G_TYPE_BUFFER_LINE, NULL);
//result = g_new0(GBufferLine, 1);
return result;
}
/******************************************************************************
* *
* Paramètres : line = ligne à venir compléter. *
* index = index de la colonne visée par la procédure. *
* segment = fragment de texte à ajouter à la colonne. *
* *
* Description : Ajoute un fragment de texte à une colonne de ligne. *
* *
* Retour : - *
* *
* Remarques : - *
* *
******************************************************************************/
void g_buffer_line_add_segment(GBufferLine *line, BufferLineColumn index, GBufferSegment *segment)
{
add_segment_to_column(&line->columns[index], segment);
}
/******************************************************************************
* *
* Paramètres : line = ligne à venir compléter. *
* column = colonne de la ligne visée par l'insertion. *
* text = texte à insérer dans l'existant. *
* length = taille du texte à traiter. *
* type = type de décorateur à utiliser. *
* *
* Description : Ajoute du texte à formater dans une ligne donnée. *
* *
* Retour : - *
* *
* Remarques : - *
* *
******************************************************************************/
void g_buffer_line_insert_text(GBufferLine *line, BufferLineColumn column, const char *text, size_t length, RenderingTagType type)
{
GBufferLineClass *class; /* Stockage de briques de base */
GBufferSegment *segment; /* Portion de texte à ajouter */
class = G_BUFFER_LINE_GET_CLASS(line);
segment = g_buffer_segment_new(class->context, class->attribs[type], text, length);
g_buffer_line_add_segment(line, column, segment);
}
/******************************************************************************
* *
* Paramètres : line = ligne à venir compléter. *
* index = index de la colonne visée par la procédure. *
* *
* Description : Fournit la largeur requise pour une colonne de ligne donnée. *
* *
* Retour : Largeur en pixel requise. *
* *
* Remarques : - *
* *
******************************************************************************/
gint g_buffer_line_get_width(GBufferLine *line, BufferLineColumn index)
{
return get_column_width(&line->columns[index]);
}
/******************************************************************************
* *
* Paramètres : line = ligne à venir compléter. *
* start = début de la première (et unique) zone globale. *
* *
* Description : Définit la colonne à partir de laquelle la fusion opère. *
* *
* Retour : - *
* *
* Remarques : - *
* *
******************************************************************************/
void g_buffer_line_start_merge_at(GBufferLine *line, BufferLineColumn start)
{
line->merge_start = start;
}
/******************************************************************************
* *
* Paramètres : line = ligne de texte à manipuler. *
* drawable = surface de rendu où travailler. *
* gc = contexte graphique à utiliser pour les pinceaux.*
* max_widths = largeurs de colonne à respecter. *
* x_init = abscisse du point d'impression de départ. *
* y = ordonnée du point d'impression. *
* *
* Description : Imprime la ligne de texte représentée. *
* *
* Retour : - *
* *
* Remarques : - *
* *
******************************************************************************/
void g_buffer_line_draw(GBufferLine *line, GdkDrawable *drawable, GdkGC *gc, const gint max_widths[BLC_COUNT], gint x_init, gint y)
{
gint x; /* Point de départ d'impression*/
BufferLineColumn i; /* Boucle de parcours */
x = x_init;
for (i = BLC_ADDRESS; i < BLC_COUNT; i++)
{
/* TODO : skip if... */
draw_segments_of_column(&line->columns[i], drawable, gc, x, y);
if (i < line->merge_start)
x += max_widths[i] + 23;
}
}