File: framesenderwindow.h

package info (click to toggle)
savvycan 220-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 12,456 kB
  • sloc: cpp: 61,803; sh: 293; javascript: 91; python: 44; makefile: 8
file content (84 lines) | stat: -rw-r--r-- 2,175 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
#ifndef FRAMESENDERWINDOW_H
#define FRAMESENDERWINDOW_H

#include <QDialog>
#include <QTimer>
#include <QElapsedTimer>
#include <QTime>
#include <QMutex>
#include "can_structs.h"
#include "can_trigger_structs.h"
#include "dbc/dbchandler.h"
#include "triggerdialog.h"

namespace Ui {
class FrameSenderWindow;
}

enum ST_COLS
{
    SENDTAB_COL_EN = 0,
    SENDTAB_COL_BUS = 1,
    SENDTAB_COL_ID = 2,
    SENDTAB_COL_MSGNAME = 3,
    SENDTAB_COL_LEN = 4,
    SENDTAB_COL_EXT = 5,
    SENDTAB_COL_REM = 6,
    SENDTAB_COL_DATA = 7,
    SENDTAB_COL_TRIGGER = 8,
    SENDTAB_COL_MODS = 9,
    SENDTAB_COL_COUNT = 10,
};

class FrameSenderWindow : public QDialog
{
    Q_OBJECT

public:
    explicit FrameSenderWindow(const QVector<CANFrame> *frames, QWidget *parent = 0);
    ~FrameSenderWindow();

private slots:
    void onCellChanged(int, int);
    void onCellDoubleTap(int, int);
    void handleTick();
    void enableAll();
    void disableAll();
    void clearGrid();
    void saveGrid();
    void loadGrid();
    void updatedFrames(int);

private:
    Ui::FrameSenderWindow *ui;
    QList<FrameSendData> sendingData;
    QHash<int, CANFrame> frameCache; //hash with frame ID as the key and the most recent frame as the value
    const QVector<CANFrame> *modelFrames;
    QTimer *intervalTimer;
    QElapsedTimer elapsedTimer;
    bool inhibitChanged = false;
    QMutex mutex;
    DBCHandler *dbcHandler;
    TriggerDialog *td;
    FrameSendData *sendData;

    void createBlankRow();
    void doModifiers(int);
    int fetchOperand(int, ModifierOperand);
    CANFrame* lookupFrame(int, int);
    void processModifierText(int);
    void processTriggerText(int);
    void parseOperandString(QStringList tokens, ModifierOperand&);
    ModifierOperationType parseOperation(QString);
    void saveSenderFile(QString filename);
    void loadSenderFile(QString filename);
    void updateGridRow(int idx);
    void processCellChange(int line, int col);
    void buildFrameCache();
    void processIncomingFrame(CANFrame *frame);
    bool eventFilter(QObject *obj, QEvent *event);
    void setupGrid();
    void finishedTriggerDialog(int result);
};

#endif // FRAMESENDERWINDOW_H