mms-core
 
Picture
Chapters:
intro and motivation
Getting Started
Qt in General
Qt mobility API
Qt like mobile Extensions
Qt Apps and Native Symbian Extensions
Qt for Symbian Examples

LOOK INSIDE !

Picture
 
Picture
  know about Qt app can tweet through QTwitterClient site
http://qt-mobility.blogspot.com/search/label/QTwitterClient

and i downloaded it and configure it in my app

here is the steps to use it in UR app

1-download QTwitterClient
 u can download it from GIT or Directy

2-add cpp and h files to ur project

3-include QTwitterClient in ur app


#include"qtwitterclient.h"

4-make instance from QTwitterClient

  QTwitterClient*twitter=newQTwitterClient(this);

    twitter->setLogin(login);  //login is QString has username

    twitter->setPassword( password); //password is QString has password of twitter account

    twitter->tweet("im tweeting through my new #Qt app,7dl");


if u have error do this
Go to QtwitterClient.cpp


1.       Delete
19 #include <QtNetwork>


2.       If u have error in debug
comment lines (78,81,90)


Go to QtwitterClient.h

1.       Replace
#include <QNetworkAccessManager>
with
#include"QtNetwork/QNetworkAccessManager"


2.       Replace
#include <QNetworkReply>


With
#include"QtNetwork/QNetworkReply"


Go to ur project.pro

Add network to Qt like

QT       += core gui\

        network

u can download my edited QtwitterClient
here

thx to
Hendy Irawan for this great APIs

ENJOY
 
Picture
plugins are small programs that are make to ease development
1.       Go to http://qt.nokia.com/products/appdev/add-on-products/catalog/4

2.       Choose the plugin u need from Qt Solutions

3.       CHECK “Tested on” for ur target platform

4.       Download Open Source Edition

5.       Unzip to C:\

6.       Open Qt command Prompt

7.       Cd to the directory

8.       Type >configure –library

9.       License agreement will appear ,type >yes

10.   Then type >qmake

11.   Then type >mingw32-make

12.   Cd to plugins inside the unzipped folder

13.   Type >qmake

14.   Type >mingw32-make

15.   Copy the dll inside  $(the directory)\plugins\release to bin inside Qt directory

  Now u can open Qt Designer and drag and drop the plugin from Widget Box