[Development] Qt 5.10 : arrow keys not working in QGraphicsProxyWidget

2018-01-14 Thread wim delvaux
Hi all, To cut it short (too short ?) I have QLineEdit and QListWidget widgets embedded in a QGraphicsScene. Interacting works partially : Mouse clicking and mouse dragging works (selection of QLineEdit/item in QListWidget, using scrollbars) What does not work (anywhere) is using the arrow

[Development] Issue using QGraphicsProxyWidget and a QListWidget's scrollbars

2018-01-12 Thread wim delvaux
These are the settings with which I initialize my QGraphicsView setCacheMode(CacheBackground); setViewportUpdateMode(BoundingRectViewportUpdate); setRenderHint(QPainter::Antialiasing); setTransformationAnchor(AnchorUnderMouse); setInteractive( true ); setDragMode(

Re: [Development] Qt::MatchRecursive on QTreeWidget does not work

2017-02-14 Thread wim delvaux
b.com> wrote: > On Tuesday 14 February 2017 23:46:45 wim delvaux wrote: > > I have this code on a QTreeWidget in Qt 5.7 on Linux > > > > Qt::MatchFlags F = Qt::MatchRecursive | Qt::MatchContains | > > Qt::MatchWrap | Qt::MatchFixedString; > > > > if( ui->R

[Development] Qt::MatchRecursive on QTreeWidget does not work

2017-02-14 Thread wim delvaux
I have this code on a QTreeWidget in Qt 5.7 on Linux Qt::MatchFlags F = Qt::MatchRecursive | Qt::MatchContains | Qt::MatchWrap | Qt::MatchFixedString; if( ui->Regex_CB->isChecked() ) { F |= Qt::MatchRegExp; } CurrentMatches = ui->Output_TW->findItems( Txt, F ); I would

Re: [Development] [QtCS] QtRemoteObjects Session Summary

2015-06-21 Thread wim delvaux
HI guys, Just read this mail, I have already working code for a QtRPC based mechanism. Support threading, multiple parallel services, symmetric client/server (i.e server can be client and vice versa), Working on signals, multiple service models ( shared, group, private), auto detection using (

[Development] qmake output folder format

2015-03-02 Thread wim delvaux
Hi all, I have this project without any special defined variables. It produces its output under windows in build-x-y-z-debug/debug and build-x-y-z-release/release. In linux it is build-x-y-z-debug Why under windows this double output ? How can I eliminate the second debug folder ? It is really

Re: [Development] Alternative Loader QML component

2014-06-07 Thread wim delvaux
Where can I find the source for qqmlloader so I can see what is going on ? On Fri, Jun 6, 2014 at 9:20 PM, Konstantin Ritt ritt...@gmail.com wrote: QQmlLoader is just a convenience wrapper for QQmlComponent. Konstantin 2014-06-06 12:34 GMT+03:00 wim delvaux wim.delv...@adaptiveplanet.com

[Development] Alternative Loader QML component

2014-06-06 Thread wim delvaux
HI all, I would like to use XML/XSL to generate qml code much like a browser accepts XML and converts it to HTML automatically (providing propper stylesheet of course). Ideally this would be a special loader (say XMLLoader). Any suggestions on how to do this ? Preferrably a child class of the

Re: [Development] My contribution : Extension to Qt

2014-06-03 Thread wim delvaux
Check out the project in DynamicQObject On Tue, Jun 3, 2014 at 8:38 PM, Alejandro Exojo s...@badopi.org wrote: El Monday 02 June 2014, wim delvaux escribió: I tried using gerrit but this is very tedious (setting up GIT, getting access to Qt code, downloading lost of 'git' code which

[Development] My contribution : Extension to Qt

2014-06-02 Thread wim delvaux
Hi all, I have created a extension to Qt that allows for the creation of QObject children without the use of Q_OBJECT and moc for Qt 5.x. The extension does not require any changes to the Qt library. It allows for the creation of QObject instances at runtime and thus on-the-fly which is useful