summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--Makefile16
-rw-r--r--TODO12
-rw-r--r--compositor/Makefile18
-rw-r--r--compositor/compositor-drm.c (renamed from compositor-drm.c)0
-rw-r--r--compositor/compositor-x11.c (renamed from compositor-x11.c)0
-rw-r--r--compositor/compositor.c (renamed from compositor.c)0
-rw-r--r--compositor/compositor.h (renamed from compositor.h)0
-rw-r--r--compositor/drm.c (renamed from drm.c)0
-rw-r--r--compositor/screenshooter.c (renamed from screenshooter.c)0
10 files changed, 33 insertions, 14 deletions
diff --git a/.gitignore b/.gitignore
index bebff81a..435df939 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,7 +2,6 @@
*.o
*.so
*.pc
-compositor
*.jpg
*~
aclocal.m4
diff --git a/Makefile b/Makefile
index 07468553..199914d9 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
include config.mk
-subdirs = clients spec data
+subdirs = compositor clients spec data
libs = libwayland-server.so libwayland-client.so
-all : $(libs) compositor subdirs-all scanner
+all : $(libs) subdirs-all scanner
headers = \
wayland-util.h \
@@ -44,16 +44,6 @@ $(libs) : LDLIBS += $(FFI_LIBS)
$(libs) :
gcc -shared $^ $(LDLIBS) -o $@
-compositor : \
- compositor.o \
- compositor-drm.o \
- compositor-x11.o \
- screenshooter.o \
- drm.o
-
-compositor : CFLAGS += $(COMPOSITOR_CFLAGS)
-compositor : LDLIBS += ./libwayland-server.so $(COMPOSITOR_LIBS) -rdynamic -lrt -lEGL -lm
-
scanner : \
scanner.o \
wayland-util.o
@@ -71,7 +61,7 @@ install : $(libs) compositor subdirs-install
install 70-wayland.rules ${udev_rules_dir}
clean : subdirs-clean
- rm -f compositor scanner *.o *.so .*.deps
+ rm -f scanner *.o *.so .*.deps
rm -f wayland-protocol.c \
wayland-server-protocol.h wayland-client-protocol.h
diff --git a/TODO b/TODO
index 60488878..448a1b26 100644
--- a/TODO
+++ b/TODO
@@ -1,5 +1,17 @@
Core wayland protocol
+ - surface.set_grab_mode(GRAB_OWNER_EVENTS vs GRAB_SURFACE_EVENTS), to
+ make menus work right: click and drag in a menubar grabs the
+ pointer to the menubar (which we need for detecting motion into
+ another menu item), but we need events for the popup menu surface
+ as well.
+
+ - input_device.attach() should use a timestamp so the server can
+ discard late requests (sending a request to set the pointer image
+ in response to a motion event, the pointer leaves and then reenters
+ the surface, before the server receives the reqest -> the server
+ must discard it).
+
- The message format has to include information about number of fds
in the message so we can skip a message correctly. Or we should
just give up on trying to recover from unknown messages.
diff --git a/compositor/Makefile b/compositor/Makefile
new file mode 100644
index 00000000..5e678251
--- /dev/null
+++ b/compositor/Makefile
@@ -0,0 +1,18 @@
+include ../config.mk
+
+CFLAGS += $(COMPOSITOR_CFLAGS)
+LDLIBS += -L.. -lwayland-server $(COMPOSITOR_LIBS) -rdynamic -lrt -lEGL -lm
+
+all : compositor
+
+compositor : \
+ compositor.o \
+ compositor-drm.o \
+ compositor-x11.o \
+ screenshooter.o \
+ drm.o
+
+clean :
+ rm -f compositor *.o .*.deps
+
+install : \ No newline at end of file
diff --git a/compositor-drm.c b/compositor/compositor-drm.c
index 57802d3c..57802d3c 100644
--- a/compositor-drm.c
+++ b/compositor/compositor-drm.c
diff --git a/compositor-x11.c b/compositor/compositor-x11.c
index 1aa45d91..1aa45d91 100644
--- a/compositor-x11.c
+++ b/compositor/compositor-x11.c
diff --git a/compositor.c b/compositor/compositor.c
index f71b7e6d..f71b7e6d 100644
--- a/compositor.c
+++ b/compositor/compositor.c
diff --git a/compositor.h b/compositor/compositor.h
index 2cbdf8e4..2cbdf8e4 100644
--- a/compositor.h
+++ b/compositor/compositor.h
diff --git a/drm.c b/compositor/drm.c
index 1d7bf9b4..1d7bf9b4 100644
--- a/drm.c
+++ b/compositor/drm.c
diff --git a/screenshooter.c b/compositor/screenshooter.c
index aa7788e4..aa7788e4 100644
--- a/screenshooter.c
+++ b/compositor/screenshooter.c