~do-win/do/test-paths

« back to all changes in this revision

Viewing changes to Do.Interface.Windows/src/Do.Interface/ClassicInterface/ClassicWindow.cs

  • Committer: Hardeep S
  • Date: 2009-06-23 20:13:50 UTC
  • Revision ID: ootz0rz@gmail.com-20090623201350-pxjo5vt6yyt1xz3i
remove the need for GConf

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
                PositionWindow positionWindow;
42
42
                HBox resultsHBox;
43
43
                IconBox[] iconbox;
44
 
                GConf.Client gconfClient;
 
44
                //GConf.Client gconfClient;
45
45
                IDoController controller;
46
46
                
47
47
                const int IconBoxIconSize = 128;
96
96
                {
97
97
                        this.controller = controller;
98
98
                        
 
99
                        /*
99
100
                        gconfClient = new GConf.Client ();
100
101
                        gconfClient.AddNotify ("/desktop/gnome/interface",
101
102
                                new GConf.NotifyEventHandler (DesktopThemeChanged));
 
103
                        */
102
104
                        
103
105
                        Build ();
104
106
                }
140
142
                        vbox.BorderWidth = IconBoxPadding;
141
143
                        vbox.Show ();
142
144
 
143
 
                        settings_icon = new Gtk.Image (GetType().Assembly, "settings-triangle.png");
 
145
                        settings_icon = new Gtk.Image ("/Resources/settings-triangle.png");
144
146
 
145
147
                        align = new Alignment (1.0F, 0.0F, 0, 0);
146
148
                        align.SetPadding (3, 0, 0, IconBoxPadding);
250
252
                        Reposition ();
251
253
                }
252
254
                
 
255
                /*
253
256
                private void DesktopThemeChanged (object o, GConf.NotifyEventArgs e)
254
257
                {
255
258
                        //this is needed to account for the delay between the gconf change
262
265
                                return false;
263
266
                        });
264
267
                }
 
268
                */
265
269
                
266
270
                public virtual void Reposition ()
267
271
                {