Beispiel #1
0
 def on_search_result(self, search_text, found, path, index):
     '''
     A slot to handle a found text. It goes to the position in the text and select
     the searched text. On new file it will be open.
     :param search_text: the searched text
     :type search_text: str
     :param found: the text was found or not
     :type found: bool
     :param path: the path of the file the text was found
     :type path: str
     :param index: the position in the text
     :type index: int
     '''
     if found:
         if self.tabWidget.currentWidget().filename != path:
             focus_widget = QApplication.focusWidget()
             self.on_load_request(path)
             focus_widget.setFocus()
         cursor = self.tabWidget.currentWidget().textCursor()
         cursor.setPosition(index, QTextCursor.MoveAnchor)
         cursor.movePosition(QTextCursor.NextCharacter,
                             QTextCursor.KeepAnchor, len(search_text))
         self.tabWidget.currentWidget().setTextCursor(cursor)
         cursor_y = self.tabWidget.currentWidget().cursorRect().top()
         vbar = self.tabWidget.currentWidget().verticalScrollBar()
         vbar.setValue(vbar.value() + cursor_y * 0.8)
Beispiel #2
0
 def on_search_result_on_open(self, search_text, found, path, index):
     '''
     Like on_search_result, but skips the text in comments.
     '''
     if found:
         if self.tabWidget.currentWidget().filename != path:
             focus_widget = QApplication.focusWidget()
             self.on_load_request(path)
             focus_widget.setFocus()
         comment_start = self.tabWidget.currentWidget().document().find('<!--', index, QTextDocument.FindBackward)
         if not comment_start.isNull():
             comment_end = self.tabWidget.currentWidget().document().find('-->', comment_start)
             if not comment_end.isNull() and comment_end.position() > index + len(search_text):
                 # commented -> retrun
                 return
     self.on_search_result(search_text, found, path, index)
Beispiel #3
0
 def on_search_result_on_open(self, search_text, found, path, index):
     '''
     Like on_search_result, but skips the text in comments.
     '''
     if found:
         if self.tabWidget.currentWidget().filename != path:
             focus_widget = QApplication.focusWidget()
             self.on_load_request(path)
             focus_widget.setFocus()
         comment_start = self.tabWidget.currentWidget().document().find('<!--', index, QTextDocument.FindBackward)
         if not comment_start.isNull():
             comment_end = self.tabWidget.currentWidget().document().find('-->', comment_start)
             if not comment_end.isNull() and comment_end.position() > index + len(search_text):
                 # commented -> retrun
                 return
     self.on_search_result(search_text, found, path, index)
Beispiel #4
0
 def on_search_result_on_open(self, search_text, found, path, startpos, endpos, linenr, line_text):
     '''
     Like on_search_result, but skips the text in comments.
     '''
     if found:
         self._search_node_count += 1
         if self._search_node_count > 1:
             self.on_toggled_find(True, only_results=True)
         self.find_dialog.current_search_text = search_text
         self.find_dialog.on_search_result(search_text, found, path, startpos, endpos, linenr, line_text)
         self.on_graph_info("search thread: found %s in '%s:%d'" % (search_text, path, linenr))
         if self.tabWidget.currentWidget().filename != path:
             focus_widget = QApplication.focusWidget()
             self.on_load_request(path)
             if focus_widget is not None:
                 focus_widget.setFocus()
         self.tabWidget.currentWidget().select(startpos, endpos, True)
Beispiel #5
0
 def on_search_result(self, search_text, found, path, startpos, endpos, linenr=-1, line_text=''):
     '''
     A slot to handle a found text. It goes to the position in the text and select
     the searched text. On new file it will be open.
     :param search_text: the searched text
     :type search_text: str
     :param found: the text was found or not
     :type found: bool
     :param path: the path of the file the text was found
     :type path: str
     :param startpos: the position in the text
     :type startpos: int
     :param endpos: the end position in the text
     :type endpos: int
     '''
     if found:
         if self.tabWidget.currentWidget().filename != path:
             focus_widget = QApplication.focusWidget()
             self.on_load_request(path)
             focus_widget.setFocus()
         self.tabWidget.currentWidget().select(startpos, endpos, False)
Beispiel #6
0
 def on_search_result(self, search_text, found, path, index):
     '''
     A slot to handle a found text. It goes to the position in the text and select
     the searched text. On new file it will be open.
     :param search_text: the searched text
     :type search_text: str
     :param found: the text was found or not
     :type found: bool
     :param path: the path of the file the text was found
     :type path: str
     :param index: the position in the text
     :type index: int
     '''
     if found:
         if self.tabWidget.currentWidget().filename != path:
             focus_widget = QApplication.focusWidget()
             self.on_load_request(path)
             focus_widget.setFocus()
         cursor = self.tabWidget.currentWidget().textCursor()
         cursor.setPosition(index, QTextCursor.MoveAnchor)
         cursor.movePosition(QTextCursor.NextCharacter, QTextCursor.KeepAnchor, len(search_text))
         self.tabWidget.currentWidget().setTextCursor(cursor)