[Interest] QCompleter::currentIndex issue

2013-04-20 Thread Muhammad Bashir Al-Noimi
Hi, I set QCompleter to QLineEdit object… it works fine but I can’t get the current index from QCompleter by currentIndex() because it always return 0 for row index. PS I call currentIndex() from QLineEdit editingFinished() slot. void MainWindow::on_lineEdit_find_editingFinished()

Re: [Interest] uitools unknown module issue

2013-04-20 Thread Muhammad Bashir Al-Noimi
On 04/18/2013 08:25 AM, Kalinowski Maurice wrote: Have you checked whether uitools gets compiled on static builds? Oops I tried to change configure options as following but I got these errors: ./configure -static -release -developer-build -v -qt-sql-psql -qt-sql-sqlite -qt-zlib -qt-libpng

Re: [Interest] QMenu RightToLeft layout direction issue

2013-04-20 Thread Muhammad Bashir Al-Noimi
On 04/16/2013 12:40 PM, Muhammad Bashir Al-Noimi wrote: On 04/16/2013 09:30 AM, Bache-Wiig Jens wrote: On Apr 16, 2013, at 9:17 AM, Muhammad Bashir Al-Noimi wrote: Hello Guys, QMenu doesn't work with RightToLeft layout direction (as shown in this screenshot[1]) although I called setLayoutDi

Re: [Interest] Interest Digest, Vol 19, Issue 82

2013-04-20 Thread André Pönitz
On Fri, Apr 19, 2013 at 09:14:23PM +0100, Danny Price wrote: > > On 19 Apr 2013, at 20:49, André Pönitz > wrote: > > > On Fri, Apr 19, 2013 at 03:36:21PM +0100, Danny Price wrote: > >> I've used QMake in two large cross-platform projects, one of which > >> wasn't even a Qt application. I did loo

Re: [Interest] error with building project that contain webview

2013-04-20 Thread Thiago Macieira
On domingo, 21 de abril de 2013 00.31.46, henry cui wrote: > hello > I met a strange question that I create a default project,and adding a > webview in default UI,and also put "QT += webkit" into project file.and I > still get error prompts that like these: > E:\MyDocuments\test\ui_mainwindow

[Interest] error with building project that contain webview

2013-04-20 Thread henry cui
hello I met a strange question that I create a default project,and adding a webview in default UI,and also put "QT += webkit" into project file.and I still get error prompts that like these: E:\MyDocuments\test\ui_mainwindow.h:42: 错误:undefined reference to `_imp___ZN8QWebViewC1EP7QWidget' E:\

Re: [Interest] QXcbConnection error

2013-04-20 Thread Thiago Macieira
On sábado, 20 de abril de 2013 06.41.47, Ramakanthreddy_Kesireddy wrote: > QXcbConnection: Could not connect to display > Aborted Is your X server running? -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source Technology Center signature.asc Description: Th

Re: [Interest] [OT] Sexy Qt on the catwalk!

2013-04-20 Thread Till Oliver Knoll
Am 20.04.2013 um 14:29 schrieb Charley Bay : > Till Oliver Knoll sayeth: >> Hello list, >> >> If that ain't proof that Qt has become totally sexy and attractive! > > Oh, man... that signal is so hot ... mimetypes ... Oh, Baby! Don't forget the nice Views on the Models we have in Qt, to

Re: [Interest] [OT] Sexy Qt on the catwalk!

2013-04-20 Thread Charley Bay
Till Oliver Knoll sayeth: > Hello list, > > If that ain't proof that Qt has become totally sexy and attractive! > > Yesterday evening my wife and I went to the "Energy Fashion Night 2013" in > Zurich > (http://www.energy.ch/fashion-**night/) > where skinny mod

Re: [Interest] [Qt 5, OS X] Does OpenGL 3 Core Profile work (with Qt APIs)?

2013-04-20 Thread James Turner
On 18 Apr 2013, at 09:09, Till Oliver Knoll wrote: > So is OpenGL 3.x Core actually supposed to work with Qt 5? Or is this > still work in progress? It works fine, but the legacy QGL APIs don't help you much. Rough pseudo-code which works for me: QWindow *win = new QWindow win->setSurf

Re: [Interest] MouseAreas in QtQuick 2 Flipable

2013-04-20 Thread Michael Andersen
Some missing information: I am using Qt 5.0.1 If a reproducer is required, here is an example QML file The expected behaviour is that when flipped, and the blue square is clicked, "Back clicked" will be printed to the console. In reality, "Front clicked" still gets printed. //- - - - -8< - - - -

[Interest] MouseAreas in QtQuick 2 Flipable

2013-04-20 Thread Michael Andersen
Hi list, I'm using a Flipable as a container for two pages of controls that naturally include MouseAreas. I think I might be misunderstanding the purpose of the Flipable because when it is flipped and the back is showing, the MouseAreas in the front (now invisible) side still capture the mouse cl