1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SW_SOURCE_UI_DBUI_MMOUTPUTPAGE_HXX
#define INCLUDED_SW_SOURCE_UI_DBUI_MMOUTPUTPAGE_HXX
#include <svtools/wizardmachine.hxx>
#include <vcl/button.hxx>
#include <vcl/layout.hxx>
#include <svtools/stdctrl.hxx>
#include <vcl/combobox.hxx>
#include <vcl/field.hxx>
#include <vcl/lstbox.hxx>
#include <vcl/prgsbar.hxx>
#include <sfx2/objsh.hxx>
#include <sfx2/basedlgs.hxx>
#include <svtools/simptabl.hxx>
#include <svtools/svtabbx.hxx>
#include <svtools/headbar.hxx>
#include "mailmergehelper.hxx"
class SwMailMergeWizard;
class SfxPrinter;
class SwSendMailDialog;
namespace com{ namespace sun{ namespace star{
namespace mail{
class XMailMessage;
}
}}}
class SwMailMergeOutputPage : public svt::OWizardPage
{
RadioButton* m_pSaveStartDocRB;
RadioButton* m_pSaveMergedDocRB;
RadioButton* m_pPrintRB;
RadioButton* m_pSendMailRB;
VclFrame* m_pSeparator;
PushButton* m_pSaveStartDocPB;
RadioButton* m_pSaveAsOneRB;
RadioButton* m_pSaveIndividualRB;
RadioButton* m_pPrintAllRB; //has to be here for tab control reasons
RadioButton* m_pSendAllRB; //has to be here for tab control reasons
//this group is used in save and print
RadioButton* m_pFromRB;
NumericField* m_pFromNF;
FixedText* m_pToFT;
NumericField* m_pToNF;
PushButton* m_pSaveNowPB;
FixedText* m_pPrinterFT;
ListBox* m_pPrinterLB;
PushButton* m_pPrinterSettingsPB;
PushButton* m_pPrintNowPB;
FixedText* m_pMailToFT;
ListBox* m_pMailToLB;
PushButton* m_pCopyToPB;
FixedText* m_pSubjectFT;
Edit* m_pSubjectED;
FixedText* m_pSendAsFT;
ListBox* m_pSendAsLB;
VclContainer* m_pAttachmentGroup;
Edit* m_pAttachmentED;
PushButton* m_pSendAsPB;
PushButton* m_pSendDocumentsPB;
//some FixedLine labels
OUString m_sSaveStartST;
OUString m_sSaveMergedST;
OUString m_sPrintST;
OUString m_sSendMailST;
//misc strings
OUString m_sDefaultAttachmentST;
OUString m_sNoSubjectST;
OUString m_sConfigureMail;
OUString m_sBody;
bool m_bCancelSaving;
SwMailMergeWizard* m_pWizard;
//some dialog data
Printer* m_pTempPrinter;
OUString m_sCC;
OUString m_sBCC;
DECL_LINK(OutputTypeHdl_Impl, RadioButton*);
DECL_LINK(CopyToHdl_Impl, PushButton*);
DECL_LINK(SaveStartHdl_Impl, PushButton* );
DECL_LINK(SaveOutputHdl_Impl, PushButton* );
DECL_LINK(PrinterChangeHdl_Impl, ListBox* );
DECL_LINK(PrintHdl_Impl, void *);
DECL_LINK(PrinterSetupHdl_Impl, PushButton* );
DECL_LINK(SendTypeHdl_Impl, ListBox*);
DECL_LINK(SendAsHdl_Impl, PushButton*);
DECL_LINK(SendDocumentsHdl_Impl, PushButton*);
DECL_LINK(DocumentSelectionHdl_Impl, RadioButton*);
DECL_LINK(SaveCancelHdl_Impl, void *);
int documentStartPageNumber( int document ) const;
int documentEndPageNumber( int document ) const;
protected:
virtual bool canAdvance() const SAL_OVERRIDE;
virtual void ActivatePage() SAL_OVERRIDE;
public:
SwMailMergeOutputPage( SwMailMergeWizard* _pParent);
virtual ~SwMailMergeOutputPage();
};
struct SwMailDescriptor
{
OUString sEMail;
OUString sAttachmentURL;
OUString sAttachmentName;
OUString sMimeType;
OUString sSubject;
OUString sBodyMimeType;
OUString sBodyContent;
OUString sCC;
OUString sBCC;
};
struct SwSendMailDialog_Impl;
class SwMailMergeConfigItem;
class SwSendMailDialog : public ModelessDialog //SfxModalDialog
{
FixedText *m_pTransferStatus;
FixedText *m_pPaused;
ProgressBar *m_pProgressBar;
FixedText *m_pErrorStatus;
SvSimpleTableContainer *m_pContainer;
HeaderBar *m_pStatusHB;
SvSimpleTable *m_pStatus;
PushButton *m_pStop;
PushButton *m_pClose;
OUString m_sContinue;
OUString m_sStop;
OUString m_sTransferStatus;
OUString m_sErrorStatus;
OUString m_sSendingTo;
OUString m_sCompleted;
OUString m_sFailed;
bool m_bCancel;
bool m_bDesctructionEnabled;
ImageList m_aImageList;
SwSendMailDialog_Impl* m_pImpl;
SwMailMergeConfigItem* m_pConfigItem;
sal_Int32 m_nStatusHeight;
sal_Int32 m_nSendCount;
sal_Int32 m_nErrorCount;
SAL_DLLPRIVATE DECL_LINK( StopHdl_Impl, PushButton* );
SAL_DLLPRIVATE DECL_LINK( CloseHdl_Impl, void* );
SAL_DLLPRIVATE DECL_STATIC_LINK( SwSendMailDialog, StartSendMails, SwSendMailDialog* );
SAL_DLLPRIVATE DECL_STATIC_LINK( SwSendMailDialog, StopSendMails, SwSendMailDialog* );
SAL_DLLPRIVATE DECL_STATIC_LINK( SwSendMailDialog, RemoveThis, Timer* );
SAL_DLLPRIVATE void IterateMails();
SAL_DLLPRIVATE void SendMails();
SAL_DLLPRIVATE void UpdateTransferStatus();
virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE;
public:
SwSendMailDialog( vcl::Window* pParent, SwMailMergeConfigItem& );
virtual ~SwSendMailDialog();
void AddDocument( SwMailDescriptor& rDesc );
void SetDocumentCount( sal_Int32 nAllDocuments );
void EnableDesctruction() {m_bDesctructionEnabled = true;}
void ShowDialog();
void DocumentSent( ::com::sun::star::uno::Reference< ::com::sun::star::mail::XMailMessage>,
bool bResult,
const OUString* pError );
void AllMailsSent();
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|