summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Metacity 2.9.21 unstable releaseMETACITY_2_9_21Elijah Newren2005-02-222-0/+51
| | | | | | 2005-02-21 Elijah Newren <newren@gmail.com> * NEWS: Metacity 2.9.21 unstable release
* Handle keynav vs. mousenav in mouse and sloppy focus modes. Fixes #167545.Elijah Newren2005-02-227-19/+152
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2005-02-21 Elijah Newren <newren@gmail.com> Handle keynav vs. mousenav in mouse and sloppy focus modes. Fixes #167545. * doc/how-to-get-focus-right.txt: Update due to this new method for handling keynav vs. mousenav, plus various other updates that I previously forgot. * src/display.h: (struct _MetaDisplay): add a mouse_mode boolean * src/display.c: (meta_display_open): initialize mouse_mode to true, (event_callback): have EnterNotify and LeaveNotify events set mouse_mode to true when focusing a window * src/keybindings.c: (process_tab_grab): set mouse_mode to false when using alt-tab/alt-esc, (do_choose_window): likewise, (do_handle_move_to_workspace): set mouse_mode to false on move-window-to-workspace-<n> keybindings * src/window.c (idle_calc_showing): if we're in keynav mode while using sloppy or mouse focus, use metacity_sentinel to avoid EnterNotify events being generated from events other than mouse movement. * src/workspace.c (meta_workspace_activate_with_focus): add a FIXME in a potentially duplicate section of code, (meta_workspace_focus_default_window): use the same focus choice as click-to-focus if in keynav mode.
* Updated french translation.Christophe Merlet2005-02-212-71/+54
|
* the file is actually in UTF-8Bastien Nocera2005-02-212-1/+5
| | | | | | 2005-02-21 Bastien Nocera <hadess@hadess.net> * en_GB.po: the file is actually in UTF-8
* fixed typoLeonid Kanter2005-02-211-2/+2
|
* Updated Danish translation.Martin Willemoes Hansen2005-02-212-31/+40
| | | | * da.po: Updated Danish translation.
* Translation updated by Tõivo Leedjärv.Priit Laes2005-02-212-33/+36
| | | | | | 2005-02-21 Priit Laes <plaes@cvs.gnome.org> * et.po: Translation updated by Tõivo Leedjärv.
* Handle _NET_CURRENT_DESKTOP messages that come with timestamps. Fixes theElijah Newren2005-02-202-4/+17
| | | | | | | | 2005-02-20 Elijah Newren <newren@gmail.com> * src/display.c: (event_callback): Handle _NET_CURRENT_DESKTOP messages that come with timestamps. Fixes the metacity portion of #161361 other than the portion handled by #128380.
* when receiving a _NET_ACTIVE_WINDOW message, switch to the desktop whereElijah Newren2005-02-202-12/+29
| | | | | | | | | | 2005-02-20 Elijah Newren <newren@gmail.com> * src/window.c: (meta_window_activate): when receiving a _NET_ACTIVE_WINDOW message, switch to the desktop where the window is located before activating instead of moving the window to the current desktop. Thanks to Lubos Lunak for catching this issue. Fixes #128380.
* Ignore all focus and focus-stealing-prevention code in meta_window_showElijah Newren2005-02-202-1/+8
| | | | | | | | 2005-02-20 Elijah Newren <newren@gmail.com> * src/window.c (meta_window_show): Ignore all focus and focus-stealing-prevention code in meta_window_show when not showing the window for the first time. Fixes #167199.
* Fix an obscure xinerama placement bug with windows that are too large toElijah Newren2005-02-202-2/+10
| | | | | | | | | | 2005-02-20 Elijah Newren <newren@gmail.com> Fix an obscure xinerama placement bug with windows that are too large to fit in the workarea in both dimensions. #166757 * src/place.c: (meta_window_place): use the current xinerama instead of arbitrarily resetting to 0
* Patch from Joe Marcus Clarke to fix a possible crash on logout. #167935.Elijah Newren2005-02-202-0/+9
| | | | | | | | | | 2005-02-20 Elijah Newren <newren@gmail.com> Patch from Joe Marcus Clarke to fix a possible crash on logout. #167935. Thanks for fixing my mistakes, Joe! * src/display.c: (meta_display_open): initialize display->grab_old_window_stacking to NULL.
* Big patch to cover about 6 different issues in order to correct rareElijah Newren2005-02-206-44/+229
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2005-02-20 Elijah Newren <newren@gmail.com> Big patch to cover about 6 different issues in order to correct rare problems with timestamps (make sure window selected in tasklist actually gets focus, sanity check timestamps to avoid rogue apps hosing the system, correct the updating of net_wm_user_time, correctly handle timestamps of 0 when comparing xserver timestamps for those who have had their systems up for over 25 days or so, add some debugging information to verbose logs, some code cleanups). Fixes all issues listed in #167358. * src/display.h: (struct _MetaDisplay): clarify comment on last_focus_time, introduce a new variable--last_user_time, (XSERVER_TIME_IS_BEFORE macro): put this functionality into a separate macro and then introduce a new macro with this name that uses the old one but adds additional special-case checks for timestamps that are 0, (comment to meta_display_set_input_focus_window): add information about how last_user_time should be used in this function * src/display.c (santiy_check_timestamps): new function, (meta_display_open): intialize display->last_user_time, (meta_display_get_current_time_roundtrip): use the timestamp, which is known to be good, in order to sanity_check_timestamps, (event_callback): use the new meta_window_ste_user_time() function in order to correct problems, use the timestamp of KeyPress and ButtonPress events, which are known to be good, in order to sanity_check_timestamps, (timestamp_too_old): new function for common behavior of meta_display_focus_the_no_focus_window and meta_display_set_input_focus_window, with added checking for display->last_user_time in addition to display->last_focus_time, (meta_display_set_input_focus_window): replace some of the code with a call to timestamp_too_old(), (meta_display_focus_the_no_focus_window): replace some of th ecode with a call to timestamp_too_old() * src/window.h: (meta_window_set_user_time): new function to abstract the many things that need to be done when updating the net_wm_user_time of any window * src/window.c: (meta_window_activate): add debugging spew, make sure the comparison is made with last_user_time NOT last_focus_time, use meta_window_set_user_time() function in order to correct problems, (meta_window_client_message): add a newline to a debugging message to make them easier to read, (meta_window_set_user_time): new function * src/window-props.c (reload_net_wm_user_time): use the new meta_window_ste_user_time() function in order to correct problems
* Updated Korean translation.Changwoo Ryu2005-02-182-496/+538
| | | | | | 2005-02-18 Changwoo Ryu <cwryu@debian.org> * ko.po: Updated Korean translation.
* Updated Portuguese translation.Duarte Loreto2005-02-182-33/+43
| | | | | | 2005-02-18 Duarte Loreto <happyguy_pt@hotmail.com> * pt.po: Updated Portuguese translation.
* Translation updated by Tino Meinen.Vincent van Adrighem2005-02-172-31/+39
| | | | | | 2005-02-17 Vincent van Adrighem <adrighem@gnome.org> * nl.po: Translation updated by Tino Meinen.
* Updated Albanian translation.Laurent Dhima2005-02-172-114/+70
| | | | | | 2005-02-17 Laurent Dhima <laurenti@alblinux.net> * sq.po: Updated Albanian translation.
* trivial fix to a log message: change %d to %lu (see debugging log from bugElijah Newren2005-02-162-1/+6
| | | | | | | 2005-02-16 Elijah Newren <newren@gmail.com> * src/display.c: (event_callback): trivial fix to a log message: change %d to %lu (see debugging log from bug 167358).
* Updated Catalan translation.Jordi Mallach2005-02-162-522/+532
|
* Update Ukrainian translation.Maxim Dziumanenko2005-02-152-116/+96
| | | | | | 2005-02-15 Maxim Dziumanenko <mvd@mylinux.com.ua> * Update Ukrainian translation.
* s/applikasjon/program SameKjartan Maraas2005-02-153-58/+63
| | | | | | | 2005-02-15 Kjartan Maraas <kmaraas@gnome.org> * nb.po: s/applikasjon/program * no.po: Same
* Updated Slovak translation.Marcel Telka2005-02-122-238/+235
| | | | | | 2005-02-12 Marcel Telka <marcel@telka.sk> * sk.po: Updated Slovak translation.
* Updated Japanese translation for v2.9.13.Takeshi AIHANA2005-02-122-500/+527
| | | | | 2005-02-12 Takeshi AIHANA <aihana@gnome.gr.jp> * ja.po: Updated Japanese translation for v2.9.13.
* Raise the ancestor of a window instead of the window itself. FixesElijah Newren2005-02-122-2/+42
| | | | | | | | | | | 2005-02-12 Elijah Newren <newren@gmail.com> Raise the ancestor of a window instead of the window itself. Fixes #166894. * src/window.c: (find_root_ancestor): new function, (meta_window_raise): get the ancestor of the given window and raise it if possible instead of the window
* Don't unconditionally place splashscreens (and other not-to-befocusedElijah Newren2005-02-122-82/+138
| | | | | | | | | | | | | | | | 2005-02-12 Elijah Newren <newren@gmail.com> Don't unconditionally place splashscreens (and other not-to-befocused windows) below the focus window. Fixes #167042. * src/window.c: (intervening_user_event_occurred): new function taken from the timestamp comparison portion of the old window_takes_focus_on_map function, (window_state_on_map): new function with remainder of old window_takes_focus_on_map function that determines both whether the window will take focus and whether it should be placed on top, (meta_window_show): use place_on_top_on_map to determine window stacking instead of trying to infer it from takes_focus_on_map
* Avoid new windows being obscured by the focus window (and thus possiblyElijah Newren2005-02-114-1/+160
| | | | | | | | | | | | | | | | | | | | | | | 2005-02-11 Elijah Newren <newren@gmail.com> Avoid new windows being obscured by the focus window (and thus possibly lost). Fixes #166524. * src/place.c: new MetaWindowDirection enum, (find_most_freespace): new function to find where there is the most space available around the focused window, (meta_window_place): if a window is denied focus and the window overlaps the focused window, retry the first-fit algorithm only paying attention to the focus window position and if that fails just find the location on the screen with the most space available. * src/window.h: (struct MetaWindow): new denied_focus_and_not_transient bitfield * src/window.c: (meta_window_new_with_attrs): initialize denied_focus_and_not_transient, (meta_window_show): set and unset the denied_focus_and_not_transient field appropriately
* Updated Greek Translation.Kostas Papadimas2005-02-112-36/+40
|
* Updated Spanish translation.Francisco Javier F. Serrador2005-02-102-30/+32
| | | | | | 2005-02-10 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation.
* Removed useless function call. #166730Aidan Delaney2005-02-092-3/+8
| | | | | | | | | | 2005-02-08 Aidan Delaney <adelaney@cs.may.ie> Removed useless function call. #166730 * src/tabpopup.c: (outline_window_expose): Removed unused references to variables and an unnecessary function call to gdk_window_get_size().
* Avoid using CurrentTime when focusing, handle it better in case we missElijah Newren2005-02-093-2/+18
| | | | | | | | | | | | | | | 2005-02-08 Elijah Newren <newren@gmail.com> Avoid using CurrentTime when focusing, handle it better in case we miss any cases. Fixes #166732. * src/window.c: (meta_window_shade): use meta_display_get_current_time_roundtrip() to ensure we have a valid timestamp, (meta_window_unshade): same * src/display.c: (meta_display_set_input_focus_window): If CurrentTime was passed, get one from the XServer in addition to throwing a warning, (meta_display_focus_the_no_focus_window): same
* If we're not passed a timestamp, make sure to manually get one. FixesElijah Newren2005-02-092-2/+9
| | | | | | | 2005-02-08 Elijah Newren <newren@gmail.com> * src/window.c: (meta_window_activate): If we're not passed a timestamp, make sure to manually get one. Fixes #166728.
* Updated Russian translationLeonid Kanter2005-02-082-140/+72
|
* Update UpdateKjartan Maraas2005-02-083-12/+17
| | | | | | | 2005-02-08 Kjartan Maraas <kmaraas@gnome.org> * nb.po: Update * no.po: Update
* post-release version bump to 2.9.21Elijah Newren2005-02-072-1/+5
| | | | | | 2005-02-07 Elijah Newren <newren@gmail.com> * configure.in: post-release version bump to 2.9.21
* Metacity 2.9.13 unstable releaseMETACITY_2_9_13Elijah Newren2005-02-072-0/+71
| | | | | | 2005-02-07 Elijah Newren <newren@gmail.com> * NEWS: Metacity 2.9.13 unstable release
* Updated British translation.David Lodge2005-02-072-1400/+449
| | | | | | 2005-02-07 David Lodge <dave@cirt.net> * en_GB.po: Updated British translation.
* Set a _METACITY_VERSION property (a utf8 string) on the WM check window.Elijah Newren2005-02-073-2/+22
| | | | | | | | | | | | | | 2005-02-06 Elijah Newren <newren@gmail.com> Set a _METACITY_VERSION property (a utf8 string) on the WM check window. #165350. * src/display.h: (struct MetaDisplay): add a atom_metacity_version field * src/display.c: (meta_display_open): initialize the _METACITY_VERSION property on the WM check window to the current version of Metacity.
* Updated Canadian English translation.Adam Weinberger2005-02-062-6/+10
| | | | * en_CA.po: Updated Canadian English translation.
* Ignore xconfigurerequest events for stacking when it should be safe to doElijah Newren2005-02-062-11/+50
| | | | | | | | | | | | | | | 2005-02-06 Elijah Newren <newren@gmail.com> Ignore xconfigurerequest events for stacking when it should be safe to do so. Again, thanks to Crispin Flowerday for the test case. Thanks to KWin for the inspiration (and to Google for indexing their source code). Fixes the other half of #166395. * src/window.c: (meta_window_configure_request): if the active_window is from a separate application than the one getting the configure request and the net_wm_user_time of the active window is later than that of the window getting the configure request, then ignore the request.
* If activation requests are too old, set the demands_attention hint insteadElijah Newren2005-02-062-0/+23
| | | | | | | | | | | 2005-02-06 Elijah Newren <newren@gmail.com> If activation requests are too old, set the demands_attention hint instead of actually activating. Thanks to Crispin Flowerday for the test case and for testing the patch. Fixes half of #166395. * src/window.c: (meta_window_activate): if the request came before the last focus time, set the demands attention hint instead
* Updated Czech translation.Miloslav Trmac2005-02-062-13/+10
| | | | | | 2005-02-06 Miloslav Trmac <mitr@volny.cz> * cs.po: Updated Czech translation.
* Updated Simplified Chinese translationFunda Wang2005-02-061-4/+4
|
* Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>Alexander Shopov2005-02-062-79/+41
| | | | | | | 2005-02-06 Alexander Shopov <ash@contact.bg> * bg.po: Updated Bulgarian translation by Vladimir Petkov <vpetkov@i-space.org>
* Updated Finnish translation.Pauli Virtanen2005-02-062-72/+41
| | | | | | 2005-02-06 Pauli Virtanen <pauli.virtanen@hut.fi> * fi.po: Updated Finnish translation.
* Updated German translation.Frank Arnold2005-02-052-7/+11
| | | | | | 2005-02-05 Frank Arnold <farnold@cvs.gnome.org> * de.po: Updated German translation.
* Updated Spanish translation.Francisco Javier F. Serrador2005-02-052-62/+39
| | | | | | 2005-02-05 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation.
* Updated Lithuanian translation.Žygimantas Beručka2005-02-052-11/+15
| | | | | | 2005-02-05 Žygimantas Beručka <uid0@akl.lt> * lt.po: Updated Lithuanian translation.
* Add period to the end of reduced_resources' description. Fixes #165780.Dave Ahlswede2005-02-052-1/+6
| | | | | | | 2005-02-04 Dave Ahlswede <mightyquinn@letterboxes.org> * src/metacity.schemas.in: Add period to the end of reduced_resources' description. Fixes #165780.
* Make sure window->border_only is initialized so we don't get randomElijah Newren2005-02-052-0/+10
| | | | | | | | | | | 2005-02-04 Elijah Newren <newren@gmail.com> Make sure window->border_only is initialized so we don't get random windows without decorations. Thanks to Sinisa Segvic and Owen Taylor for providing test cases. Fixes #145131. * src/window.c: (update_mwm_hints): Be sure to call recalc_window_features even if no MWM hints are set
* Updated Spanish translation.Francisco Javier F. Serrador2005-02-042-33/+64
| | | | | | 2005-02-04 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation.