aboutsummaryrefslogtreecommitdiff
path: root/src/status.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/status.c')
-rw-r--r--src/status.c54
1 files changed, 40 insertions, 14 deletions
diff --git a/src/status.c b/src/status.c
index 88c7ddb..0283494 100644
--- a/src/status.c
+++ b/src/status.c
@@ -37,8 +37,10 @@ static StatusWindowType ParseType(const char *str);
/*************************************************************************
*************************************************************************/
-void GetMoveResizeCoordinates(const ClientNode *np, StatusWindowType type,
- int *x, int *y) {
+void
+GetMoveResizeCoordinates(const ClientNode *np, StatusWindowType type,
+ int *x, int *y)
+{
const ScreenType *sp;
@@ -65,7 +67,9 @@ void GetMoveResizeCoordinates(const ClientNode *np, StatusWindowType type,
/*************************************************************************
*************************************************************************/
-void CreateMoveResizeWindow(const ClientNode *np, StatusWindowType type) {
+void
+CreateMoveResizeWindow(const ClientNode *np, StatusWindowType type)
+{
XSetWindowAttributes attrs;
@@ -95,7 +99,9 @@ void CreateMoveResizeWindow(const ClientNode *np, StatusWindowType type) {
/*************************************************************************
*************************************************************************/
-void DrawMoveResizeWindow(const ClientNode *np, StatusWindowType type) {
+void
+DrawMoveResizeWindow(const ClientNode *np, StatusWindowType type)
+{
int x, y;
@@ -139,7 +145,9 @@ void DrawMoveResizeWindow(const ClientNode *np, StatusWindowType type) {
/*************************************************************************
*************************************************************************/
-void DestroyMoveResizeWindow() {
+void
+DestroyMoveResizeWindow()
+{
if(statusWindow != None) {
JXDestroyWindow(display, statusWindow);
@@ -150,7 +158,9 @@ void DestroyMoveResizeWindow() {
/*************************************************************************
*************************************************************************/
-void CreateMoveWindow(ClientNode *np) {
+void
+CreateMoveWindow(ClientNode *np)
+{
CreateMoveResizeWindow(np, moveStatusType);
@@ -158,7 +168,9 @@ void CreateMoveWindow(ClientNode *np) {
/*************************************************************************
*************************************************************************/
-void UpdateMoveWindow(ClientNode *np) {
+void
+UpdateMoveWindow(ClientNode *np)
+{
char str[80];
unsigned int width;
@@ -178,7 +190,9 @@ void UpdateMoveWindow(ClientNode *np) {
/*************************************************************************
*************************************************************************/
-void DestroyMoveWindow() {
+void
+DestroyMoveWindow()
+{
DestroyMoveResizeWindow();
@@ -186,7 +200,9 @@ void DestroyMoveWindow() {
/*************************************************************************
*************************************************************************/
-void CreateResizeWindow(ClientNode *np) {
+void
+CreateResizeWindow(ClientNode *np)
+{
CreateMoveResizeWindow(np, resizeStatusType);
@@ -194,7 +210,9 @@ void CreateResizeWindow(ClientNode *np) {
/*************************************************************************
*************************************************************************/
-void UpdateResizeWindow(ClientNode *np, int gwidth, int gheight) {
+void
+UpdateResizeWindow(ClientNode *np, int gwidth, int gheight)
+{
char str[80];
unsigned int fontWidth;
@@ -214,7 +232,9 @@ void UpdateResizeWindow(ClientNode *np, int gwidth, int gheight) {
/*************************************************************************
*************************************************************************/
-void DestroyResizeWindow() {
+void
+DestroyResizeWindow()
+{
DestroyMoveResizeWindow();
@@ -222,7 +242,9 @@ void DestroyResizeWindow() {
/*************************************************************************
*************************************************************************/
-StatusWindowType ParseType(const char *str) {
+StatusWindowType
+ParseType(const char *str)
+{
if(!str) {
return SW_SCREEN;
@@ -242,7 +264,9 @@ StatusWindowType ParseType(const char *str) {
/*************************************************************************
*************************************************************************/
-void SetMoveStatusType(const char *str) {
+void
+SetMoveStatusType(const char *str)
+{
StatusWindowType type;
@@ -258,7 +282,9 @@ void SetMoveStatusType(const char *str) {
/*************************************************************************
*************************************************************************/
-void SetResizeStatusType(const char *str) {
+void
+SetResizeStatusType(const char *str)
+{
StatusWindowType type;