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

2012-06-20 Thread Muthulingam Ammaiappan
avascript, HTML and CSS. > > If you want to use C++ then you'll need a .exe, and until Vaudeville is > ready, I would suggest doing it in Witty (Wt) instead. > > > ------ > *From:* Muthulingam Ammaiappan > *To:* Qt-Interest ; "qt-int

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] how to develop the HTML5 application(web application) by using Qt?

2012-06-20 Thread Muthulingam Ammaiappan
,firebox..etc) if Qt is not able to help me out,can anyone suggest the best technology to fullfill my requirement? Thanks & Regards, Muthulingam On Wed, Jun 20, 2012 at 5:40 PM, Konstantin Tokarev wrote: > > 20.06.2012, 13:32, "Muthulingam Ammaiappan" : > > Hi Konsta

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, "Muthuli

[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

[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] Porting Qt app to windows

2012-06-01 Thread Muthulingam Ammaiappan
Hi Paul, http://doc.qt.nokia.com/4.7-snapshot/deployment-windows.html the above link will answer your question about deploying the Qt Applications on windows Thanks & Regards, Muthulingam On Fri, Jun 1, 2012 at 5:19 PM, Chasc wrote: > I have recently developed a C++ desktop application in Lin

Re: [Interest] QComboBox inside in QTableWidget: How to disable mouse scrolling of QComboBox?

2012-02-07 Thread Muthulingam Ammaiappan
Hi All, i have fixed this issue... i have implemented the wheelEvent in the CustomComboBox class and ignore the event... void CustomComboBox::wheelEvent(QWheelEvent *e) { e->ignore(); } Thanks & Regards, Muthu On Tue, Feb 7, 2012 at 3:57 PM, Muthulingam Ammaiappan <

Re: [Interest] QComboBox inside in QTableWidget: How to disable mouse scrolling of QComboBox?

2012-02-07 Thread Muthulingam Ammaiappan
On Tue, Feb 7, 2012 at 3:53 PM, Jaco Naude wrote: > I think you must install the eventFilter on the viewport() of the table > view. > Did not test, it just a quick quess. > > On Tue, Feb 7, 2012 at 11:59 AM, Muthulingam Ammaiappan < > muthulinga...@gmail.com> wrote: >

[Interest] QComboBox inside in QTableWidget: How to disable mouse scrolling of QComboBox?

2012-02-07 Thread Muthulingam Ammaiappan
Hi Friends, I have QTableWidget... it has "QComboBox" as a cellWidget in one of it column... I wanted to disable the ScrollEvent of QComboBox... so when cursor is on top of the QComboBox ,if user try to do the Mouse Scroll,then it should not change the index To achieve this, I just implement

Re: [Interest] how to add the Application icon to the file which is generated from my Qt Application..... so that saved file shows the Application icon image ??????

2012-01-18 Thread Muthulingam Ammaiappan
1"' > WriteRegStr HKCR "YourApplication.FileDescription\shell\print\command" "" \ > '"$INSTDIR\YourApplication.exe" /p "-i" "%1"' > > You then need to handle a command line parameter which you will receive > from

[Interest] how to add the Application icon to the file which is generated from my Qt Application..... so that saved file shows the Application icon image ??????

2012-01-18 Thread Muthulingam Ammaiappan
Hi Friends, I wanted to add the Application Icon image to the file which is generated from my Qt Application so that the saved file should display the Application Icon Image. (for example: PDF files shows the Adobe Reader Application Icon)... can anyone help me to fix this problem??

Re: [Interest] [Qt-interest] how to integrate the gdb debugger with QtCreator IDE in Windows?

2012-01-12 Thread Muthulingam Ammaiappan
Hi Konstantin, it is working nowi just installed the QtCreator 2.4.0... and it does automatically integrate the gdb with QtCreator IDE... Thanks & Regards, Muthulingam On Thu, Jan 12, 2012 at 6:00 PM, Muthulingam Ammaiappan < muthulinga...@gmail.com> wrote: > Hi Konst

Re: [Interest] [Qt-interest] how to integrate the gdb debugger with QtCreator IDE in Windows?

2012-01-12 Thread Muthulingam Ammaiappan
Hi Konstantin Tokarev, Thanks for your Reply first i will install the Qt Creator2.4.0 and try... Regards, Muthulingam 2012/1/12 Konstantin Tokarev > 12.01.2012, 16:24, "Muthulingam Ammaiappan" : > > Hi Konstantin Tokarev,Thanks for your Quick Reply. > > i ha

Re: [Interest] [Qt-interest] how to integrate the gdb debugger with QtCreator IDE in Windows?

2012-01-12 Thread Muthulingam Ammaiappan
Thanks & Regards, Muthulingam On Thu, Jan 12, 2012 at 5:44 PM, Konstantin Tokarev wrote: > 12.01.2012, 16:11, "Muthulingam Ammaiappan" : > > Hi Friends,I am facing the problem to integrate the "gdb" debugger with > QtCreator 2.0.1... > > You shoul