RSS
 

Improving Qt’s properties.

01 Jul

I have known Qt for about 9 years now. My first encounter with Qt was as a normal user who was exploring Linux to find out what the fuss was all about. With KDE I got my first experience of Qt. But I have only very recently started to use Qt as a development tool, and I have been very happy about that. Makes life easy, with Qt being ported to Symbian, Meego the gates are open for developers to make money. Since I like to experiment with all the platforms no matter who they are from, I also played around with Objective-C on iPhone some while ago.

While Qt offers many many nice features which make Objective-C look like from stone age. Objective-C has some nice features as well, one I mentioned in my previous post, which Qt already solves rather nicely and in a better way as one of the commenter pointed out. Objective-C and Qt are quite similar in a sense that they provide improvements on top of an already existing language. Qt with meta object compiler and Obj-C with something similar.

So back to the point, I now use Q_PROPERTY macro in my QObjects based classes a lot:

class Person : public QObject
{
Q_OBJECT
Q_PROPERTY(QString name READ name WRITE setName)

public:
void setName(const QString& aName) { iName = aName; }
QString name() const { return iName; }

private:
QString iName;
};

Now consider this Objective-C code:

// person.h
@interface Person : NSObject
{
NSString* name;
}
@property (nonatomic, retain) NSString* name; // same as Q_OBJECT 

// person.m:
@implementation Person
@synthesize name; // this generates getter/setter in the .m file

// rest of the code ...

So do you see what I see ? In the Objective-C version of the code I don't have to write the getter and setter methods, whereas in Qt i have to. I think all the information to automatically implement the getter and setter functions is already in the Q_PROPERTY macro, may be the moc compiler can go ahead and also generate the getter and setter methods for us ?

 

Developing Maemo5 and MeeGo applications on Windows

21 May

Maemo/Meego devices are like a computer that you can put in your pocket, for example the N900. Before N900 these maemo devices had been slow, but thanks to the iphone the whole computer industry has realized the importance of speed. N900 is not slow, what i like about this phone is the keyboard and the great web browser that it has. Just imagine the scenario, you are reading a web page on your desktop and then when you have to catch the bus, that page opens up when you start the browser on your N900. This is possible with the firefox addon called the Mozilla Weave. N900 is just awesome, it just needs to exercise 4 hours a week to lose some extra fat that it has, but other wise I really like it.

But perhaps the best thing about N900 is that my Qt apps that I write for  Symbian  also work with little modifications on my N900! you dont even need to install some crazy toolchains or use the linux os to do any of this; with the Nokia Qt SDK you can do all of this from your windows computer. Even though its in beta right now; but every thing works; i am using it for a meego/maemo app i am doing and no issues yet

 
 

Auto Updating apps in Android 2.2/Froyo.

21 May

I just love the idea of auto updating apps in android 2.2 both from the perspectives of the developer and a user. As a developer this will help me make sure all of the users of my app are on the same version. As a user I don’t have to care about updates any more, less work for me and every thing should just work.

 
 

Google now shows government take down requests by country.

20 Apr

at http://www.google.com/governmentrequests/

Do you know what is interesting about that page ? Pakistan made less than 10 removal requests last year, now compare that with Germany, United States, United Kingdom, India (??) and Brazil ( WTF ! )

Now lets look at the data requests, Brazil is again at the top, I wonder if the Brazilian government uses Google as an intelligence service. Pakistan is not even in this list. Israel made 30 requests. Hmmmm…..

I wonder what kind of information Brazil and India requested from Google, I am also surprised at UK and USA governments, the lands of the free people.

 

Gizmodo, where kids gossip on next years garbage

20 Apr

I must admit that I waste an awe-full lot of time on the internets, the web sites to be blamed for this are not so many, youtube, engadget, reddit, aljazeera, dawn.com, etc …

But one web site which I just stopped visiting after I realized that it was run by 16 year olds was gizmodo, the reasons were because they publish too much of apple specific stuff and … well, they sound so immature and most of their posts are kind of idiotic. But they just did another stupid thing recently, and since i dont go their any more, I found about this from reddit

So right now the top two links on reddit are about this, the other link is this

Any ways, back to the point now. I have realized that the best way to stop wasting time on these gadget blogs is just by realizing that life is just too short to waste.

ps: google facebrick if you have a nokia n900, its powered by qfacebookconnect :)

 

The iPhone OS 4.0 Agreement stink.

10 Apr

So the internets are abuzz with the news that the new iphone os 4.0 developer agreement prohibits using any non apple endorsed programming language, framework for iphone/ipad development. This is hardly any thing surprising, given the way apple has been acting ever since jobs came back in control. When they were irrelevant they didn’t have the power to make any rules, now that they have a good market share, they are showing it. It almost feels like a kid who lost a game in his teens taking revenge in his 50′s.

Some people are comparing this with the Window Phone 7 Series and how its limited to .NET and C#, well that’s not exactly the same thing, Windows Phone 7 has no market share as of now, it will be coming to market in the late 2010. Microsoft sets this standard before they have any kind of market share, and besides any language ( php, vb, python ) can be used to create CLR code and that can be used for making apps on wp7 ( yet ).

But I believe apple has every right to do what it is doing. It might be good for the company, but sad for most of the developers. I myself was looking at monotouch as a tool for doing apps for iphone, but I went with objective c instead, it was not that difficult to learn and I think if you are a good c++ programmer objective c would be a piece of cake to learn, in two or three days. Monothouch is also just too expensive in my opinion.

However, like google has said earlier and I believe it myself that webapps are the future way of doing apps. Phonegap for example is an awesome project and it has a lot of potential, what we need now is standardization of web apps / javascripts apis. W3C for example has now standardized the Geolocation api, I think we need similar standard apis for example to access the phone book, sensors etc ….

 

One good thing in Objective-C

21 Feb

While learning about objective-c. I came across a single feature of objective-c which I think if moved to c++ would make for a lot less coding.

Consider this objective c code for a class declaration:

// .h file:
@interface classname {
// instance variables
}
+(void)classMethod;
@end

// .m file:
@implementation classname
-privateFunction1{}
-classMethod { [self privateFunction1]; }
@end

While if you would have to do something similar in c++, this is how you would do it:


// .h file:
class classname
{
public:
void classMethod();

private:
void privateFunction();
}

// .cpp file:

void classname::classMethod() { privateFunction(); }
void classname::privateFunction() {}

Even if a function in a C++ class is private, you still have to declare it in the class declaration. why ?
It would be so much better if all the private functions can just placed in the cpp file, and we dont have to put them in the class declaration.

Objective C has the benefit of using @implementation … @end to figure out such methods. But if in c++ if we just declare a function in the .cpp file and such function is not present in the class declaration, the compiler can know that its a private function. Like so:


// .h file:

class sample
{
public:
void doSomething();

private:
int x;
};

// .cpp file:

void sample::doSomethingPrivately()
{
// has access to member data.
x = 7;
}

void sample::doSomething()
{
/// ...
doSomethingPrivately();
}

 
3 Comments

Posted in c, objective c

 

Two finger scrolling on Windows 7/XP/Vista

30 Jan

The two finger page scrolling on the macbooks is really neat, I think it is a better implementation then using a part of the laptop track pad for scrolling the pages. The newer laptops now have that feature, but what if your laptop doesn’t have multi-touch trackpad ? Well Logitech has released a new free iphone app which lets you use your iphone/ipod as a multi-touch track pad with your laptop.

First you need to install it in your iphone/ipod.  Search for ‘Touch Mouse’  in the app store, install it. Then go to Logitech Touch Mouse Server Web site, and get the server software for what ever your OS is. It seems only Linux is not supported. Sad! . Install the server, then run the app on your iphone/ipod, it will detect your computer and hit connect.

So while this is very neat, not every one has a iphone/ipod ( I have a first generation ipod touch ). It would be really great if there was a similar app for the Symbian phones, Android, WebOS or Maemo phones.

To do that we need to understand the protocol used by the touch mouse server and the client. My investigation just came to the conclusion that its a UDP based protocol, the app also uses bonjour for service discovery. The UDP protocol is very cryptic and it seems this is not a easy task, it would be just great if Logitech can release some documents on this.

 
1 Comment

Posted in Qt, UI, nokia

 

The iPad SDK aka iPhone OS 3.2 SDK

28 Jan

The iphone 3.2 sdk does not support the iphones and ipod touches.

But there are new apis in the sdk, all of which are just for the ipad. There is an api to handle documents much like a desktop os. Some new kind of views etc. etc.

But this ipad is very iphnoeish down to the OS level. So i believe ra1ndrop would also work on it ????? it can be jailbroken and then we have multitasking on it. wohoo ? not really! official multitasking support would mean $$ opportunities.

They say its another gold rush, i am not sure. I would hope for one but do people have more 500$ to burn after they have already burned/are burning quite a huge sum on the iphone?

But any ways, any other mobile os (except windows mobile and blackberry) would be good on it. Symbian, Maemo, Android or WebOS.

 
No Comments

Posted in ipad

 

iPad, No Multitasking..

27 Jan

Disappointing.

Post Complete.

 
2 Comments

Posted in ipad