rework widget.c
This commit is contained in:
parent
8b62669970
commit
bf20f9cee9
22
widget.c
22
widget.c
|
@ -1,25 +1,21 @@
|
||||||
|
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
calculate_alignments(Widget *widget)
|
calculate_alignments(Widget *widget)
|
||||||
{
|
{
|
||||||
while (widget){
|
for(; widget; widget = widget->next)
|
||||||
printf("%s\n", widget->name);
|
{
|
||||||
if (widget->alignment == AlignFlex){
|
if(widget->alignment == AlignFlex)
|
||||||
|
{
|
||||||
widget = widget->next;
|
widget = widget->next;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
widget->alignment = AlignLeft;
|
widget->alignment = AlignLeft;
|
||||||
widget = widget->next;
|
|
||||||
}
|
}
|
||||||
if (widget){
|
|
||||||
while (widget){
|
if(widget)
|
||||||
|
for(; widget; widget = widget->next)
|
||||||
widget->alignment = AlignRight;
|
widget->alignment = AlignRight;
|
||||||
widget = widget->next;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -27,8 +23,8 @@ calculate_offset(int barwidth, int widgetwidth, int offset, int alignment)
|
||||||
{
|
{
|
||||||
if (alignment == AlignLeft || alignment == AlignFlex)
|
if (alignment == AlignLeft || alignment == AlignFlex)
|
||||||
return offset;
|
return offset;
|
||||||
else
|
|
||||||
return barwidth - offset - widgetwidth;
|
return barwidth - offset - widgetwidth;
|
||||||
}
|
}
|
||||||
|
|
||||||
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
// vim: filetype=c:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99
|
||||||
|
|
Loading…
Reference in New Issue