]> git.llucax.com Git - z.facultad/75.42/figuras.git/blob - callbacks.cpp
Se agregan mas tests y se mejora la salida de error.
[z.facultad/75.42/figuras.git] / callbacks.cpp
1 /* vim: set et sts=4 sw=4 fdm=indent fdn=1 fo+=t tw=80:
2  *
3  * Taller de Programación (75.42).
4  *
5  * Ejercicio Número 5:
6  * Graficador de figuras.
7  *
8  * Copyleft 2003 - Leandro Lucarella <llucare@fi.uba.ar>
9  * Puede copiar, modificar y distribuir este programa bajo los términos de
10  * la licencia GPL (http://www.gnu.org/).
11  *
12  * Creado: mié oct  1 23:24:12 ART 2003
13  *
14  * $Id$
15  */
16
17 #include "dibujo.h"
18 #include "linea.h"
19 #include "cuadrado.h"
20 #include "rectangulo.h"
21 #include "circulo.h"
22 #include "callbacks.h"
23 #include "interface.h"
24 #include <gtk/gtk.h>
25
26 #ifdef DEBUG
27 #   include <iostream>
28 #endif
29
30 gboolean on_drawingarea_expose_event(GtkWidget *widget, GdkEventExpose *event,
31         gpointer user_data) {
32 #ifdef DEBUG
33     std::cerr << "En expose_event." << std::endl;
34 #endif
35     // Dibujo.
36     static_cast<Dibujo*>(user_data)->dibujar(widget);
37     return FALSE;
38 }
39
40 void on_button_borrar_clicked(GtkButton *button, gpointer user_data) {
41 #ifdef DEBUG
42     std::cerr << "En borrar event." << std::endl;
43 #endif
44     // Borro dibujo.
45     static_cast<Dibujo*>(user_data)->borrar_todo();
46 }
47
48 void on_button_graficar_clicked(GtkButton *button, gpointer user_data) {
49 #ifdef DEBUG
50     std::cerr << "En graficar event." << std::endl;
51 #endif
52     // Indica que hay que redibujar el widget user_data, que será el área de
53     // dibujo.
54     gtk_widget_queue_draw(GTK_WIDGET(user_data));
55 }
56
57 void on_button_salir_clicked(GtkButton *button, gpointer user_data) {
58 #ifdef DEBUG
59     std::cerr << "En salir event." << std::endl;
60 #endif
61     // Termina el loop principal.
62     gtk_main_quit();
63 }
64
65 void on_button_agregar_clicked(GtkButton *button, gpointer user_data) {
66 #ifdef DEBUG
67     std::cerr << "En agregar event." << std::endl;
68 #endif
69     // FIXME: hacer una estructura para guardar todos los punteros a los datos
70     // que necesito: radio buttons, y todas las entradas, más la lista enlazada,
71     // más, tal vez, el drawingarea.
72     Figura* figura = new Circulo(1, 1, Punto(50, 50), "Lala", 50);
73     static_cast<Dibujo*>(user_data)->agregar_figura(figura);
74     static_cast<Dibujo*>(user_data)->agregar_figura(
75             new Linea(1, 2, Punto(50, 50), "", Punto(0, 0), Punto(100, 50)));
76     static_cast<Dibujo*>(user_data)->agregar_figura(
77             new Rectangulo(2, 1, Punto(100, 100), "", 20, 80));
78     static_cast<Dibujo*>(user_data)->agregar_figura(
79             new Cuadrado(5, 5, Punto(150, 120), "", 100));
80 }
81
82 gboolean on_window_delete_event(GtkWidget *widget, GdkEvent *event,
83         gpointer user_data) {
84 #ifdef DEBUG
85     std::cerr << "En delete_event." << std::endl;
86 #endif
87     // Termina el loop principal.
88     gtk_main_quit();
89     // Al devolver FALSE se indica que se debe ocultar la ventana FIXME.
90     return FALSE;
91 }
92