Sophie

Sophie

distrib > Fedora > 14 > x86_64 > media > updates > by-pkgid > cc0534ed156f47a874ea0e1e328ca040 > files > 6

nautilus-python-devel-0.7.0-3.fc14.1.x86_64.rpm

import nautilus
import gtk

class LocationProviderExample(nautilus.LocationWidgetProvider):
    def __init__(self):
        pass
    
    def get_widget(self, uri, window):
        entry = gtk.Entry()
        entry.set_text(uri)
        entry.show()
        return entry