client: move into objects
Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
parent
104e28778b
commit
e204473dfc
|
@ -37,7 +37,7 @@ set(AWE_DOC_FILES
|
||||||
|
|
||||||
set(AWE_SRCS
|
set(AWE_SRCS
|
||||||
${SOURCE_DIR}/awesome.c
|
${SOURCE_DIR}/awesome.c
|
||||||
${SOURCE_DIR}/client.c
|
${SOURCE_DIR}/objects/client.c
|
||||||
${SOURCE_DIR}/strut.c
|
${SOURCE_DIR}/strut.c
|
||||||
${SOURCE_DIR}/dbus.c
|
${SOURCE_DIR}/dbus.c
|
||||||
${SOURCE_DIR}/root.c
|
${SOURCE_DIR}/root.c
|
||||||
|
|
|
@ -31,7 +31,7 @@
|
||||||
|
|
||||||
#include "awesome.h"
|
#include "awesome.h"
|
||||||
#include "spawn.h"
|
#include "spawn.h"
|
||||||
#include "client.h"
|
#include "objects/client.h"
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
#include "ewmh.h"
|
#include "ewmh.h"
|
||||||
#include "dbus.h"
|
#include "dbus.h"
|
||||||
|
|
2
event.c
2
event.c
|
@ -30,7 +30,7 @@
|
||||||
#include "objects/tag.h"
|
#include "objects/tag.h"
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
#include "ewmh.h"
|
#include "ewmh.h"
|
||||||
#include "client.h"
|
#include "objects/client.h"
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
#include "titlebar.h"
|
#include "titlebar.h"
|
||||||
#include "key.h"
|
#include "key.h"
|
||||||
|
|
2
event.h
2
event.h
|
@ -23,7 +23,7 @@
|
||||||
#define AWESOME_EVENT_H
|
#define AWESOME_EVENT_H
|
||||||
|
|
||||||
#include "wibox.h"
|
#include "wibox.h"
|
||||||
#include "client.h"
|
#include "objects/client.h"
|
||||||
|
|
||||||
static inline int
|
static inline int
|
||||||
awesome_refresh(void)
|
awesome_refresh(void)
|
||||||
|
|
2
ewmh.c
2
ewmh.c
|
@ -28,7 +28,7 @@
|
||||||
#include "ewmh.h"
|
#include "ewmh.h"
|
||||||
#include "objects/tag.h"
|
#include "objects/tag.h"
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
#include "client.h"
|
#include "objects/client.h"
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
#include "wibox.h"
|
#include "wibox.h"
|
||||||
#include "luaa.h"
|
#include "luaa.h"
|
||||||
|
|
2
luaa.c
2
luaa.c
|
@ -37,7 +37,7 @@
|
||||||
#include "luaa.h"
|
#include "luaa.h"
|
||||||
#include "spawn.h"
|
#include "spawn.h"
|
||||||
#include "objects/tag.h"
|
#include "objects/tag.h"
|
||||||
#include "client.h"
|
#include "objects/client.h"
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
#include "event.h"
|
#include "event.h"
|
||||||
#include "selection.h"
|
#include "selection.h"
|
||||||
|
|
2
screen.c
2
screen.c
|
@ -27,7 +27,7 @@
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
#include "ewmh.h"
|
#include "ewmh.h"
|
||||||
#include "objects/tag.h"
|
#include "objects/tag.h"
|
||||||
#include "client.h"
|
#include "objects/client.h"
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
#include "wibox.h"
|
#include "wibox.h"
|
||||||
#include "luaa.h"
|
#include "luaa.h"
|
||||||
|
|
2
stack.c
2
stack.c
|
@ -21,7 +21,7 @@
|
||||||
|
|
||||||
#include "ewmh.h"
|
#include "ewmh.h"
|
||||||
#include "stack.h"
|
#include "stack.h"
|
||||||
#include "client.h"
|
#include "objects/client.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
stack_client_remove(client_t *c)
|
stack_client_remove(client_t *c)
|
||||||
|
|
|
@ -22,7 +22,7 @@
|
||||||
#include <xcb/xcb.h>
|
#include <xcb/xcb.h>
|
||||||
|
|
||||||
#include "titlebar.h"
|
#include "titlebar.h"
|
||||||
#include "client.h"
|
#include "objects/client.h"
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
#include "wibox.h"
|
#include "wibox.h"
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
#define AWESOME_TITLEBAR_H
|
#define AWESOME_TITLEBAR_H
|
||||||
|
|
||||||
#include "wibox.h"
|
#include "wibox.h"
|
||||||
#include "client.h"
|
#include "objects/client.h"
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
|
|
||||||
client_t * client_getbytitlebar(wibox_t *);
|
client_t * client_getbytitlebar(wibox_t *);
|
||||||
|
|
2
wibox.c
2
wibox.c
|
@ -24,7 +24,7 @@
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
#include "wibox.h"
|
#include "wibox.h"
|
||||||
#include "titlebar.h"
|
#include "titlebar.h"
|
||||||
#include "client.h"
|
#include "objects/client.h"
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
#include "window.h"
|
#include "window.h"
|
||||||
#include "luaa.h"
|
#include "luaa.h"
|
||||||
|
|
Loading…
Reference in New Issue