[Interest] QtCreator with mercurial : hg pull/push not working

2013-09-18 Thread Etienne Sandré-Chardonnal
Dear all, I have the following problem with QtCreator and mercurial, under windows I'm trying to push/pull from a USB key. It works perfectly under a shell. In QtCreator, most commands like commit, log, diff, etc.. work well. On one machine, push works, but not pull. On another one, both doesn't w

[Interest] Qt for digital tabletop applications

2013-09-18 Thread Andrea Franceschini
Hello there. I've been developing digital tabletop applications for a while now. I started back in 2008 with Qt 4.something and I clearly remember it had no support (or very limited) for multi-touch, gestures, and stuff. Besides, back then I also needed to support fiduciary markers, so I just wen

[Interest] qmake exclude modules

2013-09-18 Thread Phil Hannent
Hi, I am trying to remove some Qt modules that I don't need at the moment, however qmake isn't outputting a Makefile with the expected syntax. In my .pro file I have: QT += core gui webkit greaterThan(QT_MAJOR_VERSION, 4) { message("Using QT5") QT += widgets QT += webkitwidgets Q

[Interest] Widget event called after it has been deleted

2013-09-18 Thread Etienne Sandré-Chardonnal
Dear all, In my app, I have two main widgets : - One displaying a tree (TreeWidget) and allowing selecting nodes. - One for editing the selected node (EditWidget), embedded in a QScrollArea Selecting a node sets a new EditWidget using QScrollArea::setWidget. This deletes the previous widget wit

Re: [Interest] qmake exclude modules

2013-09-18 Thread Mandeep Sandhu
Will webkit work w/o network? I think it depends on the network module. Same might be true for other modules, but I'm not sure. HTH, -mandeep On Wed, Sep 18, 2013 at 3:19 PM, Phil Hannent wrote: > Hi, > > I am trying to remove some Qt modules that I don't need at the moment, > however qmake i

Re: [Interest] Qt for digital tabletop applications

2013-09-18 Thread Rutledge Shawn
On 18 Sep 2013, at 11:41 AM, Andrea Franceschini wrote: > > What I don't know is: would a combo of graphics(view|scene) work for > my needs? Basically I need to replicate what I've been doing so far > with big-loop-based applications (Processing's draw() anyone? Cinder > follows a similar concept

Re: [Interest] Qt for digital tabletop applications

2013-09-18 Thread Andrea Franceschini
2013/9/18 Rutledge Shawn : > Qt Quick is intended as the replacement for QGraphicsView, so QGV is not > getting much development/bug-fixing attention, and the gesture framework has > some issues. What kind of issues are we talking about, exactly? I don't need incredibly fancy interactions, I'd

[Interest] no keyboard input on old CentOS

2013-09-18 Thread konrad
Hi, I've got a strange problem here: my Qt program does not accept any keyboard input at all, no matter how hard I pound on those keys. It works fine with non-Qt and Qt 4.8. I get the following output at program start: QXcbConnection: Failed to get the primary output of the screen Error:No co

Re: [Interest] Qt for digital tabletop applications

2013-09-18 Thread Rutledge Shawn
On 18 Sep 2013, at 1:21 PM, Andrea Franceschini wrote: > 2013/9/18 Rutledge Shawn : > >> Qt Quick is intended as the replacement for QGraphicsView, so QGV is not >> getting much development/bug-fixing attention, and the gesture framework has >> some issues. > > What kind of issues are we talk

Re: [Interest] Qt for digital tabletop applications

2013-09-18 Thread Casimiro, Daniel C CIV NUWC NWPT
Hi, > Also, would qtuiotouch be usable with a QML app? I developed qtuiotouch for use with QML apps. The plugin works better with QML/Quick apps than traditional QWidget applications. ~Dan smime.p7s Description: S/MIME cryptographic signature ___

Re: [Interest] qmake exclude modules

2013-09-18 Thread Phil Hannent
On 18 September 2013 11:28, Mandeep Sandhu wrote: > Will webkit work w/o network? > > I think it depends on the network module. Same might be true for other > modules, but I'm not sure. > > HTH, > -mandeep > > > On Wed, Sep 18, 2013 at 3:19 PM, Phil Hannent wrote: >> >> Hi, >> >> I am trying to r

[Interest] help with compiling qt-assistantclient-library

2013-09-18 Thread bvl
Greetings, I have a computer with these:- --cpu amd64 --os 64-bit cblfs linux-3.10.10, gcc-4.8.1, qt-4.8.5 I attempted to compile and install qtiplot-0.9.8.9.tar.bz2 ( http://soft.proindependent.com/download.html ) the conmpilation fails asking for ~/include/QtAssistant ( prsesumedly

Re: [Interest] Qt for digital tabletop applications

2013-09-18 Thread Andrea Franceschini
2013/9/18 Rutledge Shawn : > Well, I used PinchArea to zoom each item, but if you want to zoom the whole > screen I guess you only need one. Yes, I guess I only need that. My only question is: would the pinch gesture also handle dragging? I'd be very happy if I could zoom-drag the whole thing at

Re: [Interest] qmake exclude modules

2013-09-18 Thread Thiago Macieira
On quarta-feira, 18 de setembro de 2013 13:46:28, Phil Hannent wrote: > Ok, so I went digging into qt_lib_webkit.pri file and found: > > QT.webkit.depends = core gui network This one declares what your -I should be because you really can't write QtWebKit code without those includes. The classes

Re: [Interest] on plugins and qtuiotouch

2013-09-18 Thread Andrea Franceschini
2013/9/17 Andrea Franceschini : > I'm not sure about the spec. I've had this happening using Martin > Kaltenbrunner's Java TUIO Simulator, although it doesn't seem to > happen with TUIOPad for iOS. This shouldn't be a problem though, it's > just that I took a day off and now I don't have access to

Re: [Interest] QWindowsBackingStore::flush: GetDC failed()

2013-09-18 Thread Jason Kretzer
Just adding Additional information: These messages are not coming from any code that I have written in the sense that I am actually directly calling the flush on the QWindowsBackingstore. It must be coming from a component(s) that I am using which are all standard Qt objects. I use QWebView, QMo

[Interest] Open QML child window in a plugin for a native (MFC) window applications

2013-09-18 Thread Roland Winklmeier
Hi all, I'm currently developing for an open source project and we decided to use Qt libraries. For the GUI we gave QML a try and I personally like it very much. Now the question: My application should be able to run standalone (not a problem) but also as a plugin/addon for a native windows appli

Re: [Interest] Widget event called after it has been deleted

2013-09-18 Thread Alex Malyushytskyy
>> 1) I know could use a QueuedConnection for the previously described action, but I don't like that kind of GUI design where a QueuedConnection is required to avoid an app crash... I do not see why you need to use QueuedConnection. I hope you do not want to say you have that 2 widgets you have ar

Re: [Interest] Widget event called after it has been deleted

2013-09-18 Thread Etienne Sandré-Chardonnal
Nothing to do with threads. A QueuedConnection can be useful in a single thread, because it defers the execution of the slot to the event loop, instead of calling the slot directly from the signal code. Let me explain the problem differently: - widget A emits a signal - widget B has a slot which

Re: [Interest] Widget event called after it has been deleted

2013-09-18 Thread Alex Malyushytskyy
Does treeWidget use EditWidget anyhow after emitting signal explicitly in you code? I do not think returning to the caller after deleting unusded in the caller object could cause problem. Problem may occur only caller use outdated information about already deleted object is used after signal is

Re: [Interest] Widget event called after it has been deleted

2013-09-18 Thread Thiago Macieira
On quarta-feira, 18 de setembro de 2013 23:54:17, Etienne Sandré-Chardonnal wrote: > Let me explain the problem differently: > - widget A emits a signal > - widget B has a slot which effectively deletes A (because > QScrollArea::setWidget deletes its current widget) - I connected A's signal > to