Tagged Questions

5
votes
4answers
2k views

How to get this Qt state machine to work?

I have two widgets that can be checked, and a numeric entry field that should contain a value greater than zero. Whenever both widgets have been checked, and the numeric entry field contains a value ...
2
votes
6answers
793 views

How to design a state machine in face of non-blocking I/O?

I'm using Qt framework which has by default non-blocking I/O to develop an application navigating through several web pages (online stores) and carrying out different actions on these pages. I'm ...
1
vote
1answer
179 views

How can I detect ignored/rejected posted QEvent to QStateMachine

I need to see if a custom posted event to the state machine was accepted or not. My approach is to subclass QStateMachine. See http://doc.qt.nokia.com/latest/statemachine-api.html section Events, ...
1
vote
1answer
396 views

QStatemachine and parallel states

Dear All, I'm going crazy with QStateMachine wth ParallelState. I've a main state (sequential) which contain a first state, a second state which contains a group of parallel states, and another state ...
1
vote
1answer
180 views

Can I Add States, Trasitions, Proprerties if I a QStateMachine is already started?

I have some problem with states don't setting properties. Probably the problem is because I add the properties after the machine is started and I'm adding to the current state. But I need to add ...
0
votes
1answer
57 views

C++ Qt: Check the current State of QStateMachine

I'm trying to implement a state-machine in Qt (C++). How can I check the current state of the QStateMachine? I couldn't find a method in the documentation. thx