]> git.llucax.com Git - z.facultad/75.42/figuras.git/blobdiff - figura.cpp
Ya se setea bien el grueso del trazo y anda bien el cĂ­rculo.
[z.facultad/75.42/figuras.git] / figura.cpp
index c6ad541fa576ee3f12e9123e16fce7298e0b54ff..5ce3dec7ec0b6289a67d1c8335af1e63a37971f5 100644 (file)
@@ -49,9 +49,13 @@ Figura::~Figura(void) {
 #endif
 }
 
-void Figura::dibujar(GtkWidget* widget) const {
-    //out << "color(" << color << "), grosor(" << grosor
-    //   << "), nombre(" << nombre << "), centro(";
-    //centro.dibujar(out);
+void Figura::set_gc(GdkGC* gc) const {
+    gdk_gc_set_line_attributes(
+            gc,
+            grosor,
+            GDK_LINE_SOLID,
+            GDK_CAP_ROUND,
+            GDK_JOIN_ROUND);
+    //gdk_gc_set_foreground(gc, c);
 }