Re: [Interest] Semi-OT: Pre-Compiled SQLite vs. building from source

2012-05-18 Thread David Boosalis
Qt comes with SQLite, so unless you explicitly build it out you get it for free. I use Qt and SQLite on Windows using Visual Studio 2008, and have had no problem implementing SQLlite. Just make sure you ship the SQL DLL as part of your code On Fri, May 18, 2012 at 5:13 PM, K. Frank wrote: > Hel

[Interest] Semi-OT: Pre-Compiled SQLite vs. building from source

2012-05-18 Thread K. Frank
Hello List! I'm fixing to use SQLite with Qt (and will surely have more questions in the future). My first question: What should I be downloading to get started? I am currently using Qt 4.8.0-rc1 compiled with 64-bit mingw-w64 on 64-bit windows 7. The SQLite site offers pre-compiled windows bi

Re: [Interest] Build webkit with QT for Embedded Linux!

2012-05-18 Thread Lata Agrawal
I can see the cross-compiled qtwebkit library files in QT install dir. Also by default if webkit is not specified in configure command, it builds webkit. I am using previewer app from webkit examples to test the browser. I have built QT again with -release and -webkit options. BTW, on device, I j

Re: [Interest] Build webkit with QT for Embedded Linux!

2012-05-18 Thread Mandeep Sandhu
On Fri, May 18, 2012 at 5:56 PM, Lata Agrawal wrote: > I pointed my webkit browser http://www.barackobama.cm/life-of-julia. When I > execute cross-compiled app on Embedded device, it doesn't display anything > but on Linux-x86, it loads fine. > If you don't mind, can you send me the configure comm

Re: [Interest] Build webkit with QT for Embedded Linux!

2012-05-18 Thread Lata Agrawal
I pointed my webkit browser http://www.barackobama.cm/life-of-julia. When I execute cross-compiled app on Embedded device, it doesn't display anything but on Linux-x86, it loads fine. If you don't mind, can you send me the configure command you are using an

Re: [Interest] Build webkit with QT for Embedded Linux!

2012-05-18 Thread Mandeep Sandhu
On Fri, May 18, 2012 at 5:10 PM, Lata Agrawal wrote: > Do I need to build it in release it by explicitly using -release switch? It'll be better to build it in release mode unless you're planning to debug the Qt itself. It'll also reduce the size of the built libraries by a good amount. This is im

Re: [Interest] Build webkit with QT for Embedded Linux!

2012-05-18 Thread Lata Agrawal
Do I need to build it in release it by explicitly using -release switch? -Lata On 18 May 2012 16:57, Lata Agrawal wrote: > Hi Mandeep, > > Thanks for replying. I am simple interactive web pages, no video or audio. > App works fine on Linux-x86 but same app when cross-compiled for Linux/MIPS > d

Re: [Interest] Build webkit with QT for Embedded Linux!

2012-05-18 Thread Lata Agrawal
Hi Mandeep, Thanks for replying. I am simple interactive web pages, no video or audio. App works fine on Linux-x86 but same app when cross-compiled for Linux/MIPS doesn't show anything at all on screen. Do I need to add any feature while cross-compiling QT to be able to load HTML5 pages using Qtwe

Re: [Interest] Build webkit with QT for Embedded Linux!

2012-05-18 Thread Mandeep Sandhu
> I want to display HTML5 pages using QTWebkit module. I am able to execute > the webkit application on Linux-x86 and it loads the HTML5 page perfectly > fine. But when I cross-compile the same application for Linux/MIPS device > and execute the app on device, it doesn't show anything. What sort o

Re: [Interest] QWebPage, deleteLater, Mac

2012-05-18 Thread wargand
Usually a small compilable example is required. But in this case a link might be sufficient: http://qt-project.org/doc/qt-4.8/qwebpage.html The Thumbnailer example. My code ist almost identical. The difference is that my page is a pointer and in void Thumbnailer::render() I added a page->delete

[Interest] QWebPage, deleteLater, Mac

2012-05-18 Thread wargand
I have a class, which creates a QWebPage *page. I connect: connect(page, SIGNAL(loadFinished(bool)), this, SLOT(renderSlt(bool))); In renderSlt I do a page->deleteLater() as last step. Works great in Linux, but the same code crashes. Any ideas? Guido _

[Interest] Build webkit with QT for Embedded Linux!

2012-05-18 Thread Lata Agrawal
Hi, I want to display HTML5 pages using QTWebkit module. I am able to execute the webkit application on Linux-x86 and it loads the HTML5 page perfectly fine. But when I cross-compile the same application for Linux/MIPS device and execute the app on device, it doesn't show anything. I have cross-co

Re: [Interest] Create Plugins(.bundle extension file) to existing MacOSX application using Qt

2012-05-18 Thread Till Oliver Knoll
2012/5/17 Arun Kumar : > > > How i can create .bundle extension file using Qt creator Hi, I am not aware that qmake (which in the end is what QtCreator is using) supports the .bundle type. By default when you create an application you get an .app bundle. From what I understood after a quick look