kick out rotate option
This commit is contained in:
parent
595003b8e1
commit
6396d08c25
14
statusbar.c
14
statusbar.c
|
@ -211,12 +211,18 @@ statusbar_init(Statusbar *statusbar)
|
|||
statusbar->width = area.width;
|
||||
}
|
||||
|
||||
if(statusbar->dposition == Right || statusbar->dposition == Left)
|
||||
switch(statusbar->dposition)
|
||||
{
|
||||
case Right:
|
||||
case Left:
|
||||
statusbar->sw =
|
||||
simplewindow_new(phys_screen, 0, 0, statusbar->height, statusbar->width, 0, True);
|
||||
else
|
||||
simplewindow_new(phys_screen, 0, 0, statusbar->height, statusbar->width, 0);
|
||||
break;
|
||||
default:
|
||||
statusbar->sw =
|
||||
simplewindow_new(phys_screen, 0, 0, statusbar->width, statusbar->height, 0, False);
|
||||
simplewindow_new(phys_screen, 0, 0, statusbar->width, statusbar->height, 0);
|
||||
break;
|
||||
}
|
||||
|
||||
widget_calculate_alignments(statusbar->widgets);
|
||||
|
||||
|
|
8
window.c
8
window.c
|
@ -178,7 +178,7 @@ window_settrans(Window win, double opacity)
|
|||
|
||||
SimpleWindow *
|
||||
simplewindow_new(int phys_screen, int x, int y, unsigned int w, unsigned int h,
|
||||
unsigned int border_width, Bool rotate_drawable)
|
||||
unsigned int border_width)
|
||||
{
|
||||
XSetWindowAttributes wa;
|
||||
SimpleWindow *sw;
|
||||
|
@ -206,12 +206,6 @@ simplewindow_new(int phys_screen, int x, int y, unsigned int w, unsigned int h,
|
|||
CWOverrideRedirect | CWBackPixmap | CWEventMask,
|
||||
&wa);
|
||||
|
||||
if(rotate_drawable)
|
||||
sw->drawable = XCreatePixmap(globalconf.display,
|
||||
RootWindow(globalconf.display, phys_screen),
|
||||
h, w,
|
||||
DefaultDepth(globalconf.display, phys_screen));
|
||||
else
|
||||
sw->drawable = XCreatePixmap(globalconf.display,
|
||||
RootWindow(globalconf.display, phys_screen),
|
||||
w, h,
|
||||
|
|
2
window.h
2
window.h
|
@ -30,7 +30,7 @@ Status window_configure(Window, Area, int);
|
|||
void window_grabbuttons(int, Window, Bool, Bool);
|
||||
void window_setshape(int, Window);
|
||||
int window_settrans(Window, double);
|
||||
SimpleWindow * simplewindow_new(int, int, int, unsigned int, unsigned int, unsigned int, Bool);
|
||||
SimpleWindow * simplewindow_new(int, int, int, unsigned int, unsigned int, unsigned int);
|
||||
void simplewindow_delete(SimpleWindow *);
|
||||
int simplewindow_move(SimpleWindow *, int, int);
|
||||
int simplewindow_refresh_drawable(SimpleWindow *, int);
|
||||
|
|
Loading…
Reference in New Issue