volcamwidgets  2019 march
volcamwidgets biblioteca
volcamkeyshortcuts.h
Ir a la documentación de este archivo.
1 
9 #ifndef VOLCAMKEYSHORTCUTS_H
10 #define VOLCAMKEYSHORTCUTS_H
11 
12 #include <QWidget>
13 #include <QtWidgets>
14 #include <QTableWidgetItem>
15 
16 namespace Ui {
17 class VolcamKeyShortcuts;
18 }
19 
20 class VolcamKeyShortcuts : public QWidget
21 {
22  Q_OBJECT
23 
24  QStringList shortcuts;
25 
26  QTableWidget *keyshortcuts_table;
27  QToolButton *default_btn;
28 
29  bool getParams_editable() const;
30  void setParams_editable(bool value);
31 
32 public:
33  explicit VolcamKeyShortcuts(QWidget *parent = 0);
35 
36 private:
37  Ui::VolcamKeyShortcuts *ui;
38 
39  bool params_editable;
40  QStringList getKeyShortCuts();
41 
42 public slots:
43  void refreshTable();
44 
45 signals:
46  void logText(QString);
47 };
48 
49 #endif // VOLCAMKEYSHORTCUTS_H
~VolcamKeyShortcuts()
Definition: volcamkeyshortcuts.cpp:34
void logText(QString)
Definition: measuresmap.h:20
Definition: volcamkeyshortcuts.h:20
void refreshTable()
Definition: volcamkeyshortcuts.cpp:84
VolcamKeyShortcuts(QWidget *parent=0)
Definition: volcamkeyshortcuts.cpp:4