Retourner au contenu associé (entrée de forum : Affichage OSD)
Posté par Mildred (site web personnel) le 29 novembre 2009 à 00:47. En réponse au message Affichage OSD. Évalué à 2.
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
[^] # Re: Voici la fonction responsable
Posté par Mildred (site web personnel) . En réponse au message Affichage OSD. Évalué à 2.
static void make_skip_input (GtkWidget *widget)
{
GtkAllocation allocation;
GdkBitmap *mask;
gtk_widget_get_allocation (widget, &allocation);
mask = gdk_pixmap_new (gtk_widget_get_window (widget),
allocation.width,
allocation.height,
1);
/* make the whole window ignore events */
gdk_window_input_shape_combine_mask (gtk_widget_get_window (widget), mask, 0, 0);
g_object_unref (mask);
}
http://git.gnome.org/cgit/gnome-settings-daemon/tree/plugins(...) (fonction gsd_media_keys_window_real_realize)