Re: [Interest] How to get QMainWindow derived window to show

2021-04-30 Thread Jeremy Katz
On 30/Apr/21 15:20, Nicholas Yue wrote: > Hi, > >   I am learning and comparing the different UI I can create via Designer > >   I can get the Widget to load and show up > > https://github.com/nyue/QtQuestions/blob/main/Qt5/language_change/form/Form.cpp >

Re: [Interest] How to populate ChartView CandlestickSeries from JS?

2021-02-21 Thread Jeremy Katz
On 19/Feb/21 07:30, Federico Ferri wrote: > Has anybody a solution to this? > > Tried two different approaches: > > https://stackoverflow.com/questions/66279947/qml-qtcharts-candlestickseries-repeater > > htt

Re: [Interest] Sharing QItemSelectionModel with multiple views/proxy models

2020-09-25 Thread Jeremy Katz
On 24/Sep/20 13:12, Murphy, Sean wrote: > What's the best way to share selections between views when you're > dealing with different levels of models and proxy models between the > separate views? > > I've got the following setup: - myData: a data only class that holds > the underlying values to

Re: [Interest] Qt3d Support?

2015-10-21 Thread Jeremy
Many thanks Paul. I'm using 5.5. I'll update to the 5.6 source and check on the state of things. On Tue, Oct 20, 2015, 5:56 AM Paul Lemire wrote: > > > Subject: Re: [Interest] Qt3d Support? > > > Date: Tuesday 20 October 2015, 02:49:09 > > > From: Jeremy &

Re: [Interest] Qt3d Support?

2015-10-19 Thread Jeremy
ctober/019259.html> [Interest] Qt3d Custom Camera Control <http://lists.qt-project.org/pipermail/interest/2015-October/019253.html> On Mon, Oct 19, 2015 at 9:38 PM Thiago Macieira wrote: > On Tuesday 20 October 2015 01:09:00 Jeremy wrote: > > Is there a better place to get Qt3d su

[Interest] Qt3d Support?

2015-10-19 Thread Jeremy
Is there a better place to get Qt3d support than this mailing list? Between the poor Qt3d documentation and difficulty of getting questions addressed, I feel like I'm in the wrong place. ___ Interest mailing list Interest@qt-project.org http://lists.qt-pr

[Interest] Qt3d Toggle mesh/entity visibility

2015-10-18 Thread Jeremy
If you set the enabled property to false at runtime for a mesh component for example, should it stop rendering? If not what is the mechanism for toggling a model and entities visibility? Is it up to the subclasses of QAbstractMesh to handle the enable flag change and alter their mesh pointer? Or sh

[Interest] Qt3d QML Transform Problem

2015-10-17 Thread Jeremy
I'm trying to simply move around an entity in a Qt3d scene via C++. Here's my entity definition, and in code I am trying to move it around by simply changing the properties I can see that the values are indeed changing every 5 seconds as I expect them to in my UI that I expose the scene hierarchy,

[Interest] Qt3d Custom Camera Control

2015-10-17 Thread Jeremy
Can anyone give me a pointer in the right direction for customizing camera control? I basically just want to make a simple game-like W,A,S,D camera control customization. ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailma

Re: [Interest] QT3d Dynamic Mesh

2015-10-15 Thread Jeremy
g. I must be missing something with constructing my mesh, because if I use cylinder meshes in its place they show up. I'm not providing an index array, but from what I've seen in the Qt code and a few examples, that isn't a requirement. Any ideas what I might be missing? On Thu, Oct 15, 201

Re: [Interest] QT3d Dynamic Mesh

2015-10-15 Thread Jeremy
t describe the data layout in the buffers. The QAttributes > are rendered by adding them to a QGeometryRenderer component. > > You can either update the above objects on the main thread and call > update() or as before you can also use a functor to have the backend > generate the

[Interest] QT3d Dynamic Mesh

2015-10-11 Thread Jeremy
mesh data whenever I want and the entities that reference it will update automatically? Thanks Jeremy ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

[Interest] QT3d Dynamic Mesh

2015-10-10 Thread Jeremy
mesh data whenever I want and the entities that reference it will update automatically? Thanks Jeremy ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] [KDE/Mac] Qt4/KDE4 issue with persistent window size across restarts on OS X 10.9

2015-02-15 Thread Jeremy Whiting
On Fri, Feb 13, 2015 at 10:21 AM, René J.V. wrote: > On Friday February 13 2015 09:42:21 Jeremy Whiting wrote: > > Thanks Jeremy, > > KMainWindow's restoreWindowSize and saveWindowSize > ... > > which are usually called from ctor and dtor from what I remember

Re: [Interest] [KDE/Mac] Qt4/KDE4 issue with persistent window size across restarts on OS X 10.9

2015-02-15 Thread Jeremy Whiting
Rene, As you describe this problem, the first thing that comes to mind is KMainWindow's restoreWindowSize and saveWindowSize http://api.kde.org/4.x-api/kdelibs-apidocs/kdeui/html/classKMainWindow.html#a4a6636a6282a3f38f76fd8a7f4fe5fb3 which are usually called from ctor and dtor from what I remembe

[Interest] Help building qt5 from beta/git

2012-10-24 Thread Jeremy Swigart
Hey guys. I'm having a lot of trouble compiling Qt5. Whether I try the packaged qt-windows-opensource-5.0.0-beta1-x86-offline.exe source, or compiling from git, I can never get a complete compile to finish, and they don't necessarily fail at the same spot between the packaged beta and git. For

[Interest] reloading qml components

2012-05-31 Thread Jeremy
Say you have a qml component in a file mycomponent.qml or a network resource, etc Is it possible to trigger a reload of the component from the file/source/network/etc so that you can see the changed result live? Preferably by re-initializing the same object so that any references to it can be pres

[Interest] qml 'subclasses'

2012-05-10 Thread Jeremy
I'm relatively new to QML so I'm not sure how to accomplish this. Basically I want to define a custom object in QML, with custom properties and functionality, and then I want to be able to 'subclass' that component with different date for those standardized properties and whatever else needs tailo

[Interest] QML property binding chains?

2012-05-04 Thread Jeremy
Is there a way to configure a sort of cascading property evaluation/binding ? For example, think about an RPG character, where one of his stats might be made up of an accumulation of an arbitrary number of values from other properties, even in other objects. For example, the characters 'defense' s

Re: [Interest] Interest Digest, Vol 8, Issue 10

2012-05-04 Thread Jeremy
; to >interest-requ...@qt-project.org > > You can reach the person managing the list at >interest-ow...@qt-project.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of Interest digest..." > > >

[Interest] QML & QDeclarativeView

2012-05-03 Thread Jeremy
Suppose you have a custom built UI, with forms and c++ and such. Within certain panes/tabs/etc of this custom view, you want to display qml driven content. Is it possible for the same QML data to drive the output in multiple QDeclarativeView ? For example: I'm writing a combination tile map editor

[Interest] Drawing grid with Qt::DashLine in QGraphicsView

2012-05-03 Thread Jeremy
painter->setPen( Qt::DashLine ); I'm wanting to use a dashed line pen when drawing a grid in a subclass of QGraphicsView. My grid code draws the grid fine, however, it appears that the dashed line is probably drawn in sort of a line space, as opposed to sort of a global space(for lack of a better

[Interest] Bug with QCompleter/QFileSystemModel ?

2012-04-30 Thread Jeremy
I have a QFileSystemModel that I'm tinkering with. I'm trying to hook up a QCompleter to the file system model to support auto completion of a file path. There appears to be a problem though that the QCompleter is trying to auto complete the path from the root drives, and not with the path reflecte

Re: [Interest] Contributor agreement rundown

2012-04-18 Thread Jeremy KATZ
al support". It allows the commercial licensing (ie how the software may be used and distributed). Support (ie how a developer may seek and receive assistance) is an entirely separate matter which is not affected by the contributor agreement or any of the allowed licenses. Jeremy PS:

Re: [Interest] Best Qt Webserver?

2012-02-21 Thread Jeremy Lainé
a reverse proxy. Comments are welcome. Cheers, Jeremy [1] http://opensource.bolloretelecom.eu/doxygen/qdjango/group__Http.html [2] http://opensource.bolloretelecom.eu/projects/qdjango/ ___ Interest mailing list Interest@qt-project.org http://lists.qt-proj

Re: [Interest] "When its ready"

2011-12-20 Thread Jeremy KATZ
things a developer thought was important. Jeremy ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest