wibox: move into objects
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
5de485c648
commit
e9ef51a521
|
@ -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
|
||||
|
|
4
event.h
4
event.h
|
@ -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
2
ewmh.c
|
@ -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"
|
||||
|
|
2
mouse.c
2
mouse.c
|
@ -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"
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -20,7 +20,6 @@
|
|||
*/
|
||||
|
||||
#include "objects/widget.h"
|
||||
#include "wibox.h"
|
||||
#include "luaa.h"
|
||||
#include "common/tokenize.h"
|
||||
|
||||
|
|
|
@ -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
2
root.c
|
@ -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"
|
||||
|
|
2
screen.c
2
screen.c
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in New Issue