Autor Tópico: Converter pyGTK para pyQT  (Lida 1518 vezes)

Offline glilco

  • Usuário Ubuntu
  • *
  • Mensagens: 80
  • Glilco Caneca
    • Ver perfil
Converter pyGTK para pyQT
« Online: 13 de Setembro de 2010, 21:51 »
Tenho um pequeno código escrito utilizando pyGTK e gostaria que ele funcionasse de forma parecida, só que utilizando pyQt, já que ele será utilizado agora no KDE.

Alguém pode me ajudar a "traduzir" para pyQt?

Código: [Selecionar]
#
# Copyright 2009 Canonical Ltd.
#
# Authors: Neil Jagdish Patel <neil.patel@canonical.com>
#          Jono Bacon <jono@ubuntu.com>
#          Paulo Schreiner <paulo.schreiner@gmail.com>
#          Murilo Ferraz Franco <muriloffranco@gmail.com>
#
# This program is free software: you can redistribute it and/or modify it
# under the terms of either or both of the following licenses:
#
# 1) the GNU Lesser General Public License version 3, as published by the
# Free Software Foundation; and/or
# 2) the GNU Lesser General Public License version 2.1, as published by
# the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranties of
# MERCHANTABILITY, SATISFACTORY QUALITY or FITNESS FOR A PARTICULAR
# PURPOSE.  See the applicable version of the GNU Lesser General Public
# License for more details.
#
# You should have received a copy of both the GNU Lesser General Public
# License version 3 and version 2.1 along with this program.  If not, see
# <http://www.gnu.org/licenses/>
#

import gobject
import gtk
import appindicator
import os

def callback(widget, data):
print "Hello Again - %s was pressed" % data
os.system("xrandr --output LVDS1 %s" % data)

if __name__ == "__main__":
  ind = appindicator.Indicator ("example-simple-client",
                              "gsd-xrandr",
                              appindicator.CATEGORY_APPLICATION_STATUS)
  ind.set_status (appindicator.STATUS_ACTIVE)
  ind.set_attention_icon ("gsd-xrandr")

  # create a menu
  menu = gtk.Menu()

  # create some

  buf = "Normal (800x480)"

  menu_items = gtk.MenuItem(buf)
  menu.append(menu_items)

    # this is where you would connect your menu item up with a function:
  menu_items.connect("activate", callback, "--scale 1x1 --panning 0x0")

    # show the items
  menu_items.show()

  #for i in range(3):
  buf = "Esticado (1024x615)"

  menu_items = gtk.MenuItem(buf)
  menu.append(menu_items)

    # this is where you would connect your menu item up with a function:
  menu_items.connect("activate", callback, "--scale 1.28x1.28 --panning 0x0")

    # show the items
  menu_items.show()

  buf = "Esticado (1200x720)"

  menu_items = gtk.MenuItem(buf)
  menu.append(menu_items)

    # this is where you would connect your menu item up with a function:
  menu_items.connect("activate", callback, "--scale 1.5x1.5 --panning 0x0")

    # show the items
  menu_items.show() 

    # show the items
  menu_items.show()
  buf = "Virtual (104x768)"

  menu_items = gtk.MenuItem(buf)
  menu.append(menu_items)

    # this is where you would connect your menu item up with a function:
  menu_items.connect("activate", callback, "--scale 1x1 --panning 1024x768")

    # show the items
  menu_items.show()


  ind.set_menu(menu)

  gtk.main()

Offline irtigor

  • Equipe Ubuntu
  • Usuário Ubuntu
  • *****
  • Mensagens: 4.344
  • Delete, delete, delete!
    • Ver perfil
Re: Converter pyGTK para pyQT
« Resposta #1 Online: 13 de Setembro de 2010, 22:21 »
http://wiki.python.org/moin/PyQt
http://zetcode.com/tutorials/pyqt4/introduction/

ou rode dessa forma mesmo, as dependências são minimas o ganho vai ser irrisório ou nulo.