30 lines
691 B
C
30 lines
691 B
C
|
|
#ifndef GENERATEREPORT_CREATENEWREPORT_H
|
|||
|
|
#define GENERATEREPORT_CREATENEWREPORT_H
|
|||
|
|
|
|||
|
|
#include <com/sun/star/uno/Reference.hxx>
|
|||
|
|
#include <com/sun/star/uno/XComponentContext.hpp>
|
|||
|
|
#include <com/sun/star/frame/Desktop.hpp>
|
|||
|
|
using namespace com::sun::star::uno;
|
|||
|
|
using namespace com::sun::star::frame;
|
|||
|
|
|
|||
|
|
class T_CreateNewReportWidget;
|
|||
|
|
namespace GenerateReport
|
|||
|
|
{
|
|||
|
|
class CreateNewReport
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
CreateNewReport();
|
|||
|
|
//~CreateNewReport() = default;
|
|||
|
|
|
|||
|
|
void actionSlot_CreateNewReport();
|
|||
|
|
void CreateNewDocument();
|
|||
|
|
void accept();
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
T_CreateNewReportWidget* _aboutPage{ nullptr };
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endif // GENERATEREPORT_CREATENEWREPORT_H
|