diff options
| author | Tomas Chvatal <scarabeus@gentoo.org> | 2008-12-11 22:34:18 +0100 |
|---|---|---|
| committer | Tomas Chvatal <scarabeus@gentoo.org> | 2008-12-11 22:34:18 +0100 |
| commit | 5855f591b6d509633e3730346e18122768ec6e04 (patch) | |
| tree | cd98fd39a789464294fd05ae00eeea5bd9411138 /src/widget | |
| parent | a83321436c8d40210bbbd0a44fe1290ed71638af (diff) | |
First pass renaming sreen and widgets.
Diffstat (limited to 'src/widget')
| -rw-r--r-- | src/widget/button.c (renamed from src/widget/widget_button.c) | 2 | ||||
| -rw-r--r-- | src/widget/button.h (renamed from src/widget/widget_button.h) | 0 | ||||
| -rw-r--r-- | src/widget/buttonimage.c (renamed from src/widget/widget_buttonimage.c) | 2 | ||||
| -rw-r--r-- | src/widget/buttonimage.h (renamed from src/widget/widget_buttonimage.h) | 0 | ||||
| -rw-r--r-- | src/widget/catchkey.c (renamed from src/widget/widget_catchkey.c) | 2 | ||||
| -rw-r--r-- | src/widget/catchkey.h (renamed from src/widget/widget_catchkey.h) | 0 | ||||
| -rw-r--r-- | src/widget/check.c (renamed from src/widget/widget_check.c) | 2 | ||||
| -rw-r--r-- | src/widget/check.h (renamed from src/widget/widget_check.h) | 0 | ||||
| -rw-r--r-- | src/widget/choicegroup.c (renamed from src/widget/widget_choicegroup.c) | 2 | ||||
| -rw-r--r-- | src/widget/choicegroup.h (renamed from src/widget/widget_choicegroup.h) | 0 | ||||
| -rw-r--r-- | src/widget/image.c (renamed from src/widget/widget_image.c) | 2 | ||||
| -rw-r--r-- | src/widget/image.h (renamed from src/widget/widget_image.h) | 2 | ||||
| -rw-r--r-- | src/widget/label.c (renamed from src/widget/widget_label.c) | 2 | ||||
| -rw-r--r-- | src/widget/label.h (renamed from src/widget/widget_label.h) | 0 | ||||
| -rw-r--r-- | src/widget/select.c (renamed from src/widget/widget_select.c) | 2 | ||||
| -rw-r--r-- | src/widget/select.h (renamed from src/widget/widget_select.h) | 0 | ||||
| -rw-r--r-- | src/widget/textfield.c (renamed from src/widget/widget_textfield.c) | 2 | ||||
| -rw-r--r-- | src/widget/textfield.h (renamed from src/widget/widget_textfield.h) | 0 | ||||
| -rw-r--r-- | src/widget/widget.c | 2 |
19 files changed, 11 insertions, 11 deletions
diff --git a/src/widget/widget_button.c b/src/widget/button.c index c2afcad..e2db211 100644 --- a/src/widget/widget_button.c +++ b/src/widget/button.c @@ -9,7 +9,7 @@ #include "font.h" #include "widget.h" -#include "widget_button.h" +#include "button.h" widget_t *newWidgetButton(char *text, int x, int y, void (*fce_event) (void *)) { diff --git a/src/widget/widget_button.h b/src/widget/button.h index ac238be..ac238be 100644 --- a/src/widget/widget_button.h +++ b/src/widget/button.h diff --git a/src/widget/widget_buttonimage.c b/src/widget/buttonimage.c index dd20e62..1859ef0 100644 --- a/src/widget/widget_buttonimage.c +++ b/src/widget/buttonimage.c @@ -8,7 +8,7 @@ #include "image.h" #include "widget.h" -#include "widget_buttonimage.h" +#include "buttonimage.h" widget_t *newWidgetButtonimage(image_t * image, int x, int y, void (*fce_event) (void *)) { diff --git a/src/widget/widget_buttonimage.h b/src/widget/buttonimage.h index 5a0ab7c..5a0ab7c 100644 --- a/src/widget/widget_buttonimage.h +++ b/src/widget/buttonimage.h diff --git a/src/widget/widget_catchkey.c b/src/widget/catchkey.c index b213890..ecfb993 100644 --- a/src/widget/widget_catchkey.c +++ b/src/widget/catchkey.c @@ -7,7 +7,7 @@ #include "font.h" #include "widget.h" -#include "widget_catchkey.h" +#include "catchkey.h" widget_t *newWidgetCatchkey(int key, int x, int y, void *event) { diff --git a/src/widget/widget_catchkey.h b/src/widget/catchkey.h index 106bc92..106bc92 100644 --- a/src/widget/widget_catchkey.h +++ b/src/widget/catchkey.h diff --git a/src/widget/widget_check.c b/src/widget/check.c index e574211..7ef4b8b 100644 --- a/src/widget/widget_check.c +++ b/src/widget/check.c @@ -7,7 +7,7 @@ #include "image.h" #include "widget.h" -#include "widget_check.h" +#include "check.h" widget_t *newWidgetCheck(int x, int y, bool_t status, void (*fce_event) (void *)) { diff --git a/src/widget/widget_check.h b/src/widget/check.h index 007e82c..007e82c 100644 --- a/src/widget/widget_check.h +++ b/src/widget/check.h diff --git a/src/widget/widget_choicegroup.c b/src/widget/choicegroup.c index 1045f81..0eb562a 100644 --- a/src/widget/widget_choicegroup.c +++ b/src/widget/choicegroup.c @@ -7,7 +7,7 @@ #include "image.h" #include "widget.h" -#include "widget_choicegroup.h" +#include "choicegroup.h" widget_t *newWidgetChoicegroup(int x, int y, bool_t status, list_t * list, void (*fce_event) (void *)) { diff --git a/src/widget/widget_choicegroup.h b/src/widget/choicegroup.h index a892d74..a892d74 100644 --- a/src/widget/widget_choicegroup.h +++ b/src/widget/choicegroup.h diff --git a/src/widget/widget_image.c b/src/widget/image.c index ad49f9e..2c9702f 100644 --- a/src/widget/widget_image.c +++ b/src/widget/image.c @@ -9,7 +9,7 @@ #include "font.h" #include "widget.h" -#include "widget_image.h" +#include "image.h" widget_t *newWidgetImage(int x, int y, image_t * image) { diff --git a/src/widget/widget_image.h b/src/widget/image.h index 081fbda..61bf89a 100644 --- a/src/widget/widget_image.h +++ b/src/widget/image.h @@ -8,7 +8,7 @@ # include "widget.h" typedef struct widget_image { - image_t *image; + image_t *widget_image; } widget_image_t; extern widget_t *newWidgetImage(int x, int y, image_t * image); diff --git a/src/widget/widget_label.c b/src/widget/label.c index e3c907c..a2d0a48 100644 --- a/src/widget/widget_label.c +++ b/src/widget/label.c @@ -5,7 +5,7 @@ #include "main.h" #include "interface.h" #include "font.h" -#include "widget_label.h" +#include "label.h" #include "widget.h" widget_t *newWidgetLabel(char *text, int x, int y, int bind) diff --git a/src/widget/widget_label.h b/src/widget/label.h index 743db7e..743db7e 100644 --- a/src/widget/widget_label.h +++ b/src/widget/label.h diff --git a/src/widget/widget_select.c b/src/widget/select.c index f53e583..5e290e2 100644 --- a/src/widget/widget_select.c +++ b/src/widget/select.c @@ -7,7 +7,7 @@ #include "font.h" #include "widget.h" -#include "widget_select.h" +#include "select.h" widget_t *newWidgetSelect(int x, int y, void (*fce_event) (void *)) { diff --git a/src/widget/widget_select.h b/src/widget/select.h index 9d772cc..9d772cc 100644 --- a/src/widget/widget_select.h +++ b/src/widget/select.h diff --git a/src/widget/widget_textfield.c b/src/widget/textfield.c index 6a8824a..edc74a8 100644 --- a/src/widget/widget_textfield.c +++ b/src/widget/textfield.c @@ -8,7 +8,7 @@ #include "image.h" #include "widget.h" -#include "widget_textfield.h" +#include "textfield.h" //#define ZZEEXX86_READKEY diff --git a/src/widget/widget_textfield.h b/src/widget/textfield.h index 7991deb..7991deb 100644 --- a/src/widget/widget_textfield.h +++ b/src/widget/textfield.h diff --git a/src/widget/widget.c b/src/widget/widget.c index b72a463..f33e643 100644 --- a/src/widget/widget.c +++ b/src/widget/widget.c @@ -5,7 +5,7 @@ #include "main.h" #include "widget.h" -#include "widget_label.h" +#include "label.h" widget_t *newWidget(int type, int x, int y, int w, int h, void *private_data) { |