wibox: move into objects

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-09-14 20:31:27 +02:00
parent 5de485c648
commit e9ef51a521
13 changed files with 12 additions and 13 deletions

View File

@ -55,7 +55,7 @@ set(AWE_SRCS
${SOURCE_DIR}/screen.c
${SOURCE_DIR}/stack.c
${SOURCE_DIR}/selection.c
${SOURCE_DIR}/wibox.c
${SOURCE_DIR}/objects/wibox.c
${SOURCE_DIR}/systray.c
${SOURCE_DIR}/objects/tag.c
${SOURCE_DIR}/titlebar.c

View File

@ -1,7 +1,7 @@
/*
* event.h - event handlers header
*
* Copyright © 2007-2008 Julien Danjou <julien@danjou.info>
* Copyright © 2007-2009 Julien Danjou <julien@danjou.info>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -22,7 +22,7 @@
#ifndef AWESOME_EVENT_H
#define AWESOME_EVENT_H
#include "wibox.h"
#include "objects/wibox.h"
#include "objects/client.h"
static inline int

2
ewmh.c
View File

@ -30,7 +30,7 @@
#include "screen.h"
#include "objects/client.h"
#include "objects/widget.h"
#include "wibox.h"
#include "objects/wibox.h"
#include "luaa.h"
#include "common/atoms.h"
#include "common/buffer.h"

View File

@ -23,7 +23,7 @@
#include "screen.h"
#include "objects/client.h"
#include "globalconf.h"
#include "wibox.h"
#include "objects/wibox.h"
#include "luaa.h"
#include "common/tokenize.h"
#include "common/xutil.h"

View File

@ -24,7 +24,7 @@
#include "objects/widget.h"
#include "screen.h"
#include "wibox.h"
#include "objects/wibox.h"
#include "globalconf.h"
#include "common/xembed.h"
#include "common/atoms.h"

View File

@ -20,7 +20,6 @@
*/
#include "objects/widget.h"
#include "wibox.h"
#include "luaa.h"
#include "common/tokenize.h"

View File

@ -25,7 +25,7 @@
#include "property.h"
#include "objects/client.h"
#include "ewmh.h"
#include "wibox.h"
#include "objects/wibox.h"
#include "window.h"
#include "luaa.h"
#include "common/atoms.h"

2
root.c
View File

@ -23,7 +23,7 @@
#include "globalconf.h"
#include "objects/button.h"
#include "wibox.h"
#include "objects/wibox.h"
#include "luaa.h"
#include "window.h"
#include "common/xcursor.h"

View File

@ -29,7 +29,7 @@
#include "objects/tag.h"
#include "objects/client.h"
#include "objects/widget.h"
#include "wibox.h"
#include "objects/wibox.h"
#include "luaa.h"
#include "common/xutil.h"

View File

@ -24,7 +24,7 @@
#include "titlebar.h"
#include "objects/client.h"
#include "objects/widget.h"
#include "wibox.h"
#include "objects/wibox.h"
#include "screen.h"
#include "luaa.h"

View File

@ -1,7 +1,7 @@
/*
* titlebar.h - titlebar management header
*
* Copyright © 2008 Julien Danjou <julien@danjou.info>
* Copyright © 2008-2009 Julien Danjou <julien@danjou.info>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -22,7 +22,7 @@
#ifndef AWESOME_TITLEBAR_H
#define AWESOME_TITLEBAR_H
#include "wibox.h"
#include "objects/wibox.h"
#include "objects/client.h"
#include "window.h"