diff options
author | Havoc Pennington <hp@pobox.com> | 2002-01-19 23:59:11 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2002-01-19 23:59:11 +0000 |
commit | 5fdb8463def40bdfa208ecfdd4655209c35e0b2b (patch) | |
tree | d3511fd6c884150d0576b37f83f4ebdacfcdd630 /src/wm-tester/Makefile.am | |
parent | 19d2e8c7e1df6fcf12e5e5dcfe36430627eb8cc2 (diff) | |
download | metacity-5fdb8463def40bdfa208ecfdd4655209c35e0b2b.tar.gz metacity-5fdb8463def40bdfa208ecfdd4655209c35e0b2b.tar.bz2 |
cheesy client with static bit gravity, used to test the below change.
2002-01-19 Havoc Pennington <hp@pobox.com>
* src/wm-tester/test-resizing.c: cheesy client with static
bit gravity, used to test the below change.
* src/window.c (meta_window_move_resize_internal): implement
Owen's proposal for window resizing.
http://mail.gnome.org/archives/wm-spec-list/1999-November/msg00088.html
Currently you have to do METACITY_USE_STATIC_GRAVITY=1 in order to
use it, because some GDK bug is screwing up exposes on my frames
when it's enabled.
* src/display.c (meta_display_create_x_cursor): fix glyph for
NE/NW cursors
* src/frames.c (get_control): add ability to resize from top
* src/frame.c (meta_frame_get_flags): can't resize shaded windows
(meta_frame_sync_to_window): add gravity arg
* src/common.h (MetaWindowType): move here from window.h so
it can be used in themes stuff.
(MetaFrameFlags): remove META_FRAME_TRANSIENT since it
overlaps with window type and was unused.
Diffstat (limited to 'src/wm-tester/Makefile.am')
-rw-r--r-- | src/wm-tester/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/wm-tester/Makefile.am b/src/wm-tester/Makefile.am index 8673127..ffecdcc 100644 --- a/src/wm-tester/Makefile.am +++ b/src/wm-tester/Makefile.am @@ -10,8 +10,12 @@ test_gravity_SOURCES= \ focus_window_SOURCES= \ focus-window.c -noinst_PROGRAMS=wm-tester test-gravity focus-window +test_resizing_SOURCES= \ + test-resizing.c + +noinst_PROGRAMS=wm-tester test-gravity test-resizing focus-window wm_tester_LDADD= @METACITY_LIBS@ test_gravity_LDADD= @METACITY_LIBS@ +test_resizing_LDADD= @METACITY_LIBS@ focus_window_LDADD= @METACITY_LIBS@
\ No newline at end of file |