Tagged Questions
1
vote
1answer
14 views
Python unity indicator applet and glade child window exits at the same time
Since I don't have much reputation. The original question has been posted in stackoverflow and here is the link:
Python unity indicator applet and glade child window
I have created an unity ...
0
votes
0answers
44 views
Can you name Ubuntu applications that were developed using Python, pyGtk, Glade? [closed]
I started using Python at a very basic level.
As a second step, I would like to develop Python software using pyGTK and Glade as GUI designer.
I found very easy to learn by examples and I think it ...
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 ...
0
votes
1answer
100 views
How extract strings from a .ui file (glade) with gettext?
I'm trying to extract the strings from this file:
http://bazaar.launchpad.net/~gufw-developers/gui-ufw/gufw-13.04/view/head:/data/ui/add.ui
Which is the command for it?
This not works:
...
2
votes
1answer
289 views
Dynamicly add or remove items from list and tree in pygtk and quickly (glade)
I'm trying to make some mini CRM application in python using gtk(pygtk), glade and started to develop it using quickly(which is awesome).
I'm created some dialogs and added listview to the GUI using ...
1
vote
0answers
99 views
How to design non-windowed Gtk.Frame in Glade?
I'm building a ToDo app for personal purposes, and I'm using Quickly and Glade.
I want it to display a list of the pending to-do elements. The problem I'm having is that I can't find the way to ...
3
votes
0answers
65 views
How do I provide arguments to mapped methods in quickly preferences dialog?
I'm using quickly on 11.04 and I'm trying to add a textbuffer object to the preferences dialog so that its contents is updated automatically to the couchdb. So in __init__.py I changed the dictionary ...
0
votes
1answer
218 views
A GtkEntry signal emitting at focus change
I'm writing a very simple app using Glade and PyGtk. In the app, I need to collect user inputs and parse it as a conf file. In order to dump all the freetext user inputs to a StringIO, I am using the ...
0
votes
1answer
74 views
Remove a Custom Dialog Windows (PyGTK + Quickly)
Do Quickly have a remove dialog command?
Like: quickly remove dialog <dialog-name>
0
votes
0answers
155 views
How to set PyGtk toolbuttons label color?
I am just beginning learning Quickly and PyGtk,
after see this info-video on Ubuntu-develperment.
As in the video I am adding a toolbar to my glade-file,
then some buttons.
To style the toolbar for ...
1
vote
1answer
100 views
Quickly add Scrolling to Window
while creating my ubuntu application, I wanted to add in several images and then allow the user to scroll through them. The problem I am having, is that it just cuts the image off, and there are no ...
0
votes
1answer
46 views
Quickly/Glade autoadjust text position
In Quickly/Glade, is it possible to keep the text (well, labels) centered, so when I maximize my program's window, the text stays centered? It's probably something easy to do, but I have been unable ...
0
votes
1answer
174 views
Webview load specific URL (Quickly/Glade)
I was watching the Ubuntu Developer video about creating your own browser using webkit, but I was wondering if it would be possible to make webkit load a specific website. For instance, if I was to ...
1
vote
1answer
101 views
Quickly/Glade linking a button to notebook page
Hey everyone (boy I seem to be posting quite a bit), I have a question regarding Glade and Quickly. Is it possible to map a button to a notebook within the same program. Like say for instance I have a ...
0
votes
1answer
119 views
Opening a Window within an already open window (Quickly/Glade)
I have a question regarding window and button implementation. If I have a toolbar set up, and I have a button on it, is it possible to get it to open a window right within the program? I mean like ...
5
votes
1answer
326 views
How do I add a Notebook to a Box in a VBox?
I have created an empty box in Glade to add a Notebook to. The reason I am not adding the actual Notebook in Glade is because I hear that you cannot add pages to a Notebook made in Glade.
So, in ...
2
votes
1answer
70 views
Why changing signals causes NameErrors in a sane code? - PyGtk issue
I'm working on a very simple app for Ubuntu. I've asked a question on stackoverflow, and it seems that the issue I am having is caused by signals, not by the scope of variables, as I originally ...
1
vote
0answers
66 views
Gtk containers for a list of items
I am trying to create a task management app with Quickly/Glade, but have troubles finding the right containers to represent information on the screen.
Basically, which containers should I use in ...
2
votes
1answer
237 views
Changing TextView font in PyGTK
I have TextView widget in Glade named "formula-view". I'm trying to do this to change font:
formulaView = self.builder.get_object("formula-view")
fontdesc = pango.FontDescription('Ubuntu 16')
...
2
votes
0answers
79 views
How do I use this Add/remove widget? [duplicate]
Possible Duplicate:
What GTK widget is this?
How do I add this little add/remove GTK widget in Glade Designer 3.12.1?
I don't see it anywhere in the widget bar.
If it can't be done using ...
1
vote
2answers
651 views
Open Custom Dialog Windows (PyGTK + Quickly)
I have just downloaded Quickly, created a new project, set up simple GUI and created new dialog (quickly add dialog create (as you can see, I called it create)). I already have click handler in the ...
0
votes
1answer
320 views
Custom PyGTK dialog with Glade
I'm building simple PyGTK app using Glade UI designer.
I followed pattern from default Ubuntu app, where preferences and about dialog are implemented extending gtk.Dialog, so I added new dialog with ...