def actionRename(self): cursor = self.textCursor() start = cursor.selectionStart() end = cursor.selectionEnd() selection = cursor.selectedText() androconf.debug("Rename asked for '%s' (%d, %d)" % (selection, start, end)) if start not in self.doc.binding.keys(): self.mainwin.showStatus( "Rename not available. No info for: '%s'." % selection) return # Double check if we support the renaming for the type of # object before poping a new window to the user t = self.doc.binding[start] if t[0] == 'NAME_METHOD_PROTOTYPE': class_ = self.current_class method_ = t[1] if method_ == self.title: method_ = 'init' androconf.debug( "Found corresponding method: %s -> %s in source file: %s" % (class_, method_, self.current_filename)) elif t[0] == 'NAME_METHOD_INVOKE': class_, method_ = t[2].split(' -> ') if class_ == 'this': class_ = self.current_class androconf.debug( "Found corresponding method: %s -> %s in source file: %s" % (class_, method_, self.current_filename)) elif t[0] == 'NAME_PROTOTYPE': class_ = t[2] + '.' + t[1] androconf.debug( "Found corresponding class: %s in source file: %s" % (class_, self.current_filename)) elif t[0] == 'NAME_FIELD': field_ = t[1] androconf.debug( "Found corresponding field: %s in source file: %s" % (field_, self.current_filename)) else: self.mainwin.showStatus( "Rename not available. Info ok: '%s' but object not supported." % selection) return rwin = RenameDialog(parent=self, win=self.mainwin, element=selection, info=(start, end)) rwin.show()
def actionRename(self): cursor = self.textCursor() start = cursor.selectionStart() end = cursor.selectionEnd() selection = cursor.selectedText() log.debug("Rename asked for '%s' (%d, %d)" % (selection, start, end)) if start not in list(self.doc.binding.keys()): self.mainwin.showStatus("Rename not available. No info for: '%s'." % selection) return # Double check if we support the renaming for the type of # object before poping a new window to the user t = self.doc.binding[start] if t[0] == 'NAME_METHOD_PROTOTYPE': class_ = self.current_class method_ = t[1] if method_ == self.title: method_ = 'init' log.debug( "Found corresponding method: %s -> %s in source file: %s" % (class_, method_, self.current_filename)) elif t[0] == 'NAME_METHOD_INVOKE': class_, method_ = t[2].split(' -> ') if class_ == 'this': class_ = self.current_class log.debug( "Found corresponding method: %s -> %s in source file: %s" % (class_, method_, self.current_filename)) elif t[0] == 'NAME_PROTOTYPE': class_ = t[2] + '.' + t[1] log.debug("Found corresponding class: %s in source file: %s" % (class_, self.current_filename)) elif t[0] == 'NAME_FIELD': field_ = t[1] log.debug("Found corresponding field: %s in source file: %s" % (field_, self.current_filename)) else: self.mainwin.showStatus( "Rename not available. Info ok: '%s' but object not supported." % selection) return rwin = RenameDialog(parent=self, win=self.mainwin, element=selection, info=(start, end)) rwin.show()