~and471/+junk/do-with-docky

« back to all changes in this revision

Viewing changes to Do.Interface.Linux.Docky/gtk-gui/generated.cs

  • Committer: rugby471 at gmail
  • Date: 2010-10-15 16:08:38 UTC
  • Revision ID: rugby471@gmail.com-20101015160838-z9m3utbf7bxzb5ty
reverted to before docky removal

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// ------------------------------------------------------------------------------
 
2
//  <autogenerated>
 
3
//      This code was generated by a tool.
 
4
//      
 
5
// 
 
6
//      Changes to this file may cause incorrect behavior and will be lost if 
 
7
//      the code is regenerated.
 
8
//  </autogenerated>
 
9
// ------------------------------------------------------------------------------
 
10
 
 
11
namespace Stetic {
 
12
    
 
13
    
 
14
    internal class Gui {
 
15
        
 
16
        private static bool initialized;
 
17
        
 
18
        internal static void Initialize(Gtk.Widget iconRenderer) {
 
19
            if ((Stetic.Gui.initialized == false)) {
 
20
                Stetic.Gui.initialized = true;
 
21
            }
 
22
        }
 
23
    }
 
24
    
 
25
    internal class BinContainer {
 
26
        
 
27
        private Gtk.Widget child;
 
28
        
 
29
        private Gtk.UIManager uimanager;
 
30
        
 
31
        public static BinContainer Attach(Gtk.Bin bin) {
 
32
            BinContainer bc = new BinContainer();
 
33
            bin.SizeRequested += new Gtk.SizeRequestedHandler(bc.OnSizeRequested);
 
34
            bin.SizeAllocated += new Gtk.SizeAllocatedHandler(bc.OnSizeAllocated);
 
35
            bin.Added += new Gtk.AddedHandler(bc.OnAdded);
 
36
            return bc;
 
37
        }
 
38
        
 
39
        private void OnSizeRequested(object sender, Gtk.SizeRequestedArgs args) {
 
40
            if ((this.child != null)) {
 
41
                args.Requisition = this.child.SizeRequest();
 
42
            }
 
43
        }
 
44
        
 
45
        private void OnSizeAllocated(object sender, Gtk.SizeAllocatedArgs args) {
 
46
            if ((this.child != null)) {
 
47
                this.child.Allocation = args.Allocation;
 
48
            }
 
49
        }
 
50
        
 
51
        private void OnAdded(object sender, Gtk.AddedArgs args) {
 
52
            this.child = args.Widget;
 
53
        }
 
54
        
 
55
        public void SetUiManager(Gtk.UIManager uim) {
 
56
            this.uimanager = uim;
 
57
            this.child.Realized += new System.EventHandler(this.OnRealized);
 
58
        }
 
59
        
 
60
        private void OnRealized(object sender, System.EventArgs args) {
 
61
            if ((this.uimanager != null)) {
 
62
                Gtk.Widget w;
 
63
                w = this.child.Toplevel;
 
64
                if (((w != null) && typeof(Gtk.Window).IsInstanceOfType(w))) {
 
65
                    ((Gtk.Window)(w)).AddAccelGroup(this.uimanager.AccelGroup);
 
66
                    this.uimanager = null;
 
67
                }
 
68
            }
 
69
        }
 
70
    }
 
71
    
 
72
    internal class IconLoader {
 
73
        
 
74
        public static Gdk.Pixbuf LoadIcon(Gtk.Widget widget, string name, Gtk.IconSize size, int sz) {
 
75
            Gdk.Pixbuf res = widget.RenderIcon(name, size, null);
 
76
            if ((res != null)) {
 
77
                return res;
 
78
            }
 
79
            else {
 
80
                try {
 
81
                    return Gtk.IconTheme.Default.LoadIcon(name, sz, 0);
 
82
                }
 
83
                catch (System.Exception ) {
 
84
                    if ((name != "gtk-missing-image")) {
 
85
                        return Stetic.IconLoader.LoadIcon(widget, "gtk-missing-image", size, sz);
 
86
                    }
 
87
                    else {
 
88
                        Gdk.Pixmap pmap = new Gdk.Pixmap(Gdk.Screen.Default.RootWindow, sz, sz);
 
89
                        Gdk.GC gc = new Gdk.GC(pmap);
 
90
                        gc.RgbFgColor = new Gdk.Color(255, 255, 255);
 
91
                        pmap.DrawRectangle(gc, true, 0, 0, sz, sz);
 
92
                        gc.RgbFgColor = new Gdk.Color(0, 0, 0);
 
93
                        pmap.DrawRectangle(gc, false, 0, 0, (sz - 1), (sz - 1));
 
94
                        gc.SetLineAttributes(3, Gdk.LineStyle.Solid, Gdk.CapStyle.Round, Gdk.JoinStyle.Round);
 
95
                        gc.RgbFgColor = new Gdk.Color(255, 0, 0);
 
96
                        pmap.DrawLine(gc, (sz / 4), (sz / 4), ((sz - 1) - (sz / 4)), ((sz - 1) - (sz / 4)));
 
97
                        pmap.DrawLine(gc, ((sz - 1) - (sz / 4)), (sz / 4), (sz / 4), ((sz - 1) - (sz / 4)));
 
98
                        return Gdk.Pixbuf.FromDrawable(pmap, pmap.Colormap, 0, 0, 0, 0, sz, sz);
 
99
                    }
 
100
                }
 
101
            }
 
102
        }
 
103
    }
 
104
    
 
105
    internal class ActionGroups {
 
106
        
 
107
        public static Gtk.ActionGroup GetActionGroup(System.Type type) {
 
108
            return Stetic.ActionGroups.GetActionGroup(type.FullName);
 
109
        }
 
110
        
 
111
        public static Gtk.ActionGroup GetActionGroup(string name) {
 
112
            return null;
 
113
        }
 
114
    }
 
115
}