コード例 #1
0
ファイル: help.py プロジェクト: yuangs/spyder
 def handle_link_clicks(self, url):
     url = to_text_string(url.toString())
     if url == "spy://tutorial":
         self.show_tutorial()
     elif url.startswith('http'):
         programs.start_file(url)
     else:
         self.rich_text.webview.load(QUrl(url))
コード例 #2
0
ファイル: help.py プロジェクト: dzosz/spyder
 def handle_link_clicks(self, url):
     url = to_text_string(url.toString())
     if url == "spy://tutorial":
         self.show_tutorial()
     elif url.startswith('http'):
         programs.start_file(url)
     else:
         self.rich_text.webview.load(QUrl(url))
コード例 #3
0
def create_bookmark_action(parent, url, title, icon=None, shortcut=None):
    """Create bookmark action"""
    return create_action(parent,
                         title,
                         shortcut=shortcut,
                         icon=icon,
                         triggered=lambda u=url: programs.start_file(u))
コード例 #4
0
ファイル: explorer.py プロジェクト: sonofeft/spyder
 def open_outside_spyder(self, fnames):
     """Open file outside Spyder with the appropriate application
     If this does not work, opening unknown file in Spyder, as text file"""
     for path in sorted(fnames):
         path = file_uri(path)
         ok = programs.start_file(path)
         if not ok:
             self.parent_widget.edit.emit(path)
コード例 #5
0
 def open_outside_spyder(self, fnames):
     """Open file outside Spyder with the appropriate application
     If this does not work, opening unknown file in Spyder, as text file"""
     for path in sorted(fnames):
         path = file_uri(path)
         ok = programs.start_file(path)
         if not ok:
             self.parent_widget.emit(SIGNAL("edit(QString)"), path)
コード例 #6
0
ファイル: qthelpers.py プロジェクト: jromang/spyderlib
def create_bookmark_action(parent, url, title, icon=None, shortcut=None):
    """Create bookmark action"""
    return create_action( parent, title, shortcut=shortcut, icon=icon,
                          triggered=lambda u=url: programs.start_file(u) )
コード例 #7
0
ファイル: qthelpers.py プロジェクト: evekeen/spectracer
 def open_url():
     return programs.start_file(url)
コード例 #8
0
ファイル: qthelpers.py プロジェクト: AminJamalzadeh/spyder
 def open_url():
     return programs.start_file(url)
コード例 #9
0
ファイル: qthelpers.py プロジェクト: jromang/retina-old
def create_bookmark_action(parent, url, title, icon=None, shortcut=None):
    """Create bookmark action"""
    if icon is None:
        icon = get_icon('browser.png')
    return create_action( parent, title, shortcut=shortcut, icon=icon,
                          triggered=lambda u=url: programs.start_file(u) )