Tagged Questions
0
votes
1answer
35 views
Quickly can't package, but raises no errors
I am trying to make a .deb package for my project in quickly. This is what I get:
ilya@ilya-laptop:~/Projects/online-translator$ quickly package
...........Ubuntu packaging created in debian/
...
0
votes
0answers
26 views
Quickly: How do I bind menu item with show window?
I'm working in Glade. I need to make my About dialog box open when the user clicks the corresponding menu item. This feature is set up by default but I messed it up and I can't get to fix it...
I ...
0
votes
0answers
29 views
Quickly: How can I use a DrawingArea to draw a 2D game level?
I want to draw images in a DrawingArea (or other widget) as I'm making a 2D game editor.
I'm using Quickly, which uses PyGObject and Python 2.7.
I'm new to GUI programming. I'm looking for some ...
1
vote
2answers
392 views
Change font programmatically for GTK3 TextView (quickly-widgets TextEditor)
In an app using PyGI and GTK3, I'm trying to let the user set the font family and size in a TextView through my app's settings dialog. In PyGI the TextView object has "set" methods for several ...
4
votes
2answers
122 views
How to rename an application while developing with Quickly
I've been developing an application using PyGI and Quickly, and I now need to rename it. Is there any quick way to change all of the app name references in a Quickly application, or will I just need ...
2
votes
1answer
76 views
Is there a simple way with pygi to make an entire window a drop target for external input?
Example:
Drop a file in a glade designed window and it triggers Handler.open_from_path(path)
5
votes
1answer
200 views
Why does creating a new tab give me 'TypeError: Expected Gtk.Widget, but got GObjectMeta'?
def on_btn_new_subject_activate(self, widget):
self.subjects.append_page(Gtk.TextView(), "Testing")
I am trying to create a new tab on a text area but I whenever the signal is called by the ...