[SOLVED]Need help with combining GUI
-
ahh I see
when you say
double freq = StatusWindow::AngularVelocities.gimbalNS1Vel;
you try to access AngularVelocities as it was a static struct.
But its not - so you need an instance of StatusWindow for it to work.like
StatusWindow *MyInst = new StatusWindow (); double freq =MyInst->AngularVelocities.gimbalNS1Vel; delete MyInst ;
So if StatusWindow was the mainwindow in the other project, then you
might not have an instance in the "this" project and you would need to create one.Have you considered to move the data to its own file so its easier to use both places ?
-
one note:
I suspect you need to call
void computeAngularVelocities(SolTrack::Position sunPos, SolTrack::Position oldPos, AngularVelocities* angVels);for angVels to have anything but zero.
-
I am trying to add new features to a GUI. The files for new features such as camera output, video output etc exists on a different location.
What would be the best way to do agile Qt development.
With best regards,
Karan
-
@KaranBehar
Well agile is not different with Qt.
Just make sure project is under code revision control and go ahead :)