Package iceprod :: Package client :: Module GtkIPModule
[hide private]
[frames] | no frames]

Source Code for Module iceprod.client.GtkIPModule

 1  """ 
 2    Gtk from for displaying and configuring IceTray Modules in  
 3    GtkIcetraConfig application 
 4   
 5    copyright  (c) 2005 the icecube collaboration 
 6   
 7    @version: $Revision: $ 
 8    @date: $Date:  $ 
 9    @author: Juan Carlos Diaz Velez <juancarlos@icecube.wisc.edu> 
10  """ 
11  import pygtk 
12  import pygtk 
13  pygtk.require('2.0') 
14  import gtk 
15  from iceprod.core.dataclasses import * 
16   
17 -class GtkIPModule(gtk.VBox):
18 19 dragndrop = False 20
21 - def SetDragNDrop(self,value):
22 self.dragndrop = value
23