]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
fixes to make cppcheck happier.
authorc vw <dl1ycf@darc.de>
Wed, 15 Jan 2020 14:47:44 +0000 (15:47 +0100)
committerc vw <dl1ycf@darc.de>
Wed, 15 Jan 2020 14:47:44 +0000 (15:47 +0100)
meter.c
receiver.c

diff --git a/meter.c b/meter.c
index f0d5305a9f168a249b7740118a6044f97a21ab9b..01a60ebd4fa5c5ea5b542dd8ae47cdf04c714037 100644 (file)
--- a/meter.c
+++ b/meter.c
@@ -249,8 +249,8 @@ if(analog_meter) {
       double y;
       double angle;
       double radians;
-      double cx=(double)meter_width/2.0;
-      double cy=(double)meter_width/2.0;
+      double cx=(double)meter_width/2.0;  // cx == cy throughout
+      double cy=(double)meter_width/2.0;  // cx == cy throughout
       double radius=cy-20.0;
 
       cairo_set_line_width(cr, 1.0);
@@ -355,8 +355,8 @@ if(analog_meter) {
       double y;
       double angle;
       double radians;
-      double cx=(double)meter_width/2.0;
-      double cy=(double)meter_width/2.0;
+      double cx=(double)meter_width/2.0;  // cx == cy throughout
+      double cy=(double)meter_width/2.0;  // cx == cy throughout
       double radius=cy-20.0;
 
       cairo_set_line_width(cr, 1.0);
index 717f15eb811e22a749db381fefc6c06f55f7a634..fb8ce2563a00fafb416a8147c31f0958d1608825 100644 (file)
@@ -509,26 +509,28 @@ fprintf(stderr,"receiver_restore_state: id=%d\n",rx->id);
 
 void reconfigure_receiver(RECEIVER *rx,int height) {
   int y=0;
+  //
+  // myheight is the size of the waterfall or the panadapter
+  // which is the full or half of the height depending on whether BOTH
+  // are displayed
+  //
+  int myheight=(rx->display_panadapter && rx->display_waterfall) ? height/2 : height;
 
-  rx->height=height;
+  rx->height=height;  // total height
 
   if(rx->display_panadapter) {
-    int height=rx->height;
-    if(rx->display_waterfall) {
-      height=height/2;
-    }
     if(rx->panadapter==NULL) {
-fprintf(stderr,"reconfigure_receiver: panadapter_init: width:%d height:%d\n",rx->width,height);
-      rx_panadapter_init(rx, rx->width,height);
-      gtk_fixed_put(GTK_FIXED(rx->panel),rx->panadapter,0,y);
+fprintf(stderr,"reconfigure_receiver: panadapter_init: width:%d height:%d\n",rx->width,myheight);
+      rx_panadapter_init(rx, rx->width,myheight);
+      gtk_fixed_put(GTK_FIXED(rx->panel),rx->panadapter,0,y);  // y=0 here always
     } else {
        // set the size
-//fprintf(stderr,"reconfigure_receiver: panadapter set_size_request: width:%d height:%d\n",rx->width,height);
-      gtk_widget_set_size_request(rx->panadapter, rx->width, height);
+//fprintf(stderr,"reconfigure_receiver: panadapter set_size_request: width:%d height:%d\n",rx->width,myheight);
+      gtk_widget_set_size_request(rx->panadapter, rx->width, myheight);
       // move the current one
       gtk_fixed_move(GTK_FIXED(rx->panel),rx->panadapter,0,y);
     }
-    y+=height;
+    y+=myheight;
   } else {
     if(rx->panadapter!=NULL) {
       gtk_container_remove(GTK_CONTAINER(rx->panel),rx->panadapter);
@@ -538,18 +540,14 @@ fprintf(stderr,"reconfigure_receiver: panadapter_init: width:%d height:%d\n",rx-
   }
 
   if(rx->display_waterfall) {
-    int height=rx->height;
-    if(rx->display_panadapter) {
-      height=height/2;
-    }
     if(rx->waterfall==NULL) {
-fprintf(stderr,"reconfigure_receiver: waterfall_init: width:%d height:%d\n",rx->width,height);
-      waterfall_init(rx,rx->width,height);
-      gtk_fixed_put(GTK_FIXED(rx->panel),rx->waterfall,0,y);
+fprintf(stderr,"reconfigure_receiver: waterfall_init: width:%d height:%d\n",rx->width,myheight);
+      waterfall_init(rx,rx->width,myheight);
+      gtk_fixed_put(GTK_FIXED(rx->panel),rx->waterfall,0,y);  // y=0 if ONLY waterfall is present
     } else {
       // set the size
-fprintf(stderr,"reconfigure_receiver: waterfall set_size_request: width:%d height:%d\n",rx->width,height);
-      gtk_widget_set_size_request(rx->waterfall, rx->width, height);
+fprintf(stderr,"reconfigure_receiver: waterfall set_size_request: width:%d height:%d\n",rx->width,myheight);
+      gtk_widget_set_size_request(rx->waterfall, rx->width, myheight);
       // move the current one
       gtk_fixed_move(GTK_FIXED(rx->panel),rx->waterfall,0,y);
     }