Stetic.EmbedWindow.OnRealized C# (CSharp) Method

OnRealized() private static method

private static OnRealized ( object obj, EventArgs args ) : void
obj object
args System.EventArgs
return void
        private static void OnRealized(object obj, EventArgs args)
        {
            Window window = obj as Window;
            if (obj == null) return;

            window.WidgetFlags |= WidgetFlags.Realized;

            Gdk.WindowAttr attrs = new Gdk.WindowAttr ();
            attrs.Mask = window.Events |
                (Gdk.EventMask.ExposureMask |
                 Gdk.EventMask.KeyPressMask |
                 Gdk.EventMask.KeyReleaseMask |
                 Gdk.EventMask.EnterNotifyMask |
                 Gdk.EventMask.LeaveNotifyMask |
                 Gdk.EventMask.StructureMask);
            attrs.X = window.Allocation.X;
            attrs.Y = window.Allocation.Y;
            attrs.Width = window.Allocation.Width;
            attrs.Height = window.Allocation.Height;
            attrs.Wclass = Gdk.WindowClass.InputOutput;
            attrs.Visual = window.Visual;
            attrs.Colormap = window.Colormap;
            attrs.WindowType = Gdk.WindowType.Child;

            Gdk.WindowAttributesType mask =
                Gdk.WindowAttributesType.X |
                Gdk.WindowAttributesType.Y |
                Gdk.WindowAttributesType.Colormap |
                Gdk.WindowAttributesType.Visual;

            window.GdkWindow = new Gdk.Window (window.ParentWindow, attrs, mask);
            window.GdkWindow.UserData = window.Handle;

            window.Style = window.Style.Attach (window.GdkWindow);
            window.Style.SetBackground (window.GdkWindow, StateType.Normal);

            // FIXME: gtk-sharp 2.6
            // window.GdkWindow.EnableSynchronizedConfigure ();
        }