Edouard@2337: from __future__ import absolute_import Edouard@2337: Edouard@2337: import wx Edouard@2337: from connectors import ConnectorSchemes, EditorClassFromScheme Edouard@2337: from controls.DiscoveryPanel import DiscoveryPanel Edouard@2337: from controls.IDBrowser import IDBrowser Edouard@2337: Edouard@2337: class IDManager(wx.Dialog): Edouard@2337: def __init__(self, parent, ctr): Edouard@2337: self.ctr = ctr Edouard@2337: wx.Dialog.__init__(self, Edouard@2337: name='IDManager', parent=parent, Edouard@2337: title=_('URI Editor'), Edouard@2337: style=wx.DEFAULT_DIALOG_STYLE | wx.RESIZE_BORDER) Edouard@2337: # start IDBrowser in manager mode Edouard@2337: self.browser = IDBrowser(self, ctr) Edouard@2337: Edouard@2337: