summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-12-30Add listener interfaces for output and input_device objects.Kristian Høgsberg6-316/+515
2008-12-30Use a more generic glob for input devices.Kristian Høgsberg1-3/+3
2008-12-24Add client side demarshalling for events.Kristian Høgsberg7-312/+322
This also consolidates the marshalling code in connection.c and uses the same functions in the server and client for marshalling.
2008-12-22Track objects client side using a hash too.Kristian Høgsberg5-52/+79
This leads up to using the demarshal machinery for decoding events in the client library.
2008-12-22Add a proxy for the server side output object.Kristian Høgsberg4-18/+45
2008-12-22Add a fullscreen mode to the terminal.Kristian Høgsberg3-77/+168
2008-12-21Add hook to allow globals to send cold-plug events to new clients.Kristian Høgsberg7-22/+124
This lets us boot strap the client side state cache. This commit also adds the first user of this feature, an output object that represents the current output. Very simple at this point, but will grow to something more like RandR 1.2.
2008-12-21Also check for interface version wl_display_get_object_id().Kristian Høgsberg3-6/+8
2008-12-21Send client id range as an event.Kristian Høgsberg4-32/+68
This also makes the server send the event again when the client is about to exhaust its current client range.
2008-12-21Represent event and method metadata with struct wl_message.Kristian Høgsberg4-16/+11
2008-12-21Move protocol metadata to wayland-protocol.[ch].Kristian Høgsberg9-216/+263
This lets us share the metadata between server and client and we can now use a va_arg marshalling function for sending client requets.
2008-12-21Advertise globals using a new display event.Kristian Høgsberg3-61/+62
2008-12-21Consolidate tty setup and fix a few spacing issues.Kristian Høgsberg1-50/+31
2008-12-21Oops, fix compilation.Kristian Høgsberg1-4/+4
2008-12-21Move coordinate transformation to pick_surface().Kristian Høgsberg1-11/+8
2008-12-20Only forward events to compositor if on active VTRay Strode1-0/+17
Previously, we'd send things like the user's password to the active irc window when they logged into a getty running on a different tty.
2008-12-19Handle more control characters in terminal.Kristian Høgsberg1-14/+14
2008-12-19Ignore tty inputRay Strode1-3/+75
Previously, ctrl-c would kill wayland and input like passwords and commands would get typed into the terminal under the scenes.
2008-12-19Drop the silly overlay hack.Kristian Høgsberg1-162/+4
2008-12-19Rename egl-compositor to wayland-system-compositor.Kristian Høgsberg5-69/+81
The wayland-system-compositor is the top-level compositor. X sessions or nested Wayland sessions will run as clients of the system compositor. The system compositor is licensed under the GPL.
2008-12-19Use the new eagle config chooser for picking the config.Kristian Høgsberg1-56/+13
2008-12-19Remove visual debug prints.Kristian Høgsberg1-4/+0
2008-12-19Cache modesetting data and just do drmModeSetCrtc on vt enter.Kristian Høgsberg1-68/+25
2008-12-19Do vt ioctl on the right fd.Kristian Høgsberg1-2/+3
2008-12-19Restore framebuffer when switching back to VTvt-restoreRay Strode1-5/+98
The kernel currently automatically redirects output to the kernel framebuffer when switching VTs away from wayland. It doesn't restore output back to wayland's fb when coming back to the VT. This patch works around that issue.
2008-12-19Add new event loop api for watching signalsRay Strode2-0/+90
This will provide us with a nice, safe mechanism for getting notification of VT changes.
2008-12-18Force pointer to stay on screen.Ray Strode1-0/+10
Without this change it's really easy to accidentally send the pointer flying and not be able to get it back.
2008-12-18Scale background pixbuf when loading.Kristian Høgsberg1-5/+4
This lets us avoid hitting the texture limit for some backgrounds.
2008-12-18Fix rgb byte order for GdkPixbuf backgrounds.Ray Strode1-1/+9
2008-12-18Remember to handle rgb_visual case in surface_attach.Kristian Høgsberg1-0/+2
2008-12-18Add preliminary visual support.Kristian Høgsberg7-29/+148
2008-12-18Set terminal type to vt100.Kristian Høgsberg1-0/+1
2008-12-18Don't pin front buffer, kernel modesetting takes care of that now.Kristian Høgsberg1-8/+0
2008-12-18Fall back to solid color background if not image is found.Kristian Høgsberg1-1/+5
2008-12-15Redesign the compositor / server interface.Kristian Høgsberg9-342/+286
This lets the compositor directly provide the implementation of the RMI objects for the surface object and a new compositor object. We avoid the manual forwarding of requests into the compositor and the clumsy compositor interface struct.
2008-12-14Use gdk-pixbuf for saving the screenshot.Kristian Høgsberg1-119/+7
2008-12-14Initialize count to 0 in wl_list_length().Kristian Høgsberg1-0/+1
Not sure how this ever really worked before...
2008-12-12Fix default input device path.Kristian Høgsberg1-1/+2
2008-12-12Handle per-device keyboard focus.Kristian Høgsberg1-9/+8
2008-12-12Don't close uninitialized fd, check forkpty error.Kristian Høgsberg1-3/+6
2008-12-12Make multi-pointer work.Kristian Høgsberg3-47/+80
This also add command line parsing as a way to specify the input device files to use.
2008-12-12Add option parsing using GOption.Kristian Høgsberg1-5/+18
2008-12-12Make sure we initialize object hash.Kristian Høgsberg3-11/+42
This patch also move the hash implementation details to wayland-util.c.
2008-12-12Use the screen size for sizing the background.Kristian Høgsberg1-1/+1
2008-12-12Pass -fPIC when compiling shared libraries.Kristian Høgsberg1-0/+1
2008-12-12Forgot to add egl-compositor.h.Kristian Høgsberg1-0/+15
2008-12-11Implement passive grabs on button clicks.Kristian Høgsberg1-6/+20
2008-12-11Rewrite input event delivery path.Kristian Høgsberg6-181/+141
Instead of having the input driver push the events into the core server, only to have the server call back out to the compositor hooks, the driver now just calls the compositor directly. The input drivers are always dependent on the type of compositor anyway so there was no point in passing the events through the server. Now the server is only involved when it's time to actually send the events to the clients.
2008-12-10Fix signature for pointer motion event.Kristian Høgsberg1-1/+1
2008-12-10Drop glx-compositor for now.Kristian Høgsberg2-385/+1
Might want to resurrect this later, but for now, let's not try to drag it along.