QAdvanced Item View  0.4
The QAIV (Qt Advanced Item Views) library provides GUI and utility classes extending the capabilities of the Qt item views.
 All Classes Functions Variables Enumerations Enumerator Properties Groups Pages
qtablemodelexportpushbutton.h
1 #ifndef QTABLEMODELEXPORTPUSHBUTTON_H
2 #define QTABLEMODELEXPORTPUSHBUTTON_H
3 
4 #include <QPushButton>
5 
6 #include <qaivlib_global.h>
7 
9 class QAIVLIBSHARED_EXPORT QTableModelExportPushButton : public QPushButton
10 {
11  Q_OBJECT
12 public:
16  QTableModelExportPushButton(QWidget *parent);
21 signals:
22  void exportAllTriggered(const QByteArray & format);
23  void exportSelectionTriggered(const QByteArray & format);
24 private slots:
25  void exportAllTriggered();
26  void exportSelectionTriggered();
27 };
28 
29 #endif // QTABLEMODELEXPORTPUSHBUTTON_H
The QTableModelExportPushButton widget provides a command button for exporting table model data...
Definition: qtablemodelexportpushbutton.h:9