[Interest] qtbrowserplugin termination

2012-09-29 Thread Alexander Carôt
Hi -- the development of my own browserplugin with qt works better and better. For now I could compile my own app as a plugin on Windows XP and the Firefox browser. However, now the debugging process with a number of questions starts: The plugin itself is working fine but upon program terminati

Re: [Interest] qtbrowserplugin

2012-09-06 Thread Alexander Carôt
Hello all, an update regarding the qtbrowserplugin-examples: There are very obvious problems with most current Qt versions and I will write a summary about this very soon. If possible I also would like to update the project and wonder if this is possible at all and who at Nokia has the responsi

Re: [Interest] qtbrowserplugin

2012-09-05 Thread Alexander Carôt
Hej Oliver, thanks for the detailed answer ! However, in the meantime I solved the framework problem on OSX already myself with install_name_tool: In fact I have two Qt versions on my machine (the trivial plugin is built with 4.7 and the example app I posted is built with 4.8) but the actual pl

Re: [Interest] qtbrowserplugin

2012-09-05 Thread Alexander Carôt
> So -- I actually think that the Qt libs are not discovered ! What I > consider doing is this: > > Creating a Framworks folder in the Contents-directory, copying the > required Frameworks into it and changing the path in which the binary > looks for. I finally did this via install_name_tool and

Re: [Interest] qtbrowserplugin

2012-09-05 Thread Till Oliver Knoll
2012/9/4 Alexander Carôt : > ...When I check > the plugin binary regarding the required libs with otool -L trivial I get: > > localhost:MacOS soulalex$ otool -L trivial > trivial: > > QtGui.framework/Versions/4/QtGui (compatibility version 4.7.0, current > version 4.7.4) > ... > If I c

Re: [Interest] qtbrowserplugin

2012-09-04 Thread Alexander Carôt
>> OSX-Firefox: I put it into the /Library/Internet plugins folder and it >> finally appears in my firefox plugin list. When I launch the html page >> the browser recognized the plugin and that it is built in Carbon 32-Bit >> mode. So far it looks allright, however, then the browser crashes. > > I

Re: [Interest] qtbrowserplugin

2012-09-03 Thread Till Oliver Knoll
Am 03.09.2012 um 09:35 schrieb "Alexander Carôt" : > > OSX-Firefox: I put it into the /Library/Internet plugins folder and it > finally appears in my firefox plugin list. When I launch the html page the > browser recognized the plugin and that it is built in Carbon 32-Bit mode. So > far i

Re: [Interest] qtbrowserplugin

2012-09-03 Thread Alexander Carôt
ciated, thanks Alex Original-Nachricht > Datum: Mon, 03 Sep 2012 09:21:37 +0200 > Von: "Alexander Carôt" > An: "Alexander Carôt" , interest@qt-project.org, > thiago.macie...@intel.com > Betreff: Re: [Interest] qtbrowserplugin > > Original-

Re: [Interest] qtbrowserplugin

2012-09-03 Thread Alexander Carôt
Original-Nachricht > Datum: Sat, 01 Sep 2012 13:52:38 +0200 > Von: "Alexander Carôt" > An: Thiago Macieira , interest@qt-project.org > Betreff: Re: [Interest] qtbrowserplugin > > On sexta-feira, 31 de agosto de 2012 16.34.41, Alexander

Re: [Interest] qtbrowserplugin

2012-09-01 Thread Alexander Carôt
> On sexta-feira, 31 de agosto de 2012 16.34.41, Alexander Carôt wrote: > > ../../src/qtbrowserplugin.h: In member function ‘QStringList > > QtNPClass::mimeTypes() const’: ../../src/qtbrowserplugin.h:114: > error: > > invalid use of incomplete type ‘struct QMetaClassInfo’ > > /Library/Frameworks/Qt

Re: [Interest] qtbrowserplugin

2012-08-31 Thread Thiago Macieira
On sexta-feira, 31 de agosto de 2012 16.34.41, Alexander Carôt wrote: > ../../src/qtbrowserplugin.h: In member function ‘QStringList > QtNPClass::mimeTypes() const’: ../../src/qtbrowserplugin.h:114: error: > invalid use of incomplete type ‘struct QMetaClassInfo’ > /Library/Frameworks/QtCore.framewo

Re: [Interest] qtbrowserplugin

2012-08-31 Thread Alexander Carôt
ex Original-Nachricht > Datum: Fri, 31 Aug 2012 17:31:05 +0400 > Von: Konstantin Tokarev > An: "Alexander Carôt" > CC: "interest@qt-project.org" > Betreff: Re: [Interest] qtbrowserplugin > > > 31.08.2012, 17:02, "Alexand

Re: [Interest] qtbrowserplugin

2012-08-31 Thread Alexander Carôt
> CC: "interest@qt-project.org" > Betreff: Re: [Interest] qtbrowserplugin > > > 31.08.2012, 17:02, "Alexander Carôt" : > > Update: > > > > I figured a problem in qtbrowserplugin_p.h > > > > #ifdef Q_WS_X11 > > #   includ

Re: [Interest] qtbrowserplugin

2012-08-31 Thread Konstantin Tokarev
31.08.2012, 17:02, "Alexander Carôt" : > Update: > > I figured a problem in qtbrowserplugin_p.h > > #ifdef Q_WS_X11 > #   include >   class QtNPStream; >   class QtNPBindable; > #endif > > must be changed to > > #ifdef Q_WS_X11 > #   include > #endif > > class QtNPStream; > class QtNPBindable;

Re: [Interest] qtbrowserplugin

2012-08-31 Thread Alexander Carôt
> Datum: Fri, 31 Aug 2012 12:16:43 +0200 > Von: "Alexander Carôt" > An: interest@qt-project.org > Betreff: Re: [Interest] qtbrowserplugin > ... sorry, two corrections to my previous post: > > 1.) It is version 2.3 of the qtbrowserplugin > 2.) on Win I am using

Re: [Interest] qtbrowserplugin

2012-08-31 Thread Alexander Carôt
gt; An: interest@qt-project.org > Betreff: [Interest] qtbrowserplugin > Hi all, > > I have a qt app, which I want to distribute as a browser plugin. As a > first step I loaded down qtbrowserplugin-2.4 and tried to compile the > trivial-example. The problem is that on OSX and o

[Interest] qtbrowserplugin

2012-08-31 Thread Alexander Carôt
Hi all, I have a qt app, which I want to distribute as a browser plugin. As a first step I loaded down qtbrowserplugin-2.4 and tried to compile the trivial-example. The problem is that on OSX and on Windows I get this error message: In file included from ../../src/qtbrowserplugin.cpp:28: ../..

[Interest] qtbrowserplugin-2.3-opensource\examples\trivial

2012-03-13 Thread Sergey
Hello, I've downloaded qtbrowserplugin-2.3-opensource Built qtbrowserplugin-2.3-opensource\examples\trivial into release\nptrivial.dll How to install nptrivial.dll as plugin into FireFox, Chrome? -- Thanks ___ Interest mailing list Interest@qt-project.