~ubuntu-branches/ubuntu/precise/gnome-do/precise-backports

« back to all changes in this revision

Viewing changes to Do.Interface.Linux.Docky/src/XLib/Xlib.cs

  • Committer: Bazaar Package Importer
  • Author(s): Christopher James Halse Rogers
  • Date: 2009-06-27 10:40:45 UTC
  • mfrom: (1.1.8 upstream) (0.1.5 squeeze)
  • Revision ID: james.westby@ubuntu.com-20090627104045-7st10y1cqr6dpz37
* New upstream release
  + No longer uses a plugin repository.  Fixes many plugin-
    related issues. (LP: #343096, LP: #330025, LP #345001)
  + No longer blocks on "About Do" (LP: #361679)
  + Reacts correctly when a Composite manager is enabled/
    disabled at runtime. (LP: #346347, LP: #390150)
  + Fixes for space reserved by Docky blocking drag and 
    drop operations. (LP: #354729, LP: #347052, LP: #382843)
  + Properly sets "Hidden" key on autostart files in response to 
    "Start on login" option.  (Closes: #526023) (LP: #369988)
* debian/patches/10_application_search_path:
  + Drop; included upstream
* debian/patches/10_sk_translation_update:
  + Import sk translation update from Debian BTS.
    (Closes: #531779)
* debian/patches/11_fix_autostart_when_directory_does_not_exist:
  + Patch from upstream.  Fixes the "Start on login" option when the 
    ~/.config/autostart directory does not exist. (LP: #393729)
* debian/control:
  + Update standards version to 3.8.2; no changes required.
  + Add libtool to Build-Depends; required for autoreconf.
  + Add Recommends: on new gnome-do-docklets package.
* debian/gnome-do.1
  + Fix spelling: GNOME-Do => GNOME Do.
  + Miscelaneous lintian fixes; NAME section, escaping minus signs with \-
* debian/copyright:
  + Update for new copyright holders.
  + Minor update to DEP-5 format

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Permission is hereby granted, free of charge, to any person obtaining
2
 
// a copy of this software and associated documentation files (the
3
 
// "Software"), to deal in the Software without restriction, including
4
 
// without limitation the rights to use, copy, modify, merge, publish,
5
 
// distribute, sublicense, and/or sell copies of the Software, and to
6
 
// permit persons to whom the Software is furnished to do so, subject to
7
 
// the following conditions:
8
 
// 
9
 
// The above copyright notice and this permission notice shall be
10
 
// included in all copies or substantial portions of the Software.
11
 
// 
12
 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13
 
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14
 
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15
 
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16
 
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17
 
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18
 
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19
 
//
20
 
// Copyright (c) 2006 Novell, Inc. (http://www.novell.com)
21
 
//
22
 
//
23
 
 
24
 
using System;
25
 
using System.Text;
26
 
using System.Runtime.InteropServices;
27
 
using System.Collections.Generic;
28
 
using System.Linq;
29
 
 
30
 
namespace Docky.XLib {
31
 
 
32
 
        public enum PropertyMode
33
 
        {
34
 
                PropModeReplace = 0, 
35
 
                PropModePrepend = 1, 
36
 
                PropModeAppend = 2,
37
 
        }
38
 
        
39
 
        public enum Struts 
40
 
        {
41
 
                Left = 0,
42
 
                Right = 1,
43
 
                Top = 2,
44
 
                Bottom = 3,
45
 
                LeftStart = 4,
46
 
                LeftEnd = 5,
47
 
                RightStart = 6,
48
 
                RightEnd = 7,
49
 
                TopStart = 8,
50
 
                TopEnd = 9,
51
 
                BottomStart = 10,
52
 
                BottomEnd = 11
53
 
        }
54
 
        
55
 
        internal class Xlib {
56
 
                const string libX11 = "X11";
57
 
                const string libGdkX11 = "libgdk-x11";
58
 
                
59
 
                [DllImport (libGdkX11)]
60
 
                static extern IntPtr gdk_x11_drawable_get_xid (IntPtr handle);
61
 
                
62
 
                [DllImport (libGdkX11)]
63
 
                static extern IntPtr gdk_x11_drawable_get_xdisplay (IntPtr handle);
64
 
 
65
 
                public static IntPtr GdkWindowX11Xid (Gdk.Window window)
66
 
                {
67
 
                        return gdk_x11_drawable_get_xid (window.Handle);
68
 
                }
69
 
 
70
 
                public static IntPtr GdkDrawableXDisplay (Gdk.Window window)
71
 
                {
72
 
                        return gdk_x11_drawable_get_xdisplay (window.Handle);
73
 
                }
74
 
                
75
 
                [DllImport (libX11)]
76
 
                public extern static IntPtr XOpenDisplay (IntPtr display);
77
 
                
78
 
                [DllImport (libX11)]
79
 
                public extern static int XInternAtoms (IntPtr display, string[] atom_names, int atom_count, bool only_if_exists, IntPtr[] atoms);
80
 
                
81
 
                [DllImport (libX11)]
82
 
                extern static int XChangeProperty (IntPtr display, IntPtr window, IntPtr property, IntPtr type, int format, int mode, IntPtr[] data, int nelements);
83
 
        
84
 
                public static int XChangeProperty (Gdk.Window window, IntPtr property, IntPtr type, int mode, uint[] data)
85
 
                {
86
 
                        IntPtr [] dataArray = data.Select (i => (IntPtr) i).ToArray ();
87
 
                        return XChangeProperty (GdkDrawableXDisplay (window), GdkWindowX11Xid (window), property, type, 32, mode, dataArray, data.Length); 
88
 
                }
89
 
        }
90
 
}