Python - Gtk - 从剪贴板粘贴

标签 python user-interface gtk glade

在使用 python 和 Glade3 构建一个简单的 GUI 视频下载器时,我一直坚持使用图标粘贴到文本输入框。

应用程序,并粘贴图标。

enter image description here

Python 代码:

# !/usr/python

import sys
import os
import subprocess as sp
try:
    from gi.repository import Gtk, Gdk
except:
    print('Gtk not available')
    sys.exit(1)
try:
    import pyGtk
    pyGtk.require('2.0')
except:
    pass



class VideoDownloader:

  def on_mainwindow_destroy(self, object, data=None):
    print "quit with cancel"
    Gtk.main_quit()

  def __init__(self):
    self.gladefile = "lib/videodownloder.glade" 
    self.builder = Gtk.Builder() 
    self.builder.add_from_file(self.gladefile) 
    self.builder.connect_signals(self)
    self.go = self.builder.get_object
    self.window = self.go("mainwindow")    
    self.window.show() 
    self.okbtn = self.go("okbutton")
    self.cancelbtn = self.go("cancelbutton")
    #self.restartswitch = self.go("restartswitch")
    self.contswitch = self.go("contswitch")
    self.vlcswitch = self.go("vlcswitch")
    self.urlentry = self.go("urlentry")
    self.filechooser = self.go("filechooser")
    self.clipboard = Gtk.Clipboard.get(Gdk.SELECTION_CLIPBOARD)

  def on_urlentry_activate(self, widget):
    url = self.urlentry.get_text()
    print("the url is:" + url)

  def on_urlentry_icon_press(self):
    text = self.clipboard.set_text(self.urlentry.get_text(), -1)
    print("the urlentry paste icon was clicked | 'text' ")

  def on_urlentry_icon_press(self):
    text = self.clipboard.wait_for_text()
    print("the urlentry paste icon was clicked | 'text' ")
    if text != None:
      self.urlentry.set_text(text)
      print(" 'text' has been pasted to the urlentry")
    else:
      print("No text on the clipboard")

  def on_filechooser_file_activated(self, widget):
    myfile = self.filechooser.get_uri()
    print("the file is: " + myfile)

  def on_vlcswitch_activate(self, widget):
    print("VLC Switch has been activated")

  def on_contswitch_activate(self, widget):
    print("Continue switch has been acivated")

  def on_quitbutton_clicked(self, button):
    print("quit with the close button")
    Gtk.main_quit()


  def on_okbutton_clicked(self, button):
    myfile = self.filechooser.get_uri()
    url = self.urlentry.get_text()
    wgetcmd = ("wget -O 'myfile ' 'url' ")
    print("ok button has been clicked")
    print("wget will now be run with your args: " +myfile+url)
    os.system(wgetcmd)

if __name__ == "__main__":
  print("videodownloader is running")
  notify = os.system("notify-send --expire-time=5000 --icon='img/vid-down-logo.png' --app-name=VideoDownloader 'VideoDownloader' 'The VideoDownloader app is now running and ready!'")
  notify
  main = VideoDownloader()
  Gtk.main()
  print("videodownloader has stopped running")

当我运行代码时,它基本上可以工作,但是当我单击粘贴图标时,我收到错误:

TypeError: on_urlentry_icon_press() takes exactly 1 argument (4 given)  

我对 python 和glade 相当陌生,所以我可能犯了一个基本错误,但我不知道出了什么问题以及错误的含义。我进行了搜索,但只找到了没有帮助的建议。
Such as this.. 关于如何解决这个问题有什么建议吗?

最佳答案

您当前的 on_urlentry_icon_press 方法仅采用 self 参数,但它应该采用多个参数,因为它连接到 icon-press 信号.

documentation你可以看到它需要:

  • entry(对 Gtk.Entry 的引用)
  • 位置(无论是主图标还是次图标)
  • 事件(例如是否是双击)

所以它应该看起来像这样:

def on_urlentry_icon_press(self, entry, position, event):
    print('urlentry icon clicked')

关于Python - Gtk - 从剪贴板粘贴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33426715/

相关文章:

c - GTK 和 plplot 的例子?

rust - Gtk::SpinButton get_value_as_int 给出 step_increment 作为结果

python - PyQt4:调整dockWidget大小时,滚动条不显示在滚动区域中

c# - 我如何在 WPF 中模仿这种行为?

python - 如何在Python中将字符串转换为null或Nan?

java - MigLayout JLabels 并修复它们的大小

javascript - 我可以制作一个本地独立的 JavaScript 程序吗?

c - 从函数重绘GTK

python - 制作具有多个轨迹的 Plotly Scattermapbox 的函数失败,Plotly,列表理解

python - 用下一行替换数据框元素的数据