[00:06] auappdev: Error when running quickly share [01:37] auappdev: Why does GtkCalendar counts months from 0? [01:47] Not the best way to as for help regarding GtkCalendar lol [03:59] hey guys. when i do quickly package, it complains that it doesn't recognise both setup.py and all my .py files that i created myself [03:59] and that continuing is a bad idea (infact it just says "aborting") [03:59] what am i doing wrong? [04:09] ah, it was picking up the soandso.py~ files that gedit had created? [06:24] auappdev: Why doesn't my MainWindow get focus? [07:03] good morning [07:54] auappdev: Opening 2 top level windows (quickly/pygtk) || PyGTK: Opening Links in Default Web Browser [10:08] Hi all, Any quickly gurus alive that can help me understand the ubuntu-application template helper classes? [10:12] anyone who can help me with a bit of a logical problem? [10:13] http://paste.ubuntu.com/1062307/ << this causes an infinite loop, as every time i set the active property the event is triggered again [10:15] everyone in coma again? :( [10:16] thats a logic problem, yur better off doing something like toggled = ! state so that it always sets the opposite of what ever it is [10:22] cedeon; won't help in my case, will it? i need to make sure only one of the buttons can be active [10:22] at the same time [11:06] auappdev: What is mean by application must run out of /opt? [11:19] let's see if i have more succes on stack overflow than on ask ubuntu [11:58] Already solved your problem RobinJ? [12:00] i need to make sure only one of the buttons can be active [12:08] RawChid; nope, but got a bigger problem for now [12:08] http://stackoverflow.com/questions/11225021/passing-a-variable-to-a-dialog [12:24] Does anyone know the best container widget to use if i want a scrollable list of composite widgets that can be appended to /removed programmatically? [12:25] The only thing i know is the GtkBox but i want items to stay the same height [12:32] One problem at a time :P === badfox is now known as raju [14:23] auappdev: Quickly Glade Button link to external program || Quickly message box [16:46] auappdev: When completing the form at myapps.developer.ubuntu.com, should i change the Suggested package name? [17:49] Hello [17:50] I have a couple of questions about the ubuntu app showdown contest [17:51] Anybody here? [17:53] Aman_: you should ask mhall119 [18:09] auappdev: Is porting a game to Ubuntu fine for the Ubuntu App Showdown? [20:01] How do I add autocomplete features to PyDEV for GTK3? I'm new to GTK; so some help from the IDE would be nice [20:02] vance-turner1: PyDEV is an IDE? [20:02] No, I'm sorry. PyDev is an addon for Eclipse. PyDev also comes preinstalled with Aptana [20:03] ah, ok [20:03] autocomplete might be difficult with GTK3, since it's all discovered at runtime via GObject introspection [20:04] Oh, that would explain why there is no docs on the internet for doing what I want. [20:04] yeah, the only GTK3 docs are for C, every other language uses GIR to call them dynamicaqlly [20:14] Just to make sure we are talking about the same thing, I am using Quickly to build an app for the showdown. I want to get autocompletion for gtk3 python content in the python files. [20:21] vance-turner1: right, and GTK3 uses something called GObject Introspection, which allows other languages to directly call the C library code [20:22] so in your app, you have python that does things like "from gi.repository import Gtk" [20:22] mhall119: Exactly. [20:22] that's loading the Gtk bindings by looking at the GObject meta-data [20:22] so there isn't any Python code for Gtk, it's built at runtime when you call that [20:23] and if there isn't any Python code, then PyDEV won't be able to auto-complete it using normal inspection methods [20:23] now, you might be able to get PyDEV to look at the GObject meta-data to build it's autocomplete data [20:26] Ok, now things make sense. I'll just use the docs then. This is the best GTK3 Python docs right? : http://python-gtk-3-tutorial.readthedocs.org/en/latest/index.html [20:29] auappdev: Glade Widget Color [20:42] Thanks for the help. [23:54] where can i find a list of functions to implement into an webkit based browser... i am trying to make a more advanced browser than is in the get started tutorial [23:57] Hi, would anyone know the easiest way to create a file chooser dialog when a button is clicked using glade and gtk? [23:58] eh [23:59] did you actually look at glade?