Canonical's workflow for coding, designing, history tracking, debugging, collborating, and distributing software for Ubuntu.

learn more… | top users | synonyms

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>
1
vote
1answer
50 views

How to include extra applications in packages created with quickly?

The application I'm developing using Quickly would benefit from nautilus extension I'm planning on writing for the occasion. The question is: how do I tell quickly to include this extension in the ...
4
votes
1answer
157 views

.desktop and /bin files are included in /opt/extras.ubuntu.com/<package> with Quickly

In the Guidelines for the Ubuntu App Showdown I can read: The .desktop file is installed in the standard location /usr/share/applications, but must have the prefix 'extras-' added to its name. ...
0
votes
2answers
189 views

Quickly changes the app version

When I share an app with the command: quickly share The app version is changed in the glade file, in the setup.py file... and upload to the PPA (Then the build will not admit a below version). Can ...
3
votes
1answer
79 views

“No Launchpad project set” when running “quickly submitubuntu”

I have seen the posting here which is regarding the same issue, but the responses were not useful in solving my problem. I am able to generate my package, as well as release it to my PPA with the ...
2
votes
1answer
314 views

How do I implement a quit dialog in Gtk3?

I have almost finished my Ubuntu App Showdown app, but would like to make it somewhat more robust, upon application quit I iterate through the open files checking for unsaved files, if any are found I ...
2
votes
2answers
130 views

How do I call a function in Quickly?

How to call function in quickly? Here is my code: def finish_initializing(self, builder): # pylint: disable=E1002 super(projectWindow, self).finish_initializing(builder) self.AboutDialog = ...
0
votes
1answer
63 views

How do I include image in my app from a url?

How do I add particular images which is situated in given url, in my app , can I do it in glade?
0
votes
1answer
130 views

Quickly: how do I return entered data into parent window?

at last I started a simple project (you tube video downloader) in quickly , But got stucked . I added youtube url entry dialog using quickly add dialog command and ;linked it to new button . How ...
0
votes
0answers
27 views

Error when adding indicator in quickly [duplicate]

Possible Duplicate: Quickly ubuntu-application + indicator template don't work I just started new project using quickly Eevery thing work perfectly .I decided to add an indicator to my ...
0
votes
2answers
71 views

Writing to a file

def loadSubredditConfig (self): self.builder.get_object ('cbxR').remove_all () path = os.path.join (xdg.BaseDirectory.xdg_config_home, 'RedThat', 'subreddits') if (os.path.exists (path)): ...
8
votes
1answer
396 views

How do I make the launcher progress bar work with my application?

Background Research I am attempting to update the progress bar within the Unity launcher for a simple python/Gtk application created using Quickly called test; however, following the instructions in ...
0
votes
1answer
48 views

How do I fix error building package on ppa, uses tweepy/quickly

I'm building an application that uses tweepy (a python library) and when I build it on my local machine it works fine. When I submit it to launchpad though, it sent me a log which has this error: ...
2
votes
3answers
220 views

Problem with theming my application with CSS

I'm trying to beautify my program made with Quickly using CSS. I found documentation http://developer.gnome.org/gtk3/3.4/GtkCssProvider.html and very useful blog post ...
0
votes
1answer
118 views

Running a terminal-type command in my application

I want to create an Ubuntu Application which has a GUI for a CLI-application. I want to run a terminal command, for example, on a button click in my application. How can I do this? Or should I really ...
0
votes
1answer
31 views

GtkPositionType

The problem is that I have to use function attach_next_to() on grid, but the optional parameter of that function is GtkPositioType for side on which I can attach some new widget od the grid. What ever ...
0
votes
1answer
133 views

Embedding a back and forward arrows, home button, and download manager in a quickly application

I have downloaded a set of icons to use for my web browser that I'm creating and would like to use. I know how to add the icons, but I only know the code for the refresh button. My question is what is ...
3
votes
0answers
156 views

“Python module helpers not found” error when using Quickly [duplicate]

Possible Duplicate: Quickly packaging errors I am here asking why quickly is displaying this: ERROR: Python module helpers not found ---------------------------------- Do you want to ...
1
vote
1answer
77 views

How can I open/show the default content-help-dialog with quickly?

If I create a Quickly-Project there is a default Menubar which shows the Help-Dialog(Contents - "index.page" from help/C - Folder). How can I manually show the Content-Help Dialog? There is no code in ...
0
votes
2answers
61 views

I can't seem to download Quickly

I have tried using the Ubuntu Software Center but it fails. Also apt-get seems to fail as well. I'd love some help. Thanks in advance.
1
vote
2answers
50 views

How do I launch the app from within `quickly test` for gui testing?

I'm trying to use ldtp to test my quickly app. ldtp.launchapp('bin/myapp') doesn't work because myapp requires whatever voodoo quickly sets up in order to actually launch the app. How can I get ...
2
votes
1answer
50 views

How do I make an amd64 version of my application?

I am here because I am able to successfully upload the i386 build of my program to launchpad, but I have no idea how to create a native 64-bit application. Your help would be greatly appreciated.
0
votes
1answer
157 views

WebKit.WebView - wrap content

Currently, I have my WebKit.WebView in a ScrolledWindow, because otherwise my window would resize to fir the content. In stead, I would like the content to adjust to the container. So text should ...
0
votes
1answer
52 views

Problem with 'insert_at_cursor' attribute

I made something, so after clicking a button, some text should appear in the TextView. Part of my code: def on_button1_clicked(self, builer): self.writetest = ...
1
vote
0answers
48 views

How to add a daemon to a quickly project [duplicate]

Possible Duplicate: How do I add a daemon to my Quickly application? Currently I'm developing an application with quickly which is divided in two parts: A graphical UI where the user ...
1
vote
2answers
174 views

Application won't run when installed in “/opt”

I've developed a program for the App Developer Showdown, with quickly, in python, and it works as expected when I package and install it normally -in /usr. However when packaged for installation in ...
0
votes
1answer
104 views

Adding button to grid in Quickly

In Glade I made a grid 3x3 ad name it grid, I got instance of grid with self.grid = self.builder.get_object("grid") and then I want to add for example a button on that grid when some other ...
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
0answers
26 views

GtkWidget signal when loaded?

What is the closest signal to a GtkWidget's subclass constructor in PyGi in terms of execution order? Looking over the documentation I cannot find a signal along the lines of 'load'. Some kind of ...
0
votes
2answers
77 views

Quickly & Ubuntu App Developer: Returns “State: Failed to build” [duplicate]

Possible Duplicate: Launchpad failed to build after “quickly submitubuntu” I created an app for the Ubuntu App Showdown and I'm trying to upload it to the Ubuntu Software ...
2
votes
1answer
162 views

How to reference to .desktop file? (installed in /opt) in a dynamic quicklist?

I'm trying to create a dynamic quicklist for an application I'm developing in quickly. This is the line of code I use to try and connect to the .desktop file: self.launcher = ...
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 ...
10
votes
4answers
331 views

How do I add a daemon to my Quickly application?

I am building a app with quickly, and I wanted to add a daemon that will run in the background. How do you do this?
2
votes
4answers
136 views

“No Launchpad project set” - Quickly

I want to get a project on Launchpad using Quickly, but if I run quickly submitubuntu it just tells me that No Launchpad project set, leave blank to abort.. If I enter the name of my project he tells ...
0
votes
1answer
96 views

Opening 2 top level windows (quickly/pygtk)

Is there a way using quickly to have an appliaction have two completly seperate windows (not a window with a dialog) And be able to open each of the windows from each other and maybe even also from ...
2
votes
0answers
76 views

ValueError when running quickly share [duplicate]

Possible Duplicate: Why does “quickly share --ppa share” abort with a “can't create” error? I have successfully created and packaged a Quickly application, and I ...
3
votes
2answers
188 views

Quickly share error (Can't upload to ppa)

I'm using quickly and I can't seem to upload to my ppa. This is what I get: $ quickly share --ppa swink/ppa Get Launchpad Settings Launchpad connection is ok .........An error has occurred when ...
1
vote
0answers
13 views

Ubuntu Quickly with different revision control [duplicate]

Possible Duplicate: How do I get “Quickly” to use Git? How can I configure quickly save to use a different revision control system like git or hg?? I really do not like bzr, ...
1
vote
1answer
87 views

Can't upload project to PPA using Quickly

I can't get Quickly to upload my project into my PPA. I've set up my PGP key and used it so sign the code of conduct, and the PPA exists. I don't know what other usefull information I can supply. ...
6
votes
5answers
1k views

Launchpad failed to build after “quickly submitubuntu” [closed]

I uploaded my python project by running "quickly submitubuntu", but it failed to build on Launchpad. "quickly submitubuntu" is supposed to add package dependencies automatically, but the error log ...
0
votes
1answer
94 views

Data files for Quickly apps

My Quickly app requires data files to store settings, configuration and etc. How would I do this inside the app folder. Keep in mind that I will need to read and write to these files while the app ...
3
votes
0answers
78 views

How to get Yelp to open the docs?

quickly tutorial Result: An empty Yelp window with the XML file opened in gedit. yelp /usr/share/quickly/templates/ubuntu-application/help/tutorial.xml --> Exactly the same problem. Worked fine a ...
0
votes
1answer
133 views

Strangely quickly runs but debugger crashes with no exception

Firstly, strangely quickly run on my app runs fine and i believe i have made no changes to the source since quickly debug was working (proclaiming it's not user error is distasteful, I know!). winpdb ...
1
vote
1answer
244 views

Can't show preferences dialog

I'm having some trouble with Python, again. I created a project using Quickly, and it created a preferences dialog for me. I am now trying to build up the preferences dialog, but I always get some ...
3
votes
2answers
609 views

Quickly Project System-Notifications dont work (“import pynotify” fails)

If i create a quickly-project with the following command in terminal: quickly create ubuntu-application helloworld and then add in the HelloworldWindow.py the following lines, import sys import ...
1
vote
0answers
27 views

How can I add icons for light and dark themes in quickly?

I'm creating an application in quickly and I need to supply different indicator icons for dark and light themes. Is there a way to do this automatically? Where should I put the icons in the project ...
1
vote
2answers
144 views

Why does “quickly share --ppa share” abort with a “can't create” error?

I can not figure out what I am doing wrong. The package builds ok with quickly package, I could submit it, but I can not update my ppa. Here is what I got: desgua@desguai7:~/quickly/sbk$ quickly ...
0
votes
1answer
429 views

Why is my Quickly app full of fail?

I tried to use quickly on Ubuntu 12.04 to create an application, but it does not behave as described in that linked page. I don't get a popup when creating the application (see error below). % ...
1
vote
1answer
93 views

How to force text to resize together with window? [closed]

I have some text in my app window. I'd like it to resize if someone resizes the app window (if window gets bigger, the text gets bigger too). Is this possible to achieve using Quickly, Glade and ...
0
votes
1answer
170 views

Quickly and Python Twisted

I am creating a Quickly application that makes use of Python Twisted. When the user launches a window, I want to start the Twisted server I wrote. However, when I do this, it freezes the GUI, because ...

1 4 5 6 7 8