Rev 440 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 440 | Rev 449 | ||
---|---|---|---|
Line 21... | Line 21... | ||
21 | dlg_LCD::dlg_LCD(QWidget *parent) : QDialog(parent) |
21 | dlg_LCD::dlg_LCD(QWidget *parent) : QDialog(parent) |
22 | { |
22 | { |
23 | setupUi(this); |
23 | setupUi(this); |
24 | } |
24 | } |
Line 25... | Line 25... | ||
25 | 25 | ||
26 | void dlg_LCD::show_Data(int *Data) |
26 | void dlg_LCD::show_Data(char *data) |
27 | { |
27 | { |
28 | le_LCD0->setText(ToolBox::dataToQString(Data,2,22)); |
28 | le_LCD0->setText(ToolBox::dataToQString(data,2,22)); |
29 | le_LCD1->setText(ToolBox::dataToQString(Data,22,42)); |
29 | le_LCD1->setText(ToolBox::dataToQString(data,22,42)); |
30 | le_LCD2->setText(ToolBox::dataToQString(Data,42,62)); |
30 | le_LCD2->setText(ToolBox::dataToQString(data,42,62)); |
31 | le_LCD3->setText(ToolBox::dataToQString(Data,62,82)); |
31 | le_LCD3->setText(ToolBox::dataToQString(data,62,82)); |