]> git.webhop.me Git - lcd4linux.git/commitdiff
ported r837 from volker_dev
authormichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Wed, 31 Dec 2008 06:28:11 +0000 (06:28 +0000)
committermichael <michael@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>
Wed, 31 Dec 2008 06:28:11 +0000 (06:28 +0000)
git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@925 3ae390bd-cb1e-0410-b409-cd5a39f66f1f

widget.c

index 5f5f6a7bb476b0f3ee39ea45626c057f6895f403..bc3fe31b36a91a44e08e39861e8d895a35c96961 100644 (file)
--- a/widget.c
+++ b/widget.c
@@ -180,6 +180,19 @@ int widget_add(const char *name, const int type, const int layer, const int row,
     /* check if widget type matches */
     if (Class->type != type) {
        error("widget '%s': class '%s' not applicable", name, class);
+       switch (Class->type) {
+       case WIDGET_TYPE_RC:
+           error("  Widgetclass %s is placed by Row/Column", class);
+           break;
+       case WIDGET_TYPE_XY:
+           error("  Widgetclass %s is placed by X/Y", class);
+           break;
+       case WIDGET_TYPE_GPO:
+       case WIDGET_TYPE_TIMER:
+       case WIDGET_TYPE_KEYPAD:
+       default:
+           error("  Widgetclass %s has unknown type %d", class, Class->type);
+       }
        free(class);
        return -1;
     }
@@ -200,7 +213,7 @@ int widget_add(const char *name, const int type, const int layer, const int row,
 
     /* another sanity check */
     if (nWidgets >= MAX_WIDGETS) {
-       error("internal error: widget buffer full! Tried to allocate %d widgets (max: %s)", nWidgets, MAX_WIDGETS);
+       error("internal error: widget buffer full! Tried to allocate %d widgets (max: %d)", nWidgets, MAX_WIDGETS);
        return -1;
     }
 
@@ -227,8 +240,10 @@ int widget_add(const char *name, const int type, const int layer, const int row,
     Widget->row = row;
     Widget->col = col;
 
-    info(" widget '%s': Class '%s', Parent '%s', Layer %d, Row %d, Col %d",
-        name, (NULL == Class) ? "<none>" : Class->name, (NULL == Parent) ? "<root>" : Parent->name, layer, row, col);
+    info(" widget '%s': Class '%s', Parent '%s', Layer %d, %s %d, %s %d",
+        name, (NULL == Class) ? "<none>" : Class->name,
+        (NULL == Parent) ? "<root>" : Parent->name,
+        layer, (WIDGET_TYPE_XY == Class->type) ? "Y" : "Row", row, (WIDGET_TYPE_XY == Class->type) ? "X" : "Col", col);
 
     if (Class->init != NULL) {
        Class->init(Widget);