mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-01-21 06:53:11 +08:00
48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
/*****************************************************************************
|
|
* Model: calc.qm
|
|
* File: ./calc.h
|
|
*
|
|
* This code has been generated by QM tool (see state-machine.com/qm).
|
|
* DO NOT EDIT THIS FILE MANUALLY. All your changes will be lost.
|
|
*
|
|
* This program is open source software: you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as published
|
|
* by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
* for more details.
|
|
*****************************************************************************/
|
|
/*${.::calc.h} .............................................................*/
|
|
#ifndef calc_h
|
|
#define calc_h
|
|
|
|
enum CalcSignals {
|
|
C_SIG = Q_USER_SIG,
|
|
CE_SIG,
|
|
DIGIT_0_SIG,
|
|
DIGIT_1_9_SIG,
|
|
POINT_SIG,
|
|
OPER_SIG,
|
|
EQUALS_SIG,
|
|
OFF_SIG
|
|
};
|
|
|
|
/*${Events::CalcEvt} .......................................................*/
|
|
typedef struct {
|
|
/* protected: */
|
|
QEvt super;
|
|
|
|
/* public: */
|
|
uint8_t key_code;
|
|
} CalcEvt;
|
|
|
|
/*${SMs::Calc_ctor} ........................................................*/
|
|
void Calc_ctor(void);
|
|
|
|
|
|
extern QMsm * const the_calc; /* "opaque" pointer to calculator MSM */
|
|
|
|
#endif /* calc_h */
|