The qstatemachine tag has no wiki summary.
0
votes
0answers
36 views
Qt - DnDcontainer in QStateMachine, Drag and Drop no longer works?
I have a Qt cross platform application, that has a DnDcontainer in Screen3 below. Drag and Drop into the DnDcontainer used to work fine, until I updated the project to use QStateMachine and ...
0
votes
1answer
75 views
QStateMachine error state
I have state machine with three states s1, s2, s3 and s4. From states s1, s2 and s3 machine can enter error state.
QStateMachine machine;
QState *s1 = new QState();
QState *s2 = new QState();
QState ...
1
vote
1answer
79 views
Unable to start state and transition between states: receiving various errors
I'm having some trouble with the Qt State Machine. I'm never able to execute the states: I get various types of errors and I can't figure out what is the problem. Please see below for more information ...
1
vote
1answer
296 views
Qt QStateMachine Sync Problems: Initial State not set on Started Signal
So I am trying to understand a problem with Qt's QStateMachine and I'm hoping someone can help explain why this is happening. I'm very interested in the fundamental understanding of QStateMachine ...
0
votes
1answer
465 views
Transitioning between menu screens with QStateMachine
I am considering transitioning between menu screens in a game by using QStateMachine. However, I'm unsure how to kick off some code (e.g. show() a QWidget) upon a transition between states occurring. ...
3
votes
2answers
979 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
1
vote
1answer
355 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
717 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 ...
6
votes
5answers
4k 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 ...
1
vote
1answer
266 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 ...
2
votes
6answers
1k 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 ...