Re: [Interest] drop indicator not shown in custom QTreeView

2012-06-20 Thread Jan Kundrát
On 06/19/12 18:41, fra...@gmail.com wrote: > Any hint? Am I (probably) missing something? Your source code doesn't show a call to setAcceptDrops() [1] for the target QTreeView. Cheers, Jan [1] http://doc.qt.nokia.com/4.7-snapshot/qwidget.html#acceptDrops-prop -- Trojita, a fast e-mail client -

[Interest] how to develop the html5 game application(web application) based on Qt

2012-06-20 Thread Muthulingam Ammaiappan
Hi Friends, i wanted to develop the HTML5 application(web application) like tic-tac-toe game using Qt I am planning to design the UI in QML or Qt and the business logic will be in Standard Qt C++. can any one please help me out how to develop the HTML5 web application using the above combina

Re: [Interest] QtNetwork in iOS application

2012-06-20 Thread Bo Thorsen
Den 19-06-2012 08:43, Thomas Sondergaard skrev: > Is it possible to use QtCore and QtNetwork in an iphone application with > a standard UIKit GUI? I'm thinking particularly about the eventloop and > events and async I/O with QNetworkAccessManager. How can I integrate the > Qt and UIKit eventloops?

[Interest] how to develop the HTML5 application(web application) by using Qt?

2012-06-20 Thread Muthulingam Ammaiappan
Hi Friends, i wanted to develop the HTML5 application(web application) like tic-tac-toe game using Qt I am planning to design the UI in QML or Qt and the business logic will be in Standard Qt C++. can any one please help me out how to develop the HTML5 web application using the above combina

Re: [Interest] how to develop the HTML5 application(web application) by using Qt?

2012-06-20 Thread Konstantin Tokarev
20.06.2012, 13:08, "Muthulingam Ammaiappan" : > Hi Friends, > i wanted to develop the HTML5 application(web application) like tic-tac-toe > game using Qt > I am planning to design the UI in QML or Qt and the business logic will be in > Standard Qt C++. > > can any one please help me out how

Re: [Interest] how to develop the HTML5 application(web application) by using Qt?

2012-06-20 Thread Muthulingam Ammaiappan
Hi Konstantin, Thanks for your quick reply... can you suggest the best way to develop the html5 web application(game) ? and is it possible to develop in Qt? Thanks & Regards, Muthulingam On Wed, Jun 20, 2012 at 5:28 PM, Konstantin Tokarev wrote: > > 20.06.2012, 13:08, "Muthulingam Ammaiappan"

Re: [Interest] how to develop the HTML5 application(web application) by using Qt?

2012-06-20 Thread Konstantin Tokarev
20.06.2012, 13:32, "Muthulingam Ammaiappan" : > Hi Konstantin,Thanks for your quick reply... > can you suggest the best way to develop the html5 web application(game) ? > and is it possible to develop in Qt? With Qt you can develop hybrid applications, i.e. part of your application is written in

Re: [Interest] how to develop the HTML5 application(web application) by using Qt?

2012-06-20 Thread Muthulingam Ammaiappan
Hi Konstaintin, my requirement is not bringing the webcontent into Qt Application... my intention is to develop the web application(example: online image editor)(particulary games like tic-tac-toe) and that web application should run all popular web browsers(internet explorer,google chrome,fi

[Interest] [OT] Re: how to develop the HTML5 application(web application) by using Qt?

2012-06-20 Thread Till Oliver Knoll
Am 20.06.2012 um 11:49 schrieb Muthulingam Ammaiappan : > ... > > if Qt is not able to help me out,can anyone suggest the best technology to > fullfill my requirement? The best technology to implement a HTML5 "web app" is... to use the HTML5 technology itself ;) Unfortunatelly there is no "ma

Re: [Interest] Is Nokia officially done with Qt?

2012-06-20 Thread Atlant Schmidt
d3fault: You act as though Nokia tells its employees more-meaningful/less-spun stuff than Nokia tells to us on the outside. That's not how corporations work and it's certainly not how Nokia's current "leadership" works; they spin everything they say, for internal as well as external consum

Re: [Interest] [OT] Re: how to develop the HTML5 application(web application) by using Qt?

2012-06-20 Thread Konstantin Tokarev
You can also try Wt [1] - it allows you to write web applications in C++ (you may even use non-GUI Qt stuff!) [1] http://www.webtoolkit.eu/wt -- Regards, Konstantin ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman

Re: [Interest] Porting Qt app to windows

2012-06-20 Thread Diego Iastrubni
On Tue, Jun 19, 2012 at 8:31 PM, Jason H wrote: > One bug kicker is remembering to copy the Qt Plugins directory, else > images won't work... > > And telling QApplication where to look for them, also was quite fun learning... http://qt-project.org/doc/qt-5.0/deployment-plugins.html http://qt-pro

Re: [Interest] Porting Qt app to windows

2012-06-20 Thread Till Oliver Knoll
2012/6/20 Diego Iastrubni : > ... > And telling QApplication where to look for them, also was quite fun > learning... If you place them in the "standard location" - as indicated in the mentioned Qt docs - there is no need to programatically tell the Qt framework where to look for them ("the applic

Re: [Interest] [OT] Re: how to develop the HTML5 application(web application) by using Qt?

2012-06-20 Thread Muthulingam Ammaiappan
Hi Konstantin & Till Oliver, i will investigate more details about Wt... i think it will fulfill my requirements(because it offers full development in C++ and some Qt functionalities also.. Thanks for your great support, Regards, Muthulingam On Wed, Jun 20, 2012 at 7:26 PM, Konstantin Tokarev

Re: [Interest] [OT] Re: how to develop the HTML5 application(web application) by using Qt?

2012-06-20 Thread Till Oliver Knoll
2012/6/20 Konstantin Tokarev : > You can also try Wt [1] - it allows you to write web applications in C++ (you > may even use non-GUI Qt stuff!) That looks interesting! In fact, when browsing the documentation it seems to closely resemble the Qt API ;) My first understanding after browsing the d

Re: [Interest] how to develop the html5 game application(web application) based on Qt

2012-06-20 Thread Jason H
This request makes little to-no sense. The output from any Qt effort will be either a library or an executable. If what you want is just everything in a HTML file then there is no C++, you'll use Javascript, HTML and CSS. If you want to use C++ then you'll need a .exe, and until Vaudeville is r

Re: [Interest] how to develop the html5 game application(web application) based on Qt

2012-06-20 Thread Muthulingam Ammaiappan
Thanks .. On Wed, Jun 20, 2012 at 9:42 PM, Jason H wrote: > This request makes little to-no sense. > > The output from any Qt effort will be either a library or an executable. > > If what you want is just everything in a HTML file then there is no C++, > you'll use Javascript, HTML and CSS. > >

Re: [Interest] [OT] Re: how to develop the HTML5 application(web application) by using Qt?

2012-06-20 Thread Jason H
It is a very interesting project. I have fiddled with it. Someone suggested that the fork of Qt be called Cutie, or something like that, but that's what I called my efforts to unify Qt and Wt. I ended up creating a  version of UIC that would take a UI and put out a Wt-classed and #included versi

Re: [Interest] ICS Announces Qt-Based Google APIs

2012-06-20 Thread Justin Noel
On 06/19/2012 03:48 PM, Till Oliver Knoll wrote: Am 19.06.2012 um 20:21 schrieb Lynn Gray >: * *Google Maps* -- embed Google Maps images or Street View panoramas without the need for JavaScript. Just out of curiosity: is this a Google Map, shown via a WebKit view,

Re: [Interest] ICS Announces Qt-Based Google APIs

2012-06-20 Thread Justin Noel
The prediction repo is indeed empty. The rest are there. I'll see what's going on there. That api may still need work. If you have questions you can shoot them my way. Thanks for the heads up! --Justin On 06/19/2012 06:35 PM, Donald Carr wrote: > The: > > git clone https://code.google.com/p/qt

[Interest] MySQL question using QT

2012-06-20 Thread Sujan Dasmahapatra
It's slightly off-the-topic question I apologize for that. I am facing problem in connecting to mysql server from remote client. I am using this connection in my QT application. But even if I try to connect from outside QT I am failing. Pls check this snippet //in the /etc/my.cnf file I hav

Re: [Interest] MySQL question using QT

2012-06-20 Thread Jason H
You have to GRANT root permission to login from your IP, or IP range. From: Sujan Dasmahapatra To: interest@qt-project.org Sent: Wednesday, June 20, 2012 10:06 AM Subject: [Interest] MySQL question using QT It’s slightly off-the-topic question I apologize

Re: [Interest] MySQL question using QT

2012-06-20 Thread Sujan Dasmahapatra
Yes I forgot to mention that. //I log in to mysql server as root and exceuted these commands mysql –u root mysql mysql> use myql; mysql> GRANT ALL ON *.* to root@’10.149.20.120 ’ IDENTIFIED BY ‘password’; mysql> FLUSH PRIVILEGES; rom: Jason H [mail

Re: [Interest] MySQL question using QT

2012-06-20 Thread karl . ruetz
As I recall, the bind-address should be the server's IP, not the clients. For example, if your MySQL server IP is 172.16.246.129 then entire block should be look like as follows: [mysqld] user= mysql pid-file= /var/run/mysqld/mysqld.pid socket = /var/run/mysqld/mysq

[Interest] Using QTabWidget to select model instance to display in QTableView

2012-06-20 Thread Carl Schumann
Qt community, I would like to use a QTabWidget to allow user selection of the model currently displayed in a single QTableView instance. I want to do this because the models have different data but their presentation should be uniform, e.g., width of each column. addTab(...) does not appear

[Interest] How to add global functions to a QJSEngine?

2012-06-20 Thread Bart Kelsey
Greets! Using QScriptEngine, it was possible to add global javascript functions (constructors for QObjects, etc). With the new QJSEngine, which appears to be in most ways roughly equivalent to QScriptEngine, there isn't an immediately obvious way to do this. Could someone shed some light on how

[Interest] Using a parent item as a ShaderEffectSource

2012-06-20 Thread Bart Kelsey
A while back, I asked a question on StackOverflow about how to use an item's parent as a ShaderEffectSource: http://stackoverflow.com/questions/9510013/is-there-some-way-i-can-have-a-qml-widget-affect-the-content-below-it-with-a-gls The code in the response looked at first glance like it should w

Re: [Interest] MySQL question using QT

2012-06-20 Thread Sujan Dasmahapatra
Do I need to have mysql installed in the client machine. Kind regards, Sujan Dasmahapatra Project Leader, Aero Group CE - Aero Group Tel  +91 80 66470248 Mob  s...@lmwindpower.com LM Wind Power Blades lmwindpower.com Together we capture the wind to power a cleaner world This e-mail an

[Interest] loading PPM {poof}

2012-06-20 Thread Waitman Gobble
Hi, When I try to load a PPM into a QPixmap and display on my program dies. I understand the following statement from the manual to imply that QImage and QPixmap support same image formats: "if no manipulation is desired, the image file can be loaded directly into a QPixmap". I also believe th

Re: [Interest] loading PPM {poof} woops, missed a word.

2012-06-20 Thread Waitman Gobble
sorry, it was supposed to read 'display on QGraphicsView/QGraphicsScene.. ie, gv = new QGraphicsView(this); gs = new QGraphicsScene(this); Waitman Gobble wrote .. > Hi, > > When I try to load a PPM into a QPixmap and display on my program dies. > > > I understand the following stat

Re: [Interest] loading PPM {poof}

2012-06-20 Thread Thiago Macieira
On quarta-feira, 20 de junho de 2012 21.32.17, Waitman Gobble wrote: > path = model->filePath(index); > qDebug() << path; > > QPixmap pm(path); > statusBar()->showMessage( > tr("puf (%1) ") > .arg(pm.width()+","+pm.height())); > >

Re: [Interest] loading PPM {poof}

2012-06-20 Thread Waitman Gobble
Thiago Macieira wrote .. > On quarta-feira, 20 de junho de 2012 21.32.17, Waitman Gobble wrote: > > path = model->filePath(index); > > qDebug() << path; > > > > QPixmap pm(path); > > statusBar()->showMessage( > > tr("puf (%1) ") > > .arg(

[Interest] Qt on Windows Phone 8

2012-06-20 Thread Lucas.Betschart
Will Qt be avaiable for WP8 since it supports C++ ? ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest