]> git.sur5r.net Git - i3/i3/log
i3/i3
13 years agoBugfix: Fix the client background rectangle calculation (Thanks Mike)
Michael Stapelberg [Sun, 1 May 2011 20:27:06 +0000 (22:27 +0200)]
Bugfix: Fix the client background rectangle calculation (Thanks Mike)

Really fixes #364.

13 years agoBugfix: For fullscreen cons, use a deco_height of 0 to correctly render the backgroun...
Michael Stapelberg [Sun, 1 May 2011 17:46:41 +0000 (19:46 +0200)]
Bugfix: For fullscreen cons, use a deco_height of 0 to correctly render the background color

This should fix #364.

13 years agoBugfix: Correctly render decorations in tabbed containers (don’t overlap)
Michael Stapelberg [Sun, 1 May 2011 16:48:30 +0000 (18:48 +0200)]
Bugfix: Correctly render decorations in tabbed containers (don’t overlap)

This fixes a regression introduced in b644fb5f26c1768b70c5b49d8cd917a63a2d1d91.

13 years agowizard: actually write the output config
Michael Stapelberg [Sun, 1 May 2011 11:56:35 +0000 (13:56 +0200)]
wizard: actually write the output config

13 years agowizard: check if the config file does not already exist and if we can create it
Michael Stapelberg [Sun, 1 May 2011 10:50:18 +0000 (12:50 +0200)]
wizard: check if the config file does not already exist and if we can create it

13 years agoinitial commit of the i3-config-wizard (GUI working, functionality incomplete)
Michael Stapelberg [Sat, 30 Apr 2011 22:26:10 +0000 (00:26 +0200)]
initial commit of the i3-config-wizard (GUI working, functionality incomplete)

13 years agoBugfix: Add missing tree_render() when handling the urgency hint (Thanks mxf)
Michael Stapelberg [Fri, 29 Apr 2011 22:37:03 +0000 (00:37 +0200)]
Bugfix: Add missing tree_render() when handling the urgency hint (Thanks mxf)

13 years agoFix unaligned memory access on sparc (Thanks David Coppa)
Michael Stapelberg [Thu, 28 Apr 2011 19:44:29 +0000 (21:44 +0200)]
Fix unaligned memory access on sparc (Thanks David Coppa)

13 years agoremove useless checks, size_t != ssize_t :)
Michael Stapelberg [Thu, 28 Apr 2011 18:24:16 +0000 (20:24 +0200)]
remove useless checks, size_t != ssize_t :)

13 years agoMake code compatible with yajl 2.0 *and* 1.0
Michael Stapelberg [Wed, 27 Apr 2011 17:52:53 +0000 (19:52 +0200)]
Make code compatible with yajl 2.0 *and* 1.0

13 years agoBugfix: Ensure that all outputs have a ->con before handling disabled outputs (Thanks...
Michael Stapelberg [Wed, 27 Apr 2011 08:18:46 +0000 (10:18 +0200)]
Bugfix: Ensure that all outputs have a ->con before handling disabled outputs (Thanks JimdiGriz)

Steps to reproduce:
• xrandr --output VGA1 --auto
• xrandr --output LVDS1 --off

13 years agofix warning by removing 'const' from ipc_socket_path
Michael Stapelberg [Tue, 26 Apr 2011 17:28:33 +0000 (19:28 +0200)]
fix warning by removing 'const' from ipc_socket_path

13 years agotests: make complete-run.pl scan tests for !NO_I3_INSTANCE!, simplify code
Michael Stapelberg [Tue, 26 Apr 2011 17:20:29 +0000 (19:20 +0200)]
tests: make complete-run.pl scan tests for !NO_I3_INSTANCE!, simplify code

13 years agotests: add testcase for the different socket path locations
Michael Stapelberg [Tue, 26 Apr 2011 17:15:55 +0000 (19:15 +0200)]
tests: add testcase for the different socket path locations

13 years agoUse XDG_RUNTIME_DIR when available
Sardem FF7 [Mon, 18 Apr 2011 22:22:32 +0000 (00:22 +0200)]
Use XDG_RUNTIME_DIR when available

XDG_RUNTIME_DIR is the volatile runtime data dir provided by modern
session manager such as systemd

13 years agoBugfix: Ignore EnterNotifies generated by UnmapNotifies
Michael Stapelberg [Tue, 19 Apr 2011 19:50:56 +0000 (21:50 +0200)]
Bugfix: Ignore EnterNotifies generated by UnmapNotifies

Actually, commit 1c5adc6c35cffaedc08c7d1dd1b03a3269d1367c commented out code
without ever fixing it. I think this was responsible for the 'workspace
switching sometimes does not work' bug. My observations:

Had it again today and analyzed a log of it. Looks like after unmapping the
windows on one workspace (in my case: chromium, eclipse, urxvt, focus on
eclipse) we get UnmapNotify events for chromium and eclipse, but then we get an
EnterNotify for the terminal (due to unmapping the other windows and therefore
mapping the terminal under the cursor), only afterwards the UnmapNotify
follows.

So, there are two things wrong with that:

• We handle EnterNotifys for unmapped windows

• Unmapping windows sometimes works in a sequence, sometimes the sequence gets
  split. Not sure why (if unmapping can take longer for some windows or if our
  syncing is wrong -- but i checked the latter briefly and it looks correct).
  Maybe GrabServer helps?

• We don’t ignore EnterNotify events caused by UnmapNotifies. We used to, but
  then there was a different problem and we decided to solve the EnterNotify
  problem in another way, which actually never happened (commit
  1c5adc6c35cffaedc08c7d1dd1b03a3269d1367c).

13 years agoRename bind to bindcode
Sardem FF7 [Mon, 18 Apr 2011 21:06:32 +0000 (23:06 +0200)]
Rename bind to bindcode

Also fallback when using just 'bind' to be backward-compatible

13 years agox: Set pixmap as background window, saves a lot of CopyAreas
Michael Stapelberg [Mon, 18 Apr 2011 19:10:50 +0000 (21:10 +0200)]
x: Set pixmap as background window, saves a lot of CopyAreas

13 years agoBugfix: Center floating windows with invalid coordinates on current ws
Michael Stapelberg [Mon, 18 Apr 2011 17:36:10 +0000 (19:36 +0200)]
Bugfix: Center floating windows with invalid coordinates on current ws

13 years agoBugfix: Check if a floating window’s coordinates are within a different workspace...
Michael Stapelberg [Mon, 18 Apr 2011 17:28:03 +0000 (19:28 +0200)]
Bugfix: Check if a floating window’s coordinates are within a different workspace when managing (Thanks Merovius)

Fixes: #297
13 years agoBugfix: Assign floating cons to correct workspace when moving between monitors (Thank...
Michael Stapelberg [Mon, 18 Apr 2011 16:44:39 +0000 (18:44 +0200)]
Bugfix: Assign floating cons to correct workspace when moving between monitors (Thanks dothebart)

Fixes: #371
13 years agoBugfix: When moving floating cons to other workspaces, attach them to the workspace
Michael Stapelberg [Mon, 18 Apr 2011 16:44:18 +0000 (18:44 +0200)]
Bugfix: When moving floating cons to other workspaces, attach them to the workspace

13 years agoBugfix: Don’t set the layout when it’s default layout anyways
Michael Stapelberg [Sat, 2 Apr 2011 20:08:19 +0000 (22:08 +0200)]
Bugfix: Don’t set the layout when it’s default layout anyways

Fixes some nasty side-effects

13 years agoRename new_container to workspace_layout
Michael Stapelberg [Sat, 2 Apr 2011 19:49:35 +0000 (21:49 +0200)]
Rename new_container to workspace_layout

13 years agoImplemented config key 'new_container'
Simon Kampe [Wed, 23 Mar 2011 15:11:46 +0000 (16:11 +0100)]
Implemented config key 'new_container'

13 years agooptimization: when moving floating windows, render/push only the floatingcon
Michael Stapelberg [Fri, 1 Apr 2011 20:40:12 +0000 (22:40 +0200)]
optimization: when moving floating windows, render/push only the floatingcon

13 years agoBugfix: Flush the Xlib connection after creating cursors
Michael Stapelberg [Fri, 1 Apr 2011 19:57:08 +0000 (21:57 +0200)]
Bugfix: Flush the Xlib connection after creating cursors

Fixes a race condition where the cursors were created after we were already
using them.

13 years agox: skip creating pixmaps when the rect is actually invisible
Michael Stapelberg [Fri, 1 Apr 2011 19:54:45 +0000 (21:54 +0200)]
x: skip creating pixmaps when the rect is actually invisible

This fixes a few X11 errors.

13 years agobugfix: fix race condition where window titles were not correctly updated
Michael Stapelberg [Fri, 1 Apr 2011 19:39:58 +0000 (21:39 +0200)]
bugfix: fix race condition where window titles were not correctly updated

Fixes: #351
13 years agox: skip x_draw_decoration when con is not mapped
Michael Stapelberg [Fri, 1 Apr 2011 18:41:08 +0000 (20:41 +0200)]
x: skip x_draw_decoration when con is not mapped

This commit makes workspace switching completely free of cache misses, so
decorations are not re-rendered when switching workspaces.

13 years agox: recurse x_push_node in focus order. reduces flickering when switching workspaces
Michael Stapelberg [Fri, 1 Apr 2011 18:40:32 +0000 (20:40 +0200)]
x: recurse x_push_node in focus order. reduces flickering when switching workspaces

13 years agoSkip FocusIn events with mode == NOTIFY_MODE_GRAB or NOTIFY_MODE_UNGRAB
Michael Stapelberg [Wed, 30 Mar 2011 21:00:48 +0000 (23:00 +0200)]
Skip FocusIn events with mode == NOTIFY_MODE_GRAB or NOTIFY_MODE_UNGRAB

According to the Xlib Programming Manual section 10.7.2 [1], these events are
generated when keyboard grabs activate/deactivate, while we are only interested
in focus changes which are done by other programs independend from the
keyboard.

[1] http://tronche.com/gui/x/xlib/events/input-focus/grab.html

13 years agolittle coding style fixes, fix compilation warning
Michael Stapelberg [Mon, 21 Mar 2011 22:54:13 +0000 (23:54 +0100)]
little coding style fixes, fix compilation warning

13 years agoIf the socket path isn't specified, write it to /tmp.
Fernando Tarlá Cardoso Lemos [Mon, 21 Mar 2011 12:05:58 +0000 (09:05 -0300)]
If the socket path isn't specified, write it to /tmp.

13 years agoFREE() already nulls the pointer
Michael Stapelberg [Mon, 21 Mar 2011 22:49:16 +0000 (23:49 +0100)]
FREE() already nulls the pointer

13 years agoSet the I3_SOCKET_PATH atom to the expanded path.
Fernando Tarlá Cardoso Lemos [Sun, 20 Mar 2011 14:34:34 +0000 (11:34 -0300)]
Set the I3_SOCKET_PATH atom to the expanded path.

13 years agoFocus cons when moving to a visible workspace on a different output (Thanks mseed)
Michael Stapelberg [Sun, 20 Mar 2011 18:32:00 +0000 (19:32 +0100)]
Focus cons when moving to a visible workspace on a different output (Thanks mseed)

Fixes: #355
13 years agoBugfix: Fix switching workspaces on multi-monitor setups (Thanks mseed)
Michael Stapelberg [Sun, 20 Mar 2011 17:27:14 +0000 (18:27 +0100)]
Bugfix: Fix switching workspaces on multi-monitor setups (Thanks mseed)

Fixes #356

13 years agoBugfix: Also invalidate caches of the following cons in a split con on cache miss...
Michael Stapelberg [Sun, 20 Mar 2011 17:17:18 +0000 (18:17 +0100)]
Bugfix: Also invalidate caches of the following cons in a split con on cache miss (Thanks fernandotcl)

13 years agoBugfix: Also update pixmaps when the position of the deco_rect has changed (Thanks...
Michael Stapelberg [Sun, 20 Mar 2011 17:07:07 +0000 (18:07 +0100)]
Bugfix: Also update pixmaps when the position of the deco_rect has changed (Thanks fernandotcl)

13 years agorefactor handlers.{c,h}: declare the handlers static, remove unnecessary parameters
Michael Stapelberg [Sun, 20 Mar 2011 15:53:12 +0000 (16:53 +0100)]
refactor handlers.{c,h}: declare the handlers static, remove unnecessary parameters

13 years agoremove unused struct Colorpixel
Michael Stapelberg [Sun, 20 Mar 2011 15:35:08 +0000 (16:35 +0100)]
remove unused struct Colorpixel

13 years agoHandle FocusIn events generated by clients and update decoration accordingly (Thanks...
Michael Stapelberg [Sun, 20 Mar 2011 15:26:36 +0000 (16:26 +0100)]
Handle FocusIn events generated by clients and update decoration accordingly (Thanks mseed)

13 years agoRemove debugging syncs
Michael Stapelberg [Sun, 20 Mar 2011 13:29:48 +0000 (14:29 +0100)]
Remove debugging syncs

13 years agoRe-implement rendering to pixmaps (double-buffering) and caching decorations
Michael Stapelberg [Sun, 20 Mar 2011 13:07:16 +0000 (14:07 +0100)]
Re-implement rendering to pixmaps (double-buffering) and caching decorations

13 years agoBugfix: Actually re-attach dock clients when outputs get disabled (Thanks phnom)
Michael Stapelberg [Sun, 20 Mar 2011 00:07:21 +0000 (01:07 +0100)]
Bugfix: Actually re-attach dock clients when outputs get disabled (Thanks phnom)

Fixes: #348
13 years agoBugfix: Don’t use the workspace where focus is for deleting workspaces when switching...
Michael Stapelberg [Sat, 19 Mar 2011 22:19:42 +0000 (23:19 +0100)]
Bugfix: Don’t use the workspace where focus is for deleting workspaces when switching (Thanks mseed)

Fixes: #353
13 years agoBugfix: also invalidate focused_id when the to_focus window is not mapped
Michael Stapelberg [Sat, 19 Mar 2011 21:54:53 +0000 (22:54 +0100)]
Bugfix: also invalidate focused_id when the to_focus window is not mapped

This fixes a bug where focus might not be set correctly when changing workspaces

13 years agoHandle saved_configpath in get_config_path, fix memleak in current_configpath handlin...
Michael Stapelberg [Sat, 19 Mar 2011 21:26:15 +0000 (22:26 +0100)]
Handle saved_configpath in get_config_path, fix memleak in current_configpath handling, update atoms after reloading (Thanks fernandotcl)

13 years agoBugfix: correctly store the config path for using it for I3_CONFIG_PATH later
Michael Stapelberg [Sat, 19 Mar 2011 20:50:13 +0000 (21:50 +0100)]
Bugfix: correctly store the config path for using it for I3_CONFIG_PATH later

13 years agoBugfix: fix null-pointer dereference when IPC is disabled (Thanks Merovius)
Michael Stapelberg [Sat, 19 Mar 2011 20:37:27 +0000 (21:37 +0100)]
Bugfix: fix null-pointer dereference when IPC is disabled (Thanks Merovius)

13 years agoi3-msg, i3-input: get the I3_SOCKET_PATH atoms if socket path was not specified
Michael Stapelberg [Sat, 19 Mar 2011 20:23:55 +0000 (21:23 +0100)]
i3-msg, i3-input: get the I3_SOCKET_PATH atoms if socket path was not specified

13 years agoSet the I3_SOCKET_PATH and I3_CONFIG_PATH atoms on the X11 root window
Michael Stapelberg [Sat, 19 Mar 2011 20:20:38 +0000 (21:20 +0100)]
Set the I3_SOCKET_PATH and I3_CONFIG_PATH atoms on the X11 root window

13 years agoBugfix: When there’s nothing to focus, focus the root window (Thanks fernandotcl...
Michael Stapelberg [Sat, 19 Mar 2011 19:43:06 +0000 (20:43 +0100)]
Bugfix: When there’s nothing to focus, focus the root window (Thanks fernandotcl, ThePub)

13 years agotests: add testcase for WM_TAKE_FOCUS
Michael Stapelberg [Sat, 19 Mar 2011 01:21:46 +0000 (02:21 +0100)]
tests: add testcase for WM_TAKE_FOCUS

requires the very latest checkout of X11::XCB

13 years agorendering: correctly draw background rect (Thanks phnom)
Michael Stapelberg [Fri, 18 Mar 2011 19:47:59 +0000 (20:47 +0100)]
rendering: correctly draw background rect (Thanks phnom)

Fixes #347

13 years agoremove hard-coded paths since we now use pkg-config for all the dependencies
Michael Stapelberg [Fri, 18 Mar 2011 17:11:02 +0000 (18:11 +0100)]
remove hard-coded paths since we now use pkg-config for all the dependencies

13 years agoremove obsolete xcb-property line (Thanks SardemFF7)
Michael Stapelberg [Fri, 18 Mar 2011 17:07:04 +0000 (18:07 +0100)]
remove obsolete xcb-property line (Thanks SardemFF7)

13 years agoi3-input: remove dependency on xcb-event
Michael Stapelberg [Fri, 18 Mar 2011 16:32:37 +0000 (17:32 +0100)]
i3-input: remove dependency on xcb-event

13 years agoremove obsolete comment
Michael Stapelberg [Fri, 18 Mar 2011 16:08:48 +0000 (17:08 +0100)]
remove obsolete comment

13 years agoOnly send WM_TAKE_FOCUS when the client supports it in the protocols atom
Michael Stapelberg [Fri, 18 Mar 2011 16:07:56 +0000 (17:07 +0100)]
Only send WM_TAKE_FOCUS when the client supports it in the protocols atom

Fixes opening xterm, for example

13 years agoMake i3 compatible with the very latest xcb
Michael Stapelberg [Fri, 18 Mar 2011 13:36:36 +0000 (14:36 +0100)]
Make i3 compatible with the very latest xcb

This involves:
 • Compiling with xcb-util instead of xcb-{atom,aux} (they merged the libraries)
 • Not using xcb-{event,property} anymore (code removed upstream)
 • Not using the predefined WINDOW, CARDINEL, … atoms (removed upstream)
 • Using the new xcb_icccm_* data types/functions instead of just xcb_*
   (for example xcb_icccm_get_wm_hints instead of xcb_get_wm_hints)

Also I refactored the atoms to use x-macros.

13 years agoSend WM_TAKE_FOCUS to clients when setting focus (fixes java swing problems)
Michael Stapelberg [Thu, 17 Mar 2011 21:27:59 +0000 (22:27 +0100)]
Send WM_TAKE_FOCUS to clients when setting focus (fixes java swing problems)

13 years agoremove orientation and fall back to default behaviour
Michael Stapelberg [Thu, 17 Mar 2011 20:52:12 +0000 (21:52 +0100)]
remove orientation and fall back to default behaviour

13 years agochange the config parser to use default_orientation instead of new_container_orientation
Michael Stapelberg [Thu, 17 Mar 2011 16:55:53 +0000 (17:55 +0100)]
change the config parser to use default_orientation instead of new_container_orientation

It’s a shorter and probably more meaningful description as it is not
immediately clear what a container exactly is when first installing i3.

13 years agocleanup code of workspace rotation on output changes
Michael Stapelberg [Thu, 17 Mar 2011 16:53:56 +0000 (17:53 +0100)]
cleanup code of workspace rotation on output changes

13 years agoAdded config key for default orientation of containers (new_container_orientation...
Simon Kampe [Wed, 16 Mar 2011 10:56:51 +0000 (11:56 +0100)]
Added config key for default orientation of containers (new_container_orientation) and added support in randr.c for automatically changing the orientation when user does a xrandr rotate.

13 years agoWhen making floating cons tiling, re-insert next to the next focused *tiling* con...
Michael Stapelberg [Mon, 14 Mar 2011 22:50:29 +0000 (23:50 +0100)]
When making floating cons tiling, re-insert next to the next focused *tiling* con (Thanks mseed)

Fixes: #337 and #350
13 years agofix small warnings when compiling with DEBUG=0
Michael Stapelberg [Mon, 14 Mar 2011 22:17:52 +0000 (23:17 +0100)]
fix small warnings when compiling with DEBUG=0

13 years agocmdparse: correctly parse con_id/id (fixes warning)
Michael Stapelberg [Mon, 14 Mar 2011 22:14:40 +0000 (23:14 +0100)]
cmdparse: correctly parse con_id/id (fixes warning)

13 years agocmdparse: expect 4 shift/reduce conflicts
Michael Stapelberg [Mon, 14 Mar 2011 22:08:33 +0000 (23:08 +0100)]
cmdparse: expect 4 shift/reduce conflicts

13 years agocmdparse: don’t allow empty operations
Michael Stapelberg [Mon, 14 Mar 2011 22:03:25 +0000 (23:03 +0100)]
cmdparse: don’t allow empty operations

13 years agocmdparse: don’t allow empty commands
Michael Stapelberg [Mon, 14 Mar 2011 22:03:13 +0000 (23:03 +0100)]
cmdparse: don’t allow empty commands

13 years agoremove usless 'operation' token, already handled by 'operation optwhitespace'
Michael Stapelberg [Mon, 14 Mar 2011 21:29:07 +0000 (22:29 +0100)]
remove usless 'operation' token, already handled by 'operation optwhitespace'

13 years agoremove unused current_bindings (left-over from cfgparse.y)
Michael Stapelberg [Mon, 14 Mar 2011 21:28:55 +0000 (22:28 +0100)]
remove unused current_bindings (left-over from cfgparse.y)

13 years agore-implement support for MappingNotifys
Michael Stapelberg [Mon, 14 Mar 2011 16:20:04 +0000 (17:20 +0100)]
re-implement support for MappingNotifys

13 years agoewmh: bump copyright
Michael Stapelberg [Mon, 14 Mar 2011 16:15:18 +0000 (17:15 +0100)]
ewmh: bump copyright

13 years agoewmh: add comment to describe why we count
Michael Stapelberg [Mon, 14 Mar 2011 16:15:04 +0000 (17:15 +0100)]
ewmh: add comment to describe why we count

13 years agoMake it easier to use other atoms.
Fernando Tarlá Cardoso Lemos [Sun, 13 Mar 2011 23:44:16 +0000 (20:44 -0300)]
Make it easier to use other atoms.

13 years agoBring back some more EWMH support.
Fernando Tarlá Cardoso Lemos [Mon, 14 Mar 2011 00:09:32 +0000 (21:09 -0300)]
Bring back some more EWMH support.

13 years agoAdd the "created" parameter to workspace_get.
Fernando Tarlá Cardoso Lemos [Sun, 13 Mar 2011 23:56:04 +0000 (20:56 -0300)]
Add the "created" parameter to workspace_get.

If created is not NULL, *created is set to whether or not the
workspace has been just created.

13 years agoReload the same config file specified in the command line.
Fernando Tarlá Cardoso Lemos [Sun, 13 Mar 2011 23:32:54 +0000 (20:32 -0300)]
Reload the same config file specified in the command line.

Fixes: #346
13 years agoBugfix: restore focus to the correct window when a non-focused window gets destroyed...
Michael Stapelberg [Mon, 14 Mar 2011 15:34:35 +0000 (16:34 +0100)]
Bugfix: restore focus to the correct window when a non-focused window gets destroyed (+testcase)

13 years agorefactor font caching to just save the ID instead of mainting a cache with pattern...
Michael Stapelberg [Thu, 10 Mar 2011 22:20:17 +0000 (23:20 +0100)]
refactor font caching to just save the ID instead of mainting a cache with pattern→id-mapping

13 years agoFallback fonts for when requesting a erronous font with load_font (e.g. user have...
Simon Kampe [Wed, 9 Mar 2011 20:43:50 +0000 (21:43 +0100)]
Fallback fonts for when requesting a erronous font with load_font (e.g. user have specified a font which does not exist in the config file).

13 years agotests: clean up/beautify all tests (code style / test style)
Michael Stapelberg [Wed, 9 Mar 2011 19:25:17 +0000 (20:25 +0100)]
tests: clean up/beautify all tests (code style / test style)

13 years agotests: fix t/19-match.t, needs a delay for i3 to pick up the UnmapNotify event
Michael Stapelberg [Wed, 9 Mar 2011 17:47:00 +0000 (18:47 +0100)]
tests: fix t/19-match.t, needs a delay for i3 to pick up the UnmapNotify event

13 years agoBugfix: Make level up a noop during fullscreen mode (+testcase) (Thanks dothebart)
Michael Stapelberg [Wed, 9 Mar 2011 17:36:45 +0000 (18:36 +0100)]
Bugfix: Make level up a noop during fullscreen mode (+testcase) (Thanks dothebart)

Fixes #341

13 years agoBugfix: Send WM_DELETE / kill window the right way (Thanks dothebart)
Michael Stapelberg [Wed, 9 Mar 2011 17:08:01 +0000 (18:08 +0100)]
Bugfix: Send WM_DELETE / kill window the right way (Thanks dothebart)

Fixes #336

13 years agoproperly clean all files in 'make clean' tree-pr2
Michael Stapelberg [Mon, 7 Mar 2011 19:24:23 +0000 (20:24 +0100)]
properly clean all files in 'make clean'

13 years agoWhen leaving fullscreen, set focus to con which was opened during fullscreen (+testca...
Michael Stapelberg [Sun, 6 Mar 2011 23:06:27 +0000 (00:06 +0100)]
When leaving fullscreen, set focus to con which was opened during fullscreen (+testcase) (Thanks dothebart)

13 years agoBugfix: Don’t focus new cons when there is a fullscreen con (Thanks dothebart)
Michael Stapelberg [Sun, 6 Mar 2011 22:26:02 +0000 (23:26 +0100)]
Bugfix: Don’t focus new cons when there is a fullscreen con (Thanks dothebart)

Also, remove the focus_it parameter from tree_open_con, it makes more sense to
call con_focus outside of the function.

13 years agoBugfix: Fix crash with transient dock clients caused by 7154fecbb
Michael Stapelberg [Sun, 6 Mar 2011 21:02:02 +0000 (22:02 +0100)]
Bugfix: Fix crash with transient dock clients caused by 7154fecbb

13 years agoremove left-over xcb_aux_sync (debugging code)
Michael Stapelberg [Sun, 6 Mar 2011 20:56:15 +0000 (21:56 +0100)]
remove left-over xcb_aux_sync (debugging code)

13 years agox: remove XCB_EVENT_MASK_ENTER_WINDOW from child event mask, already handled in parent
Michael Stapelberg [Sun, 6 Mar 2011 20:49:53 +0000 (21:49 +0100)]
x: remove XCB_EVENT_MASK_ENTER_WINDOW from child event mask, already handled in parent

This prevents unwanted EnterNotifys when switching cons in a stacked con with
an h-split as second child in the stacked con.

13 years agorendering: bugfix: stack child windows of stacked/tabbed cons according to their...
Michael Stapelberg [Sun, 6 Mar 2011 20:49:17 +0000 (21:49 +0100)]
rendering: bugfix: stack child windows of stacked/tabbed cons according to their focus

fixes focusing the wrong window after closing a con

13 years agox: disable all events while re-stacking windows, prevents unwanted EnterNotifys
Michael Stapelberg [Sun, 6 Mar 2011 20:48:49 +0000 (21:48 +0100)]
x: disable all events while re-stacking windows, prevents unwanted EnterNotifys

13 years agoBugfix: use tree_render() instead of x_push_changes() to re-render and update the...
Michael Stapelberg [Sun, 6 Mar 2011 19:45:03 +0000 (20:45 +0100)]
Bugfix: use tree_render() instead of x_push_changes() to re-render and update the stack

13 years agoImplement the popup_during_fullscreen option, set default to leave_fullscreen
Michael Stapelberg [Sun, 6 Mar 2011 14:45:42 +0000 (15:45 +0100)]
Implement the popup_during_fullscreen option, set default to leave_fullscreen

Fixes #333

13 years agoObey minimum size when resizing floating windows
Michael Stapelberg [Sun, 6 Mar 2011 13:15:46 +0000 (14:15 +0100)]
Obey minimum size when resizing floating windows

Fixes #285