Power System Platform  2026w10a-beta
Loading...
Searching...
No Matches
ExportCSVForm.h
1#ifndef EXPORTCSVFORM_H
2#define EXPORTCSVFORM_H
3#include "DataReportBase.h"
4
5class ExportCSVForm : public ExportCSVFormBase
6{
7public:
8 ExportCSVForm(wxWindow* parent, const std::vector<wxGrid*>& gridList);
9 virtual ~ExportCSVForm();
10protected:
11 virtual void OnCancelButtonClick(wxCommandEvent& event);
12 virtual void OnExportButtonClick(wxCommandEvent& event);
13 virtual bool ExportGridToCSV(wxGrid* grid, const wxString& filePath);
14
15 std::vector<wxGrid*> m_gridList;
16 std::vector<wxCheckBox*> m_checkBoxList;
17};
18#endif // EXPORTCSVFORM_H