maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Maemo 5 / Fremantle (https://talk.maemo.org/forumdisplay.php?f=40)
-   -   Say NO! to Qt-based Maemo! (https://talk.maemo.org/showthread.php?t=50557)

Joorin 2010-04-20 17:28

Re: Say NO! to Qt-based Maemo!
 
Quote:

Originally Posted by sevla (Post 619619)
I never said bling = progress. Improved user experience however does = progress. Object Oriented design = progress.

C has it's place in low level code but not in developing front end applications..

just my .02 cents.

fwiw I am a software developer at IBM and not some random wannabe techie blogger, trendy coffee shop goer.

My hunch is that what many call "improved user experience" (and I call bling) is bought with CPU cycles needed to keep ahead of other devices and with memory needed to actually give the end user a good experience.

Object oriented programming is a tool for modelling the problem domain. Its encapsulating properties are handy in many ways and it can be used to partition the code. Yes, most know this. But is it the best tool, in the shape of C++, for solving the problem of being the preferred toolkit on a device like the N900? My gut feeling is "Not all too sure.".

Why shouldn't C have a place in "front end applications"? If anything, this idea comes across as weird. But perhaps I'm just an old fart like the 3D designer some posts back assumes.

You being employed by IBM is good and all (I'm sure your eP3n1s is bigger than mine) but that's not an argument.

Bundyo 2010-04-20 17:29

Re: Say NO! to Qt-based Maemo!
 
Quote:

Originally Posted by admiral0 (Post 619207)
Try QT creator or Kdevelop and you'll see :)

Interface designer doesn't make you a programmer you know... ;)

sevla 2010-04-20 17:48

Re: Say NO! to Qt-based Maemo!
 
Quote:

Originally Posted by nicola.mfb (Post 619696)
Just for those that thinks qt is not easy, this is little tool that shows how to create a button that when clicked emit a signal on the session bus.

mywidget.h
Code:

#include <QWidget>
#include <QPushButton>
#include <QVBoxLayout>
#include <QDBusConnection>

class MyWidget : public QWidget
{
  Q_OBJECT
  public:
  MyWidget() : QWidget() {
    QDBusConnection::sessionBus().registerObject("/",this,QDBusConnection::ExportAllContents);
    new QVBoxLayout(this);
    QPushButton *b = new QPushButton("emit signal",this);
    layout()->addWidget(b);
    connect(b,SIGNAL(clicked()),SIGNAL(clicked()));
    show();
  }
  signals:
    void clicked();
};

.

Can also do it this way I think. Or use auto_ptr which does not need a "delete".

Code:

#include <QWidget>
#include <QPushButton>
#include <QVBoxLayout>
#include <QDBusConnection>

class MyWidget : public QWidget
{
  Q_OBJECT
  public:
  MyWidget() : QWidget(), m_b(QPushButton("emit signal", this)) {
    QDBusConnection::sessionBus().registerObject("/",this,QDBusConnection::ExportAllContents);
    new QVBoxLayout(this);
    layout()->addWidget(m_b);
    connect(m_b,SIGNAL(clicked()),SIGNAL(clicked()));
    show();
  }
  signals:
    void clicked();

private:
  QPushButton * m_b;
};


tomaszrybak 2010-04-20 18:26

Re: Say NO! to Qt-based Maemo!
 
Quote:

Originally Posted by smoku (Post 619144)
Like licensing did matter.

Freedesktop is run by a board and introduces its plans openly in advance. GNOME has clear open milestones decided in advance.

But putting dependency on Mono might be one of the reasons that some companies might want to avoid introducing GNOME into their devices.

Patola 2010-04-20 18:28

QT is not the problem, Nokia's attitude is.
 
I followed the whole discussion and I think the real problem is:

Quote:

Originally Posted by smoku (Post 619144)
One company holding the code could:
- keep you with an unknown release date of the next bugfix release
- join forces with another big company and totally change direction leaving the community behind
- more?

Nokia is doing that right now with the delay of PR1.2 and the Meego Consortium. How can we best avoid and work around these issues?

I am deeply disappointed with Nokia, btw. I once thought it understood open source/free software.

Texrat 2010-04-20 18:32

Re: QT is not the problem, Nokia's attitude is.
 
Quote:

Originally Posted by Patola (Post 619801)
I am deeply disappointed with Nokia, btw. I once thought it understood open source/free software.

Some individuals in the massive company do. They are working hard to spread the religion. ;)

Kwljunky 2010-04-20 18:40

Re: Say NO! to Qt-based Maemo!
 
So wait wait, let me get this straight, your complaining about QT which will make cross platform development, like porting symbian apps to meego and meego to symbian and to other platforms easier and less work, so we end up with a load of apps rather then a few... ???
It will make it look nicer rather then outdated when compared with other apps from other mobile platforms and they do compare them.

viraptor 2010-04-20 19:03

Re: Say NO! to Qt-based Maemo!
 
Quote:

Originally Posted by tomaszrybak (Post 619792)
But putting dependency on Mono might be one of the reasons that some companies might want to avoid introducing GNOME into their devices.

And more FUD. Gnome doesn't depend on Mono. Gnome includes some Mono-based applications by default. There is a difference.

sevla 2010-04-20 19:32

Re: Say NO! to Qt-based Maemo!
 
Quote:

Originally Posted by Joorin (Post 619719)
My hunch is that what many call "improved user experience" (and I call bling) is bought with CPU cycles needed to keep ahead of other devices and with memory needed to actually give the end user a good experience.

Object oriented programming is a tool for modelling the problem domain. Its encapsulating properties are handy in many ways and it can be used to partition the code. Yes, most know this. But is it the best tool, in the shape of C++, for solving the problem of being the preferred toolkit on a device like the N900? My gut feeling is "Not all too sure.".

Why shouldn't C have a place in "front end applications"? If anything, this idea comes across as weird. But perhaps I'm just an old fart like the 3D designer some posts back assumes.

You being employed by IBM is good and all (I'm sure your eP3n1s is bigger than mine) but that's not an argument.

I didn't mention my employment to reference anything to the size of my Electronic Penis. I was simply noting that my comments were based off experience and not random thoughts or ramblings..

Anyways I made my points. Both C and C++ have their strengths. In terms of the OP, I just don't get the big protest against Qt or C++ for that matter.

That is all.

nicola.mfb 2010-04-20 19:35

Re: Say NO! to Qt-based Maemo!
 
Quote:

Originally Posted by sevla (Post 619745)
Can also do it this way I think. Or use auto_ptr which does not need a "delete".

Hi sevla, as the button is a child of MyWidget, the MyWidget destructor will automagically delete it :)

Just another great feature of Qt :)

Regards

Niko


All times are GMT. The time now is 11:53.

vBulletin® Version 3.8.8