summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Müllner <fmuellner@gnome.org>2019-03-06 23:56:33 +0100
committerMarco Trevisan <mail@3v1n0.net>2019-03-12 00:27:07 +0000
commit7bd33e7b0027f51307657938db3b4cc1a8d03dde (patch)
tree5c1053031681936200cf0b7c376b5b19ec48b347
parentf8d62da2dc4c710246425ea89c09f41e7713371f (diff)
downloadmutter-wip/fmuellner/flash-flash.tar.gz
frame: Remove flashing supportwip/fmuellner/flash-flash
It's now unused. https://gitlab.gnome.org/GNOME/mutter/issues/491
-rw-r--r--src/core/bell.c16
-rw-r--r--src/core/bell.h11
-rw-r--r--src/core/frame.c6
-rw-r--r--src/core/frame.h1
-rw-r--r--src/meta/common.h8
-rw-r--r--src/ui/theme.c2
6 files changed, 3 insertions, 41 deletions
diff --git a/src/core/bell.c b/src/core/bell.c
index aa334d641..d7000b250 100644
--- a/src/core/bell.c
+++ b/src/core/bell.c
@@ -207,19 +207,3 @@ meta_bell_notify (MetaDisplay *display,
return TRUE;
}
-
-/**
- * meta_bell_notify_frame_destroy:
- * @frame: The frame which is being destroyed
- *
- * Deals with a frame being destroyed. This is important because if we're
- * using a visual bell, we might be flashing the edges of the frame, and
- * so we'd have a timeout function waiting ready to un-flash them. If the
- * frame's going away, we can tell the timeout not to bother.
- */
-void
-meta_bell_notify_frame_destroy (MetaFrame *frame)
-{
- if (frame->is_flashing)
- g_source_remove_by_funcs_user_data (&g_timeout_funcs, frame);
-}
diff --git a/src/core/bell.h b/src/core/bell.h
index 9205b0814..f86cbb7c2 100644
--- a/src/core/bell.h
+++ b/src/core/bell.h
@@ -41,14 +41,3 @@ MetaBell * meta_bell_new (MetaDisplay *display);
*/
gboolean meta_bell_notify (MetaDisplay *display,
MetaWindow *window);
-
-/**
- * meta_bell_notify_frame_destroy:
- * @frame: The frame which is being destroyed
- *
- * Deals with a frame being destroyed. This is important because if we're
- * using a visual bell, we might be flashing the edges of the frame, and
- * so we'd have a timeout function waiting ready to un-flash them. If the
- * frame's going away, we can tell the timeout not to bother.
- */
-void meta_bell_notify_frame_destroy (MetaFrame *frame);
diff --git a/src/core/frame.c b/src/core/frame.c
index 7eea0a336..769946147 100644
--- a/src/core/frame.c
+++ b/src/core/frame.c
@@ -60,7 +60,6 @@ meta_window_ensure_frame (MetaWindow *window)
frame->right_width = 0;
frame->current_cursor = 0;
- frame->is_flashing = FALSE;
frame->borders_cached = FALSE;
meta_verbose ("Frame geometry %d,%d %dx%d\n",
@@ -177,8 +176,6 @@ meta_window_destroy_frame (MetaWindow *window)
meta_frame_calc_borders (frame, &borders);
- meta_bell_notify_frame_destroy (frame);
-
/* Unparent the client window; it may be destroyed,
* thus the error trap.
*/
@@ -298,9 +295,6 @@ meta_frame_get_flags (MetaFrame *frame)
if (frame->window->fullscreen)
flags |= META_FRAME_FULLSCREEN;
- if (frame->is_flashing)
- flags |= META_FRAME_IS_FLASHING;
-
if (frame->window->wm_state_above)
flags |= META_FRAME_ABOVE;
diff --git a/src/core/frame.h b/src/core/frame.h
index 73a7b4bf6..c0bacbe6f 100644
--- a/src/core/frame.h
+++ b/src/core/frame.h
@@ -49,7 +49,6 @@ struct _MetaFrame
int bottom_height;
guint need_reapply_frame_shape : 1;
- guint is_flashing : 1; /* used by the visual bell flash */
guint borders_cached : 1;
MetaUIFrame *ui_frame;
diff --git a/src/meta/common.h b/src/meta/common.h
index 02e280277..670097bff 100644
--- a/src/meta/common.h
+++ b/src/meta/common.h
@@ -63,7 +63,6 @@
* @META_FRAME_ALLOWS_SHADE: frame allows shade
* @META_FRAME_ALLOWS_MOVE: frame allows move
* @META_FRAME_FULLSCREEN: frame allows fullscreen
- * @META_FRAME_IS_FLASHING: frame is flashing
* @META_FRAME_ABOVE: frame is above
* @META_FRAME_TILED_LEFT: frame is tiled to the left
* @META_FRAME_TILED_RIGHT: frame is tiled to the right
@@ -83,10 +82,9 @@ typedef enum
META_FRAME_ALLOWS_SHADE = 1 << 10,
META_FRAME_ALLOWS_MOVE = 1 << 11,
META_FRAME_FULLSCREEN = 1 << 12,
- META_FRAME_IS_FLASHING = 1 << 13,
- META_FRAME_ABOVE = 1 << 14,
- META_FRAME_TILED_LEFT = 1 << 15,
- META_FRAME_TILED_RIGHT = 1 << 16
+ META_FRAME_ABOVE = 1 << 13,
+ META_FRAME_TILED_LEFT = 1 << 14,
+ META_FRAME_TILED_RIGHT = 1 << 15
} MetaFrameFlags;
/**
diff --git a/src/ui/theme.c b/src/ui/theme.c
index 53d7ef555..b7618d9c0 100644
--- a/src/ui/theme.c
+++ b/src/ui/theme.c
@@ -1186,8 +1186,6 @@ meta_style_info_set_flags (MetaStyleInfo *style_info,
int i;
backdrop = !(flags & META_FRAME_HAS_FOCUS);
- if (flags & META_FRAME_IS_FLASHING)
- backdrop = !backdrop;
if (flags & META_FRAME_MAXIMIZED)
class_name = "maximized";