DAWorkbench 0.0.1
DAWorkbench API
载入中...
搜索中...
未找到
DADialogDataframeColumnCastToDatetime.h
1#ifndef DADIALOGDATAFRAMECOLUMNCASTTODATETIME_H
2#define DADIALOGDATAFRAMECOLUMNCASTTODATETIME_H
3
4#include "DADialogPythonArgs.h"
5#include "DAGuiAPI.h"
6namespace Ui
7{
8class DADialogDataframeColumnCastToDatetime;
9}
10namespace DA
11{
16{
17 Q_OBJECT
18
19public:
20 explicit DADialogDataframeColumnCastToDatetime(QWidget* parent = nullptr);
22 pybind11::dict getArgs() const override;
23 QString getArgErrorsValue() const;
24 QString getArgUnitValue() const;
25 QString getArgOriginValue() const;
26
27protected:
28 void changeEvent(QEvent* e);
29
30private slots:
31 void on_toolButtonHowEditFormat_clicked();
32
33 void on_radioButtonUnix_clicked(bool checked);
34
35 void on_radioButtonJulian_clicked(bool checked);
36
37private:
38 Ui::DADialogDataframeColumnCastToDatetime* ui;
39};
40} // end of namespace DA
41#endif // DADIALOGDATAFRAMECOLUMNCASTTODATETIME_H
to_datetime参数设置
Definition DADialogDataframeColumnCastToDatetime.h:16
用于维护python args的基类dialog
Definition DADialogPythonArgs.h:12
序列化类都是带异常的,使用中需要处理异常
Definition AppMainWindow.cpp:44