![]() |
2010-04-20
, 17:29
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#102
|
![]() |
2010-04-20
, 17:48
|
Posts: 244 |
Thanked: 155 times |
Joined on Aug 2009
@ DC
|
#103
|
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(); };
#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; };
![]() |
2010-04-20
, 18:26
|
Posts: 30 |
Thanked: 13 times |
Joined on Mar 2010
@ Poland
|
#104
|
![]() |
2010-04-20
, 18:28
|
Posts: 267 |
Thanked: 183 times |
Joined on Jan 2010
@ Campinas, SP, Brazil
|
#105
|
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?
![]() |
2010-04-20
, 18:32
|
|
Posts: 11,700 |
Thanked: 10,045 times |
Joined on Jun 2006
@ North Texas, USA
|
#106
|
I am deeply disappointed with Nokia, btw. I once thought it understood open source/free software.
![]() |
2010-04-20
, 18:40
|
Posts: 41 |
Thanked: 7 times |
Joined on Jan 2010
|
#107
|
![]() |
2010-04-20
, 19:03
|
Posts: 49 |
Thanked: 41 times |
Joined on Apr 2010
|
#108
|
![]() |
2010-04-20
, 19:32
|
Posts: 244 |
Thanked: 155 times |
Joined on Aug 2009
@ DC
|
#109
|
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.
![]() |
2010-04-20
, 19:35
|
Posts: 107 |
Thanked: 74 times |
Joined on Jan 2010
|
#110
|
Can also do it this way I think. Or use auto_ptr which does not need a "delete".
The Following User Says Thank You to nicola.mfb For This Useful Post: | ||
![]() |
Tags |
flamewar ftw, gtk ftw, gtk is simpler, gtk+, ide religion, maemo5, misguided rant, n gtk support, no qt, pointless, qt ftw, qt is simple, qt=not cute, stupid fud, trollparty |
|
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.