move draw files to common/
This commit is contained in:
parent
35803aff4c
commit
2ac27fdac4
|
@ -97,7 +97,7 @@ bin_PROGRAMS += awesome
|
||||||
awesome_SOURCES = \
|
awesome_SOURCES = \
|
||||||
client.c client.h \
|
client.c client.h \
|
||||||
focus.c focus.h \
|
focus.c focus.h \
|
||||||
draw.c draw.h \
|
common/draw.c common/draw.h \
|
||||||
event.c event.h \
|
event.c event.h \
|
||||||
layout.c layout.h \
|
layout.c layout.h \
|
||||||
awesome.c awesome.h \
|
awesome.c awesome.h \
|
||||||
|
|
2
layout.h
2
layout.h
|
@ -22,6 +22,8 @@
|
||||||
#ifndef AWESOME_LAYOUT_H
|
#ifndef AWESOME_LAYOUT_H
|
||||||
#define AWESOME_LAYOUT_H
|
#define AWESOME_LAYOUT_H
|
||||||
|
|
||||||
|
#include <X11/Xlib.h>
|
||||||
|
|
||||||
#include "uicb.h"
|
#include "uicb.h"
|
||||||
#include "common/list.h"
|
#include "common/list.h"
|
||||||
#include "common/util.h"
|
#include "common/util.h"
|
||||||
|
|
|
@ -23,8 +23,8 @@
|
||||||
#define AWESOME_STRUCTS_H
|
#define AWESOME_STRUCTS_H
|
||||||
|
|
||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
#include "draw.h"
|
|
||||||
#include "layout.h"
|
#include "layout.h"
|
||||||
|
#include "common/draw.h"
|
||||||
|
|
||||||
/** Bar possible position */
|
/** Bar possible position */
|
||||||
typedef enum
|
typedef enum
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "draw.h"
|
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
#include "xutil.h"
|
#include "xutil.h"
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include "draw.h"
|
|
||||||
#include "widget.h"
|
#include "widget.h"
|
||||||
#include "xutil.h"
|
#include "xutil.h"
|
||||||
#include "screen.h"
|
#include "screen.h"
|
||||||
|
|
Loading…
Reference in New Issue