514 reputation
11026
bio website
location
age
visits member for 2 years, 3 months
seen 2 days ago
stats profile views 46

May
23
awarded  Famous Question
Apr
22
awarded  Notable Question
Mar
8
awarded  Notable Question
Mar
5
awarded  Notable Question
Feb
11
awarded  Yearling
Nov
28
awarded  Popular Question
Oct
2
accepted How can I set up Eclipse to work with a Quickly program?
Oct
2
comment How can I set up Eclipse to work with a Quickly program?
Thanks! It got fixed by adding "gi" to "forced built-ins" under the selected interpreter. This page taught me everything I needed to know about the interpreter (it was linked at the sourceforge page): pydev.org/…
Oct
2
comment How can I set up Eclipse to work with a Quickly program?
I've also added quickly project root folder to the PYTHONPATH though I still get "import unresolved" for Gtk and some other...
Oct
2
comment How can I set up Eclipse to work with a Quickly program?
How should I set up the interpreter? I haven't fully grasped that. I've only used Eclipse earlier for web development.
Oct
2
comment How can I set up Eclipse to work with a Quickly program?
Wow! Thanks for an excellent guide! You even provided tips on how to make things even better (quickly design)! I'd also hoped to get an explanation of the "python interpreter". Do you know anything regarding that? If not I'll probably give you the bounty anyway but if you do know something about it, can you please elaborate the answer further with an answer to that as well? :)
Sep
30
comment What's the best Wireframing tool?
Excellent! This was exactly what I needed!
Sep
27
comment How can I set up Eclipse to work with a Quickly program?
The question is about the Ubuntu app development framework called Quickly, not regarding the speed of Eclipse.
Sep
26
asked How can I set up Eclipse to work with a Quickly program?
Sep
21
awarded  Notable Question
Sep
15
comment Can't center dialog window above main window when using Glade (Quickly)
That's how I'd like to do it but I couldn't get it to work. If you have the time can you post a code snippet showing the set up within the dialog and it's constructor?
Sep
14
accepted Can't center dialog window above main window when using Glade (Quickly)
Sep
14
comment Can't center dialog window above main window when using Glade (Quickly)
I tried doing it in every possible way I could think of but what fixed it was setting it from the window that opened the dialog, like this: goto = GotoDialog() and goto.set_transient_for(self)
Sep
13
comment Can't center dialog window above main window when using Glade (Quickly)
How do I reference the main window (MyappWindow.py - MyappWindow()) from my dialog GotoDialog.py? I'm new to Python so excuse my inexperience. I tried "from myapp import MyappWindow" and then "self.set_transient_for(MyappWindow)". I have created everything with Quickly so it is the default set up after running "quickly add dialog goto".
Sep
11
asked Can't center dialog window above main window when using Glade (Quickly)