How do you add items to the notifications pull-down panel on Belle?
Preferably from native C++ app.
I can't find anything in the Belle Developer's Library.
Thanks a lot!
Type: Posts; User: y.a.k; Keyword(s):
How do you add items to the notifications pull-down panel on Belle?
Preferably from native C++ app.
I can't find anything in the Belle Developer's Library.
Thanks a lot!
Thanks for reply.
No, I haven't looked into touch yet. What about standard controls like ListBox, Form and selection lists? Does touch work on these in 1.4.5?
I won't be needing Canvas if...
I'm working on a commercial application using Python and a bit of C++. Right now we're decided to go with 1.4.5 as the 1.9.7 runtime is way too big (almost 3 MB compared to 600 KB in 1.4.5). Apart...
Hello everyone,
first of all, welcome again. I know I have been silent for a long time but I'm back, sort of. I got a job right now which requires me to write an application using a mixture of...
I'm not sure yet what causes the problem but I see some issues in your code. The exit_lock global variable is initialized with an e32.Ao_lock instance but the exit_func (used as a sys.exitfunc) calls...
Sorry, I can't tell what could cause this. Can you post the relevant code? If so, use the code tags to preserve indentation.
One thing. Having the app constantly stay in an e32.Ao_lock object...
Yes, it should work. Of course it would be smarter to use a loop than just copy&pasting this 5 times :)
There's a get_language() function in my appuifw2 module, here is the relevant part of the docs on the project site:
http://code.google.com/p/appuifw2/wiki/Misc
A solution with its own issues (you...
Thank you Neil. You made me smile :)
It's great to receive such comments.
Hard to tell. The environment is a bit different and enough complicated for such things to happen. I would have to see your script to tell you exactly.
Thanks for pointing this out. I will fix this.
EDIT:
Future bugs should be reported using the Google Code Issue Tracker:
http://code.google.com/p/appuifw2/issues/list
I may miss them if...
Agreed. A warning should be printed.
The basic idea with appuifw2 is that you either use appuifw or appuifw2 so you generally shouldn't mix them. If you need some features of appuifw2, switch your whole app to it, everything that's...
Did anybody read my post? :)
Imagine a sis file as a stream of files, for example:
* file-1 path: data\example\dummy.txt
* file-1 data
* file-2 path: data\example\subdir\file.bin
* file-2 data...
Could be. I'm not sure but it's possible that SIS files can only contain files (with their paths). If a file is located in a directory that doesn't exist, the installer creates that directory. In...
No, don't know of any such event (which doesn't mean there is none). As cyke64 said, appswitch provides a direct way to acomplish this.
I used the --extrasdir option only once and I needed it only to add a MIF file to the resource directory. It worked fine. Perhaps there are some limitations on the directories you can drop files...
Sorry, I made a mistake. You have to use scancodes in send_raw_event(). So, use EStdKeyNo instead of EKeyNo.
Let me know how it goes.
Try this:
import keypress
from key_codes import *
keypress.send_raw_event(keypress.EKeyDown, EStdKeyNo)
keypress.send_raw_event(keypress.EKeyUp, EStdKeyNo)
To clarify your doubts about my code. The self.file.read() call doesn't read the whole file so there is no worry about RAM. It reads a chunk which size come from the method argument. I'm fairly sure...
@voidonic
Hi, nice app. You can check mine out in this thread, it's called RemoteKB:
http://discussion.forum.nokia.com/forum/showthread.php?t=139220
I also had to modify the keypress module....
Yes, Form and Canvas are the only parts of appuifw that weren't updated with the first one screaming for update.
I would like to implement a new Form as a control, similar to the Listbox. This...
Seems like a problem with wxPython, are you sure you have the latest version?
Did anyone eventually try the 2nd edition sis file I provided?
Ped has a search functionality built into the file browser. You can find it in Options menu under the name "Filter". It can also be accessed using the *-key. Basicaly it lets you enter a string and...