widgets: move into objects

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
Julien Danjou 2009-09-14 20:26:33 +02:00
parent e204473dfc
commit 6fa62a3029
14 changed files with 16 additions and 16 deletions

View File

@ -59,7 +59,7 @@ set(AWE_SRCS
${SOURCE_DIR}/systray.c ${SOURCE_DIR}/systray.c
${SOURCE_DIR}/objects/tag.c ${SOURCE_DIR}/objects/tag.c
${SOURCE_DIR}/titlebar.c ${SOURCE_DIR}/titlebar.c
${SOURCE_DIR}/widget.c ${SOURCE_DIR}/objects/widget.c
${SOURCE_DIR}/window.c ${SOURCE_DIR}/window.c
${SOURCE_DIR}/image.c ${SOURCE_DIR}/image.c
${SOURCE_DIR}/draw.c ${SOURCE_DIR}/draw.c
@ -76,9 +76,9 @@ set(AWE_SRCS
${SOURCE_DIR}/common/backtrace.c ${SOURCE_DIR}/common/backtrace.c
${SOURCE_DIR}/common/luaobject.c ${SOURCE_DIR}/common/luaobject.c
${SOURCE_DIR}/common/luaclass.c ${SOURCE_DIR}/common/luaclass.c
${SOURCE_DIR}/widgets/textbox.c ${SOURCE_DIR}/objects/widgets/textbox.c
${SOURCE_DIR}/widgets/systray.c ${SOURCE_DIR}/objects/widgets/systray.c
${SOURCE_DIR}/widgets/imagebox.c) ${SOURCE_DIR}/objects/widgets/imagebox.c)
set(AWE_MAN_SRCS set(AWE_MAN_SRCS
${SOURCE_DIR}/manpages/awesome.1.txt ${SOURCE_DIR}/manpages/awesome.1.txt

View File

@ -31,7 +31,7 @@
#include "window.h" #include "window.h"
#include "ewmh.h" #include "ewmh.h"
#include "objects/client.h" #include "objects/client.h"
#include "widget.h" #include "objects/widget.h"
#include "titlebar.h" #include "titlebar.h"
#include "key.h" #include "key.h"
#include "keygrabber.h" #include "keygrabber.h"

2
ewmh.c
View File

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

View File

@ -21,7 +21,7 @@
#include "mouse.h" #include "mouse.h"
#include "screen.h" #include "screen.h"
#include "client.h" #include "objects/client.h"
#include "globalconf.h" #include "globalconf.h"
#include "wibox.h" #include "wibox.h"
#include "luaa.h" #include "luaa.h"

View File

@ -19,7 +19,7 @@
* *
*/ */
#include "widget.h" #include "objects/widget.h"
#include "luaa.h" #include "luaa.h"
#include "titlebar.h" #include "titlebar.h"

View File

@ -22,7 +22,7 @@
#include <xcb/xcb.h> #include <xcb/xcb.h>
#include <xcb/xcb_atom.h> #include <xcb/xcb_atom.h>
#include "widget.h" #include "objects/widget.h"
#include "screen.h" #include "screen.h"
#include "wibox.h" #include "wibox.h"
#include "globalconf.h" #include "globalconf.h"

View File

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

View File

@ -23,7 +23,7 @@
#include "screen.h" #include "screen.h"
#include "property.h" #include "property.h"
#include "client.h" #include "objects/client.h"
#include "ewmh.h" #include "ewmh.h"
#include "wibox.h" #include "wibox.h"
#include "window.h" #include "window.h"

View File

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

View File

@ -1,7 +1,7 @@
/* /*
* systray.c - systray handling * systray.c - systray handling
* *
* 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 * 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 * it under the terms of the GNU General Public License as published by
@ -26,7 +26,7 @@
#include "screen.h" #include "screen.h"
#include "systray.h" #include "systray.h"
#include "window.h" #include "window.h"
#include "widget.h" #include "objects/widget.h"
#include "common/atoms.h" #include "common/atoms.h"
#include "common/xutil.h" #include "common/xutil.h"

View File

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

View File

@ -22,7 +22,7 @@
#ifndef AWESOME_WIBOX_H #ifndef AWESOME_WIBOX_H
#define AWESOME_WIBOX_H #define AWESOME_WIBOX_H
#include "widget.h" #include "objects/widget.h"
#include "strut.h" #include "strut.h"
#include "common/luaobject.h" #include "common/luaobject.h"