Re: Twitter client for Maemo in Qt + Python: let's make the point

2010-02-24 Thread Renato Araujo
Hi guys.

It would be nice to get some help on Twcano, we can discuss the
current architecture and propose changes if necessary.
If someone want more information about the project or help to test
this on n900 (debian packages still missing, I want fix some bugs
before produce one), visit the #pyside channel at freenode.

These are some images of Twcano running on n900:

http://img696.imageshack.us/img696/6971/screenshot02.png
http://img682.imageshack.us/img682/9239/screenshot03c.png

BR
Renato Araujo Oliveira Filho



On Wed, Feb 24, 2010 at 4:12 PM, Andrea Grandi a.gra...@gmail.com wrote:
 Hello guys,

 first of all I want to thank all the people who replied to my previous
 email, I really didn't expect so much interest!
 I've gathered all the informations you gave me, making a list of all
 developers interested in helping in this project and another list of
 similar projects.

 These are the people interested in working to this project:

 - Sivan Greenberg
 - Gibran Rodriguez
 - Nicola De Filippo
 - Nirav Ranpara
 - Adrian Yanes
 - Amir B
 - Randall Arnold

 and these are the currently available similar projects:

 - Witter - http://garage.maemo.org/projects/witter (Python/Gtk)
 - Twitter-local - http://gitorious.org/twitter-local (C++/Qt)
 - qTwitter - http://www.qt-apps.org/content/show.php/qTwitter?content=99087
 (not a Maemo project)
 - twcano - http://gitorious.org/twcano (Python/Qt)

 My personal idea is to join the twcano project, since it's Python/Qt
 based and, having tested it on Scratchbox, it's already very nice!
 So, talking to the people who told me to be interested, why don't we
 join the twcano project?

 Regards,

 --
 Andrea Grandi
 email: a.grandi [AT] gmail [DOT] com
 website: http://www.andreagrandi.it
 PGP Key: http://www.andreagrandi.it/pgp_key.asc
 ___
 maemo-developers mailing list
 maemo-developers@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-developers

___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: [MeeGo-dev] Twitter client for Maemo in Qt + Python: call for developers and UI designers

2010-02-22 Thread Renato Araujo
Hi guys, nice to know about this thread. Some weeks ago I started a
Twitter client based on Pyside, for promote the project. The INdT
designs team help me with the Interface designer, some friends help
with suggestions and bug report (a lot off :D).

And after read this e-mail, I would like to share with you the current
source code[1] (not stable yet, because of this I keep this closed
until now), some work still needed to get all running fine.
The main pending fixes are:
   *Some code clean-up is necessary, because some classes used to
finger scroll are ported from C++ code.
   *Rewrite accounts storage system to use some DB system (sqlite, or
other), the current version use QSettings to store account info, and
this is not flexible to use more then one account.
   * Bug fixes

I did litle changes on python twitter API, because of some new
functionalities necessary in the application.

I appreciate to share the code with you guys, the project is open, and
the feedbacks and help, are welcome.

BTW the current codename of project is Twcano  a joke with Tucano[2].

[1] http://gitorious.org/twcano
[2] http://en.wikipedia.org/wiki/Toucan


BR
Renato Araujo Oliveira Filho




On Mon, Feb 22, 2010 at 2:24 PM, Sivan Greenberg si...@omniqueue.com wrote:
 Right, so at the moment PyQT supports more of the Qt bindings. But I think
 we should use PySide and help the PySide team enable more of the bindings we
 require, or at least ask them for those critical for the app development.
 Sivan

 On Mon, Feb 22, 2010 at 7:19 PM, Frank Banul frank.ba...@gmail.com wrote:

 PyQt.

 Frank

 On Mon, Feb 22, 2010 at 11:06 AM, Andrea Grandi a.gra...@gmail.com
 wrote:
  Hi,
 
  On 22 February 2010 18:01, Gibran Rodriguez brangi...@gmail.com wrote:
  Do you think PySide could be used at some point?
 
  I'm going to use PySide :)
  Do you know any other working binding for Qt available for Maemo?
 
  --
  Andrea Grandi
  email: a.grandi [AT] gmail [DOT] com
  website: http://www.andreagrandi.it
  PGP Key: http://www.andreagrandi.it/pgp_key.asc
  ___
  maemo-developers mailing list
  maemo-developers@maemo.org
  https://lists.maemo.org/mailman/listinfo/maemo-developers
 
 ___
 maemo-developers mailing list
 maemo-developers@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-developers


 ___
 maemo-developers mailing list
 maemo-developers@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-developers


___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


Re: how to use gtk Resource Files .rc file in maemo (hildon framework)

2007-10-30 Thread Renato Araujo
Hi,

I'm using personalized rc files in my application[1], and works fine, You
can see the code and rc files on svn[2]. Verify mtv-theme.c[3] and gtkrc[4].


Try change your rc file to something like this (I do not know if xpm is
supported, I use png):
--
style window
{
engine sapwood {
image {
   function = BOX
   file= ../common/images/bg.xmp
 }
 }
}
class GtkWindow style window
--

sapwood is the default engine used on maemo platform, it is more faster
then pixmap engine.

[1]https://garage.maemo.org/projects/mtv/
[2]https://garage.maemo.org/svn/mtv/trunk/mtv/
[3]https://garage.maemo.org/svn/mtv/trunk/mtv/src/mtv-theme.c
[4]https://garage.maemo.org/svn/mtv/trunk/mtv/data/themes/indt/gtkrc

BR
Renato Araujo Filho


On 10/30/07, Minti Maemo [EMAIL PROTECTED] wrote:

 hi,
 i want to use gtk resource file  (e.g. MyResource.rc ) to change
 background colour / to put background image on widget
 i am able to do same thing in simple gtk application . the same
 application  is not able to load resource file on maemo platform .Is there
 any difference to load / write the resouce for maemo application (in hildon
 framework)?

 MyResource.rc
 ---
 pixmap_path ../common/images/

 style window
 {
  bg_pixmap[NORMAL] =  bg.xpm
 }
 widget_class GtkWindow style window

 -

 App.c   /* Gtk App */
 --
 int main(int argc ,char* argv[])
 {
 GtkWidget *window;
 gtk_init(argc,argv);

 window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
 gtk_widget_set_name (window, window);

 gtk_rc_parse (MyResource.rc);
 gtk_widget_show(window);
 gtk_main();

 return 0;
 }
 

 App.c /*maemo App in Hildon */
 -
 int main( int argc, char* argv[] )
 {

 HildonProgram* program;
 GtkWidget* window;

  gtk_init( argc, argv );

 program = HILDON_PROGRAM( hildon_program_get_instance() );
 g_set_application_name( My App );

 window  =  hildon_window_new();
 gtk_widget_set_name (window ,window);
 gtk_rc_parse (MyResource.rc);

 hildon_program_add_window( program, HILDON_WINDOW(window));

 gtk_widget_show(window);
 gtk_main();

 return 0;
 }


 -
 Thx
 minti



 __
 Do You Yahoo!?
 Tired of spam? Yahoo! Mail has the best spam protection around
 http://mail.yahoo.com

 ___
 maemo-developers mailing list
 maemo-developers@maemo.org
 https://lists.maemo.org/mailman/listinfo/maemo-developers




-- 
Renato Araujo Oliveira Filho
Instituto Nokia de Tecnologia - INdT
___
maemo-developers mailing list
maemo-developers@maemo.org
https://lists.maemo.org/mailman/listinfo/maemo-developers


[maemo-developers] Aplication installer

2005-07-18 Thread Renato Araujo Oliveira Filho
hi all,

i have a problem with the deb package.
The package has some dependencies, but the aplication installer does not
accept dependencies other than maemo
so i can install the package abiword if the libglade2 is not installed
for example.


BR
Renato Araujo
___
maemo-developers mailing list
maemo-developers@maemo.org
https://maemo.org/mailman/listinfo/maemo-developers