textbox: use tokenize
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
723299ff5f
commit
28830c0dc9
|
@ -23,6 +23,7 @@ min_value
|
||||||
reverse
|
reverse
|
||||||
right
|
right
|
||||||
scale
|
scale
|
||||||
|
text
|
||||||
ticks_count
|
ticks_count
|
||||||
ticks_gap
|
ticks_gap
|
||||||
top
|
top
|
||||||
|
|
|
@ -412,7 +412,8 @@ progressbar_tell(widget_t *widget, const char *property, const char *new_value)
|
||||||
if(!new_value)
|
if(!new_value)
|
||||||
return WIDGET_ERROR_NOVALUE;
|
return WIDGET_ERROR_NOVALUE;
|
||||||
|
|
||||||
switch (prop) {
|
switch (prop)
|
||||||
|
{
|
||||||
case A_TK_GAP:
|
case A_TK_GAP:
|
||||||
d->gap = atoi(new_value);
|
d->gap = atoi(new_value);
|
||||||
return WIDGET_NOERROR;
|
return WIDGET_NOERROR;
|
||||||
|
@ -470,7 +471,8 @@ progressbar_tell(widget_t *widget, const char *property, const char *new_value)
|
||||||
return WIDGET_ERROR;
|
return WIDGET_ERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
switch (prop) {
|
switch (prop)
|
||||||
|
{
|
||||||
case A_TK_DATA:
|
case A_TK_DATA:
|
||||||
value = atof(setting);
|
value = atof(setting);
|
||||||
bar->value = (value < bar->min_value ? bar->min_value :
|
bar->value = (value < bar->min_value ? bar->min_value :
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
#include "common/util.h"
|
#include "common/util.h"
|
||||||
#include "common/configopts.h"
|
#include "common/configopts.h"
|
||||||
|
#include "common/tokenize.h"
|
||||||
|
|
||||||
extern awesome_t globalconf;
|
extern awesome_t globalconf;
|
||||||
|
|
||||||
|
@ -73,15 +74,18 @@ textbox_tell(widget_t *widget, const char *property, const char *new_value)
|
||||||
{
|
{
|
||||||
textbox_data_t *d = widget->data;
|
textbox_data_t *d = widget->data;
|
||||||
|
|
||||||
if(!a_strcmp(property, "text"))
|
switch(a_tokenize(property, -1))
|
||||||
{
|
{
|
||||||
|
case A_TK_TEXT:
|
||||||
p_delete(&d->text);
|
p_delete(&d->text);
|
||||||
a_iso2utf8(new_value, &d->text);
|
a_iso2utf8(new_value, &d->text);
|
||||||
}
|
break;
|
||||||
else if(!a_strcmp(property, "width"))
|
case A_TK_WIDTH:
|
||||||
d->width = atoi(new_value);
|
d->width = atoi(new_value);
|
||||||
else
|
break;
|
||||||
|
default:
|
||||||
return WIDGET_ERROR;
|
return WIDGET_ERROR;
|
||||||
|
}
|
||||||
|
|
||||||
return WIDGET_NOERROR;
|
return WIDGET_NOERROR;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue