Re: [Interest] Inline Searchable combbox

2013-01-30 Thread André Somers
Op 31-1-2013 6:02, Weng Xuetian schreef: > Screenshot is from owncloud: > http://wstaw.org/m/2013/01/31/plasma-desktopPP1246.png > > Owncloud provides a combobox, when it's expanded, it provides a edit > field to filter the candidate result, can any one give a hint about > how to implement someth

Re: [Interest] Qt5 on tegra3

2013-01-30 Thread Ramakanthreddy_Kesireddy
Could you please provide help in porting Qt5 for the below mail? Br, Ramakanth From: Ramakanthreddy_Kesireddy Sent: Tuesday, January 29, 2013 11:34 AM To: interest@qt-project.org Subject: Qt5 on tegra3 Hi, am trying to port Qt5 on Tegra3 seco. But I could

[Interest] Inline Searchable combbox

2013-01-30 Thread Weng Xuetian
Screenshot is from owncloud: http://wstaw.org/m/2013/01/31/plasma-desktopPP1246.png Owncloud provides a combobox, when it's expanded, it provides a edit field to filter the candidate result, can any one give a hint about how to implement something similar in Qt? Thanks! __

[Interest] Qt5 LinuxFB crash

2013-01-30 Thread Andre Renaud
Hi, I'm evaluating Qt5 on an older ARM platform, using just the linuxfb (no xcb, or opengl). However when I run any of the examples I get a segfault somewhere inside the libqlinuxfb.so. Unfortunately, due to memory constraints, I am unable to build and run the full debug version of Qt5, so I can't

Re: [Interest] moc - specify include headers?

2013-01-30 Thread Charley Bay
charley: > > I'm using "qmake -tp vc" to generate MSVC *.vcproj files, works great. > > (Qt5, wrapping C++ classes for exposure to QML.) > > > > I'm doing some "tricky-template" stuff, and I *cannot* include the > template > > implementation in the "MyClass.hpp" header, but I *can* explicitly > i

Re: [Interest] QML window icon

2013-01-30 Thread Alan Alpert
On Wed, Jan 30, 2013 at 12:58 AM, Mark Summerfield wrote: > Hi Alan, Shawn, > > [snip] > > I tried doing the icon in C++ (on debian stable 64-bit, Qt 5.0.0): > > int main(int argc, char *argv[]) > { > QGuiApplication app(argc, argv); > QQuickView view(QUrl("qrc:/test.qml"))

[Interest] two QGraphicsView for the same QGraphicsScene main ans auxiliary, to simulate a magnifier lens

2013-01-30 Thread Francisco Ares
Hi, I am writing a piece of code for camera calibration (pixels/inch or equivalent): I have an image of a multiple printed marks and a few QGraphicsSvgItem targets to be moved on top of each printed mark for distance measurement, in pixels, and as I know previously the real distance of those marks

Re: [Interest] moc - specify include headers?

2013-01-30 Thread Thiago Macieira
On quarta-feira, 30 de janeiro de 2013 10.15.49, Charley Bay wrote: > I'm using "qmake -tp vc" to generate MSVC *.vcproj files, works great. > (Qt5, wrapping C++ classes for exposure to QML.) > > I'm doing some "tricky-template" stuff, and I *cannot* include the template > implementation in the "

Re: [Interest] qml plugin cannot be loaded with qt-5.0.0 release

2013-01-30 Thread Thiago Macieira
On quarta-feira, 30 de janeiro de 2013 18.13.24, T andolsi wrote: > Hi, > > I built qt-5.0.0 for armv7/directfb platform. > > > Running the MiniBrowser, I got the following error: > > qrc:///qml/BrowserWindow.qml:30:1: plugin cannot be loaded for module > "QtWebKit": Unknown error > QObject::co

Re: [Interest] can qt.conf be put in a common location?

2013-01-30 Thread Thiago Macieira
On quarta-feira, 30 de janeiro de 2013 08.49.03, Lincoln Ramsay wrote: > On 29/01/13 18:29, Thiago Macieira wrote: > > I really don't get what you or Lincoln are talking about. I don't see > > why building twice is necessary. Just deploy the DLLs that you > > compiled your application with, alongsi

[Interest] moc - specify include headers?

2013-01-30 Thread Charley Bay
I'm using "qmake -tp vc" to generate MSVC *.vcproj files, works great. (Qt5, wrapping C++ classes for exposure to QML.) I'm doing some "tricky-template" stuff, and I *cannot* include the template implementation in the "MyClass.hpp" header, but I *can* explicitly include the template implementatio

[Interest] qml plugin cannot be loaded with qt-5.0.0 release

2013-01-30 Thread T andolsi
Hi, I built qt-5.0.0 for armv7/directfb platform. Running the MiniBrowser, I got the following error: qrc:///qml/BrowserWindow.qml:30:1: plugin cannot be loaded for module "QtWebKit": Unknown error QObject::connect: Cannot connect (null)::pageTitleChanged(QString) to BrowserWindow::onTitleChang

Re: [Interest] QML Runtime

2013-01-30 Thread Alan Alpert
On Wed, Jan 30, 2013 at 1:24 AM, Mark Summerfield wrote: > Hi, > > I noticed that last month there was a discussion on the dev mailing list > about creating a qml runtime so that people could write pure QML > programs with #!/usr/bin/qml (or presumably with a file association on > Windows). > > I

Re: [Interest] question about translations and QT_NO_CAST_FROM_ASCII

2013-01-30 Thread Konstantin Tokarev
30.01.2013, 19:31, "Иван Комиссаров" : > In qt4, this construction was used: > > xml.createElement(QLatin1String("module")); Or QString::fromUtf8(), depending on string contents. -- Regards, Konstantin ___ Interest mailing list Interest@qt-project.or

Re: [Interest] question about translations and QT_NO_CAST_FROM_ASCII

2013-01-30 Thread Иван Комиссаров
In qt4, this construction was used: xml.createElement(QLatin1String("module")); I'm not sure about qt5. Иван Комиссаров 30.01.2013, в 19:27, franki написал(а): > Hi all, > > I'm trying to add internationalization to my app, and I found that this: > DEFINES += QT_NO_CAST_FROM_ASCII > can be a

[Interest] question about translations and QT_NO_CAST_FROM_ASCII

2013-01-30 Thread franki
Hi all, I'm trying to add internationalization to my app, and I found that this: DEFINES += QT_NO_CAST_FROM_ASCII can be added to .pro file to ensure that no string is omitted from tr function. However, I'm using XML's inside my app, to communicate with server, and these xml's should not be tran

Re: [Interest] QML Runtime

2013-01-30 Thread Rutledge Shawn
On 30 Jan 2013, at 1:01 PM, Bo Thorsen wrote: > Den 30-01-2013 11:24, Rutledge Shawn skrev: >> On 30 Jan 2013, at 10:24 AM, Mark Summerfield wrote: >> >>> Hi, >>> >>> I noticed that last month there was a discussion on the dev mailing list >>> about creating a qml runtime so that people could w

Re: [Interest] QML Runtime

2013-01-30 Thread Bo Thorsen
Den 30-01-2013 11:24, Rutledge Shawn skrev: > On 30 Jan 2013, at 10:24 AM, Mark Summerfield wrote: > >> Hi, >> >> I noticed that last month there was a discussion on the dev mailing list >> about creating a qml runtime so that people could write pure QML >> programs with #!/usr/bin/qml (or presumab

Re: [Interest] QML Runtime

2013-01-30 Thread Rutledge Shawn
On 30 Jan 2013, at 10:24 AM, Mark Summerfield wrote: > Hi, > > I noticed that last month there was a discussion on the dev mailing list > about creating a qml runtime so that people could write pure QML > programs with #!/usr/bin/qml (or presumably with a file association on > Windows). > > I j

[Interest] QML Runtime

2013-01-30 Thread Mark Summerfield
Hi, I noticed that last month there was a discussion on the dev mailing list about creating a qml runtime so that people could write pure QML programs with #!/usr/bin/qml (or presumably with a file association on Windows). I just wondered: - Is this likely to happen? - How would it cope with qs

Re: [Interest] QML window icon

2013-01-30 Thread Mark Summerfield
Hi Alan, Shawn, [snip] I tried doing the icon in C++ (on debian stable 64-bit, Qt 5.0.0): int main(int argc, char *argv[]) { QGuiApplication app(argc, argv); QQuickView view(QUrl("qrc:/test.qml")); view.setTitle("Test"); view.setIcon(QIcon(":/test.png"));