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"
|
||||
|
||||
|
||||
void
|
||||
calculate_alignments(Widget *widget)
|
||||
{
|
||||
while (widget){
|
||||
printf("%s\n", widget->name);
|
||||
if (widget->alignment == AlignFlex){
|
||||
for(; widget; widget = widget->next)
|
||||
{
|
||||
if(widget->alignment == AlignFlex)
|
||||
{
|
||||
widget = widget->next;
|
||||
break;
|
||||
}
|
||||
widget->alignment = AlignLeft;
|
||||
widget = widget->next;
|
||||
}
|
||||
if (widget){
|
||||
while (widget){
|
||||
|
||||
if(widget)
|
||||
for(; widget; widget = widget->next)
|
||||
widget->alignment = AlignRight;
|
||||
widget = widget->next;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
int
|
||||
|
@ -27,8 +23,8 @@ calculate_offset(int barwidth, int widgetwidth, int offset, int alignment)
|
|||
{
|
||||
if (alignment == AlignLeft || alignment == AlignFlex)
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue