Re: [Interest] need advise on QStandardItemModel vs. QAbstractTableModel

2016-01-13 Thread Bo Thorsen
Hi Frank, Den 12-01-2016 kl. 22:40 skrev Frank Rueter | OHUfx: I just joined this list so hello everybody. I'm using QT via PySide mainly to create tools for vfx workflows and custom tools for the software Nuke. I'm not a programmer by trade, more of

Re: [Interest] How to create a list.

2016-01-13 Thread Konstantin Tokarev
13.01.2016, 04:10, "william.croc...@analog.com" : > On 01/12/2016 07:37 PM, Elvis Stansvik wrote: >>  2016-01-12 15:37 GMT+01:00 Bill Crocker: >>>  Hello: >>> >>>  Could someone please show me the few lines of code required >>>  to add a

Re: [Interest] How to create a list.

2016-01-13 Thread william.croc...@analog.com
On 01/13/2016 05:33 AM, Konstantin Tokarev wrote: 13.01.2016, 04:10, "william.croc...@analog.com": On 01/12/2016 07:37 PM, Elvis Stansvik wrote: 2016-01-12 15:37 GMT+01:00 Bill Crocker: Hello: Could someone please show me the

Re: [Interest] User comments on web pages?

2016-01-13 Thread Curtis Mitch
I've always thought it would be cool to have some kind of web interface to the documentation that allowed edit suggestions from users, with a review system that pinged the doc team/relevant maintainers to approve or give feedback on those edits. It would solve the problem of the barrier to

Re: [Interest] Qt and remote files?

2016-01-13 Thread Matthew Woehlke
On 2016-01-13 11:06, Thiago Macieira wrote: > On Wednesday 13 January 2016 10:16:36 Matthew Woehlke wrote: >> I see that in Qt 5, QFileDialog has gained methods to work with URL's >> instead of (just) local paths. How does this work? (Does it integrate >> with e.g. KIO where supported?) > > The

[Interest] How do i monitor DBus functions (not signals)

2016-01-13 Thread Mark Gaiser
Hi, I'm trying to monitor "org.freedesktop.Notifications" for the notifications (see [1] for reference) that broadcasted from there. Every notification ends up in a "Notify" method on that dbus interface. I'm trying to monitor that, but kinda fail at it... I can monitor the notifications with

Re: [Interest] need advise on QStandardItemModel vs. QAbstractTableModel

2016-01-13 Thread André Somers
Op 14/01/2016 om 01:08 schreef Stephen Kelly: Bo Thorsen wrote: To me QStandardItemModel is a quick hack I sometimes use when I just want to show a bit on the screen. But those temporary things have a tendency to stick around, and at some point I always end up rewriting the stuff with the

[Interest] Text mode/hex mode for opened file

2016-01-13 Thread Igor Mironchik
Hi, Is it possible to switch from text mode to hex mode in the QtCreator's editor and vice versa? I have text file: "test.gen" and it opens in hex mode. How can I switch to text mode? Thank you. ___ Interest mailing list Interest@qt-project.org

Re: [Interest] need advise on QStandardItemModel vs. QAbstractTableModel

2016-01-13 Thread Andreas Pakulat
Hi, On Wed, Jan 13, 2016 at 11:07 PM, Frank Rueter | OHUfx wrote: > Thanks Bo, > > when you say "it's bad in so many ways", are you referring to performance? > > I just realised that my last conversation with Jason had dropped the CC to > the list, so here it is again : > > so

Re: [Interest] need advise on QStandardItemModel vs. QAbstractTableModel

2016-01-13 Thread Frank Rueter | OHUfx
Thanks Andreas, that all makes sense. Will give the more manual approach some more attention. Cheers, frank On 14/01/16 12:00 pm, Andreas Pakulat wrote: Hi, On Wed, Jan 13, 2016 at 11:07 PM, Frank Rueter | OHUfx > wrote: Thanks Bo, when you

Re: [Interest] need advise on QStandardItemModel vs. QAbstractTableModel

2016-01-13 Thread Frank Rueter | OHUfx
Thanks Bo, I made some progress with QStandardItemModel, an d will try to pull even with the QAbstractTable model approach, hopefully that will help getting a feeling for it all. >>If you have performance issues with a QAbstractTableModel over a QStandardItemModel, you're doing something

Re: [Interest] need advise on QStandardItemModel vs. QAbstractTableModel

2016-01-13 Thread Frank Rueter | OHUfx
Thanks Bo, when you say "it's bad in so many ways", are you referring to performance? I just realised that my last conversation with Jason had dropped the CC to the list, so here it is again : so a few lines into the new code and I believe I'm starting to realise that

Re: [Interest] need advise on QStandardItemModel vs. QAbstractTableModel

2016-01-13 Thread Bo Thorsen
Den 13-01-2016 kl. 23:07 skrev Frank Rueter | OHUfx: Thanks Bo, when you say "it's bad in so many ways", are you referring to performance? I just realised that my last conversation with Jason had dropped the CC to the list, so here it is again : so a few lines into the new code and I

Re: [Interest] How do i monitor DBus functions (not signals)

2016-01-13 Thread Thiago Macieira
On Wednesday 13 January 2016 21:19:33 Mark Gaiser wrote: > Hi, > > I'm trying to monitor "org.freedesktop.Notifications" for the notifications > (see [1] for reference) that broadcasted from there. Every notification > ends up in a "Notify" method on that dbus interface. Hi Mark. "Monitoring" in

Re: [Interest] need advise on QStandardItemModel vs. QAbstractTableModel

2016-01-13 Thread Bo Thorsen
Den 13-01-2016 kl. 23:07 skrev Frank Rueter | OHUfx: when you say "it's bad in so many ways", are you referring to performance? Performance and ease of data manipulation are the two biggest points. But it's really simpler than this. To use an old design phrase - that class just smells bad.

Re: [Interest] need advise on QStandardItemModel vs. QAbstractTableModel

2016-01-13 Thread Stephen Kelly
Bo Thorsen wrote: > To me QStandardItemModel is a quick hack I sometimes use when I just > want to show a bit on the screen. But those temporary things have a > tendency to stick around, and at some point I always end up rewriting > the stuff with the real thing. Me too. I only ever use QSIM in

Re: [Interest] Qt and remote files?

2016-01-13 Thread Thiago Macieira
On Wednesday 13 January 2016 13:49:32 Matthew Woehlke wrote: > On 2016-01-13 11:06, Thiago Macieira wrote: > > On Wednesday 13 January 2016 10:16:36 Matthew Woehlke wrote: > >> I see that in Qt 5, QFileDialog has gained methods to work with URL's > >> instead of (just) local paths. How does this

Re: [Interest] Qt and remote files?

2016-01-13 Thread Thiago Macieira
On Wednesday 13 January 2016 10:16:36 Matthew Woehlke wrote: > I see that in Qt 5, QFileDialog has gained methods to work with URL's > instead of (just) local paths. How does this work? (Does it integrate > with e.g. KIO where supported?) The Qt file dialog doesn't. The URL-based APIs are there

[Interest] is this a bug on QMediaPlayer on Android ?

2016-01-13 Thread Gian Maxera
Hello, my app crash when trying to play a sound with QMediaPlayer on Android. This is the error: No implementation found for void org.qtproject.qt5.android.multimedia.QtAndroidMediaPlayer.onStateChangedNative(int, long) I’m using Qt 5.5.1 Ciao, Gianluca.

[Interest] Qt and remote files?

2016-01-13 Thread Matthew Woehlke
I see that in Qt 5, QFileDialog has gained methods to work with URL's instead of (just) local paths. How does this work? (Does it integrate with e.g. KIO where supported?) And how do I go about opening or saving such a remote file via Qt? (Are they supported directly by QFile / QSaveFile, or do I

[Interest] git initr-epository error

2016-01-13 Thread Jason H
Aliasing ../../../qtrepotools/git-hooks/gerrit_commit_msg_hook as qt3d/.git/hooks/commit-msg ... Cannot create forwarding script qt3d/.git/hooks/commit-msg: Not a directory What should I do? ___ Interest mailing list Interest@qt-project.org