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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
|
/* -*- 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 _SVX_DOCRECOVERY_HXX
#define _SVX_DOCRECOVERY_HXX
#include <vcl/tabpage.hxx>
#include <vcl/tabdlg.hxx>
#include <vcl/dialog.hxx>
#include <vcl/button.hxx>
#include <vcl/fixed.hxx>
#include <svtools/svmedit2.hxx>
#include <svtools/treelistbox.hxx>
#include <svtools/svlbitm.hxx>
#include <svx/simptabl.hxx>
#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/implbase2.hxx>
#include <com/sun/star/task/StatusIndicatorFactory.hpp>
#include <com/sun/star/frame/XStatusListener.hpp>
#include <com/sun/star/frame/XDispatch.hpp>
#include <com/sun/star/lang/XComponent.hpp>
#define RECOVERY_CMDPART_PROTOCOL rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "vnd.sun.star.autorecovery:"))
#define RECOVERY_CMDPART_DO_EMERGENCY_SAVE rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "/doEmergencySave" ))
#define RECOVERY_CMDPART_DO_RECOVERY rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "/doAutoRecovery" ))
#define RECOVERY_CMDPART_DO_CRASHREPORT rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "/doCrashReport" ))
#define RECOVERY_CMD_DO_PREPARE_EMERGENCY_SAVE rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "vnd.sun.star.autorecovery:/doPrepareEmergencySave"))
#define RECOVERY_CMD_DO_EMERGENCY_SAVE rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "vnd.sun.star.autorecovery:/doEmergencySave" ))
#define RECOVERY_CMD_DO_RECOVERY rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "vnd.sun.star.autorecovery:/doAutoRecovery" ))
#define RECOVERY_CMD_DO_ENTRY_BACKUP rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "vnd.sun.star.autorecovery:/doEntryBackup" ))
#define RECOVERY_CMD_DO_ENTRY_CLEANUP rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "vnd.sun.star.autorecovery:/doEntryCleanUp" ))
#define PROP_STATUSINDICATOR rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "StatusIndicator" ))
#define PROP_DISPATCHASYNCHRON rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "DispatchAsynchron"))
#define PROP_SAVEPATH rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "SavePath" ))
#define PROP_ENTRYID rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "EntryID" ))
#define STATEPROP_ID rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "ID" ))
#define STATEPROP_STATE rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "DocumentState"))
#define STATEPROP_ORGURL rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "OriginalURL" ))
#define STATEPROP_TEMPURL rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "TempURL" ))
#define STATEPROP_FACTORYURL rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "FactoryURL" ))
#define STATEPROP_TEMPLATEURL rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "TemplateURL" ))
#define STATEPROP_TITLE rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Title" ))
#define STATEPROP_MODULE rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "Module" ))
#define RECOVERY_OPERATIONSTATE_START rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "start" ))
#define RECOVERY_OPERATIONSTATE_STOP rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "stop" ))
#define RECOVERY_OPERATIONSTATE_UPDATE rtl::OUString(RTL_CONSTASCII_USTRINGPARAM( "update"))
#define DLG_RET_UNKNOWN -1
#define DLG_RET_OK 1
#define DLG_RET_CANCEL 0
#define DLG_RET_BACK 100
#define DLG_RET_OK_AUTOLUNCH 101
namespace svx{
namespace DocRecovery{
//===============================================
enum EDocStates
{
/* TEMP STATES */
/// default state, if a document was new created or loaded
E_UNKNOWN = 0,
/// modified against the original file
E_MODIFIED = 1,
/// an active document can be postponed to be saved later.
E_POSTPONED = 2,
/// was already handled during one AutoSave/Recovery session.
E_HANDLED = 4,
/** an action was started (saving/loading) ... Can be interesting later if the process may be was interrupted by an exception. */
E_TRY_SAVE = 8,
E_TRY_LOAD_BACKUP = 16,
E_TRY_LOAD_ORIGINAL = 32,
/* FINAL STATES */
/// the Auto/Emergency saved document isnt useable any longer
E_DAMAGED = 64,
/// the Auto/Emergency saved document isnt realy up-to-date (some changes can be missing)
E_INCOMPLETE = 128,
/// the Auto/Emergency saved document was processed successfully
E_SUCCEDED = 512
};
//===============================================
enum ERecoveryState
{
E_SUCCESSFULLY_RECOVERED,
E_ORIGINAL_DOCUMENT_RECOVERED,
E_RECOVERY_FAILED,
E_RECOVERY_IS_IN_PROGRESS,
E_NOT_RECOVERED_YET
};
//===============================================
struct TURLInfo
{
public:
/// unique ID, which is specified by the underlying autorecovery core!
sal_Int32 ID;
/// the full qualified document URL
::rtl::OUString OrgURL;
/// the full qualified URL of the temp. file (if it's exists)
::rtl::OUString TempURL;
/// a may be existing factory URL (e.g. for untitled documents)
::rtl::OUString FactoryURL;
/// may be the document base on a template file !?
::rtl::OUString TemplateURL;
/// the pure file name, without path, disc etcpp.
::rtl::OUString DisplayName;
/// the application module, where this document was loaded
::rtl::OUString Module;
/// state info as e.g. VALID, CORRUPTED, NON EXISTING ...
sal_Int32 DocState;
/// ui representation for DocState!
ERecoveryState RecoveryState;
/// standard icon
Image StandardImage;
public:
TURLInfo()
: ID (-1 )
, DocState (E_UNKNOWN )
, RecoveryState(E_NOT_RECOVERED_YET)
{}
};
//===============================================
typedef ::std::vector< TURLInfo > TURLList;
//===============================================
class IRecoveryUpdateListener
{
public:
// inform listener about changed items, which should be refreshed
virtual void updateItems() = 0;
// inform listener about starting of the asynchronous recovery operation
virtual void start() = 0;
// inform listener about ending of the asynchronous recovery operation
virtual void end() = 0;
// TODO
virtual void stepNext(TURLInfo* pItem) = 0;
protected:
~IRecoveryUpdateListener() {}
};
//===============================================
class RecoveryCore : public ::cppu::WeakImplHelper1< css::frame::XStatusListener >
{
//-------------------------------------------
// types, const
public:
//-------------------------------------------
// member
private:
/// TODO
css::uno::Reference< css::uno::XComponentContext > m_xContext;
/// TODO
css::uno::Reference< css::frame::XDispatch > m_xRealCore;
/// TODO
css::uno::Reference< css::task::XStatusIndicator > m_xProgress;
/// TODO
TURLList m_lURLs;
/// TODO
IRecoveryUpdateListener* m_pListener;
/** @short knows the reason, why we listen on our internal m_xRealCore
member.
@descr Because we listen for different operations
on the core dispatch implementation, we must know,
which URL we have to use for deregistration!
*/
sal_Bool m_bListenForSaving;
//-------------------------------------------
// native interface
public:
//---------------------------------------
/** @short TODO */
RecoveryCore(const css::uno::Reference< css::uno::XComponentContext >& rxContext,
sal_Bool bUsedForSaving);
//---------------------------------------
/** @short TODO */
virtual ~RecoveryCore();
//---------------------------------------
/** @short TODO */
virtual css::uno::Reference< css::uno::XComponentContext > getComponentContext();
//---------------------------------------
/** @short TODO */
virtual TURLList* getURLListAccess();
//---------------------------------------
/** @short TODO */
static sal_Bool isBrokenTempEntry(const TURLInfo& rInfo);
virtual void saveBrokenTempEntries(const ::rtl::OUString& sSaveDir);
virtual void saveAllTempEntries(const ::rtl::OUString& sSaveDir);
virtual void forgetBrokenTempEntries();
virtual void forgetAllRecoveryEntries();
void forgetBrokenRecoveryEntries();
//---------------------------------------
/** @short TODO */
virtual void setProgressHandler(const css::uno::Reference< css::task::XStatusIndicator >& xProgress);
//---------------------------------------
/** @short TODO */
virtual void setUpdateListener(IRecoveryUpdateListener* pListener);
//---------------------------------------
/** @short TODO */
virtual void doEmergencySavePrepare();
virtual void doEmergencySave();
virtual void doRecovery();
//---------------------------------------
/** @short TODO */
static ERecoveryState mapDocState2RecoverState(sal_Int32 eDocState);
//-------------------------------------------
// uno interface
public:
// css.frame.XStatusListener
virtual void SAL_CALL statusChanged(const css::frame::FeatureStateEvent& aEvent)
throw(css::uno::RuntimeException);
// css.lang.XEventListener
virtual void SAL_CALL disposing(const css::lang::EventObject& aEvent)
throw(css::uno::RuntimeException);
//-------------------------------------------
// helper
private:
//---------------------------------------
/** @short starts listening on the internal EmergencySave/AutoRecovery core.
*/
void impl_startListening();
//---------------------------------------
/** @short stop listening on the internal EmergencySave/AutoRecovery core.
*/
void impl_stopListening();
//---------------------------------------
/** @short TODO */
css::util::URL impl_getParsedURL(const ::rtl::OUString& sURL);
};
//===============================================
class PluginProgressWindow : public Window
{
private:
css::uno::Reference< css::lang::XComponent > m_xProgress;
public:
PluginProgressWindow( Window* pParent ,
const css::uno::Reference< css::lang::XComponent >& xProgress);
~PluginProgressWindow();
};
class PluginProgress : public ::cppu::WeakImplHelper2< css::task::XStatusIndicator ,
css::lang::XComponent >
{
//-------------------------------------------
// member
private:
/** @short TODO */
css::uno::Reference< css::task::XStatusIndicatorFactory > m_xProgressFactory;
css::uno::Reference< css::task::XStatusIndicator > m_xProgress;
PluginProgressWindow* m_pPlugProgressWindow;
//-------------------------------------------
// native interface
public:
//---------------------------------------
/** @short TODO */
PluginProgress( Window* pParent,
const css::uno::Reference< css::uno::XComponentContext >& xContext );
//---------------------------------------
/** @short TODO */
virtual ~PluginProgress();
//-------------------------------------------
// uno interface
public:
//---------------------------------------
// XStatusIndicator
virtual void SAL_CALL start(const ::rtl::OUString& sText ,
sal_Int32 nRange)
throw(css::uno::RuntimeException);
virtual void SAL_CALL end()
throw(css::uno::RuntimeException);
virtual void SAL_CALL setText(const ::rtl::OUString& sText)
throw(css::uno::RuntimeException);
virtual void SAL_CALL setValue(sal_Int32 nValue)
throw(css::uno::RuntimeException);
virtual void SAL_CALL reset()
throw(css::uno::RuntimeException);
//---------------------------------------
// XComponent
virtual void SAL_CALL dispose()
throw(css::uno::RuntimeException);
virtual void SAL_CALL addEventListener(const css::uno::Reference< css::lang::XEventListener >& xListener)
throw(css::uno::RuntimeException);
virtual void SAL_CALL removeEventListener( const css::uno::Reference< css::lang::XEventListener >& xListener)
throw(css::uno::RuntimeException);
};
//===============================================
class IExtendedTabPage : public TabPage
{
//-------------------------------------------
// member
protected:
short m_nResult;
//-------------------------------------------
// interface
public:
IExtendedTabPage( Window* pParent, WinBits nStyle = 0 )
: TabPage( pParent, nStyle )
, m_nResult(DLG_RET_UNKNOWN)
{}
IExtendedTabPage( Window* pParent, const ResId& rResId )
: TabPage( pParent, rResId )
, m_nResult(DLG_RET_UNKNOWN)
{}
virtual ~IExtendedTabPage()
{}
virtual short execute() = 0;
virtual void setDefButton() = 0;
};
typedef ::std::vector< IExtendedTabPage* > TTabPageList;
//===============================================
class TabDialog4Recovery : public TabDialog
{
//-------------------------------------------
// member
private:
TTabPageList m_lTabPages;
TTabPageList::iterator m_pActualPage;
//-------------------------------------------
// interface
public:
TabDialog4Recovery(Window* pParent);
virtual ~TabDialog4Recovery();
virtual void addTabPage(IExtendedTabPage* pPage);
virtual short Execute();
};
//===============================================
class SaveDialog : public IExtendedTabPage
{
//-------------------------------------------
// member
private:
FixedText m_aTitleFT;
Window m_aTitleWin;
FixedLine m_aTitleFL;
FixedText m_aDescrFT;
FixedText m_aFileListFT;
ListBox m_aFileListLB;
FixedLine m_aBottomFL;
OKButton m_aOkBtn;
RecoveryCore* m_pCore;
//-------------------------------------------
// interface
public:
//---------------------------------------
/** @short create all child controls of this dialog.
@descr The dialog isnt shown nor it starts any
action by itself!
@param pParent
can point to a parent window.
If its set to 0, the defmodal-dialog-parent
is used automaticly.
@param pCore
provides access to the recovery core service
and the current list of open documents,
which should be shown inside this dialog.
*/
SaveDialog(Window* pParent,
RecoveryCore* pCore );
//---------------------------------------
/** @short free all controls and used memory. */
virtual ~SaveDialog();
//---------------------------------------
/** @short TODO*/
virtual short execute();
//---------------------------------------
/** @short TODO*/
virtual void setDefButton();
DECL_LINK(OKButtonHdl, void*);
};
//===============================================
class SaveProgressDialog : public ModalDialog
, public IRecoveryUpdateListener
{
//-------------------------------------------
// member
private:
FixedText m_aHintFT;
FixedText m_aProgrFT;
String m_aProgrBaseTxt;
Window m_aProgrParent;
// @short TODO
RecoveryCore* m_pCore;
// @short TODO
css::uno::Reference< css::task::XStatusIndicator > m_xProgress;
//-------------------------------------------
// interface
public:
//---------------------------------------
/** @short create all child controls of this dialog.
@descr The dialog isnt shown nor it starts any
action by itself!
@param pParent
can point to a parent window.
If its set to 0, the defmodal-dialog-parent
is used automaticly.
@param pCore
used to start emegrency save.
*/
SaveProgressDialog(Window* pParent,
RecoveryCore* pCore );
//---------------------------------------
/** @short free all controls and used memory. */
virtual ~SaveProgressDialog();
//---------------------------------------
/** @short start the emergency save operation. */
virtual short Execute();
// IRecoveryUpdateListener
virtual void updateItems();
virtual void stepNext(TURLInfo* pItem);
virtual void start();
virtual void end();
};
//===============================================
class RecovDocListEntry : public SvLBoxString
{
public:
//---------------------------------------
/** @short TODO */
RecovDocListEntry( SvTreeListEntry* pEntry,
sal_uInt16 nFlags,
const String& sText );
//---------------------------------------
/** @short TODO */
virtual void Paint(
const Point& rPos, SvTreeListBox& rOutDev, const SvViewDataEntry* pView, const SvTreeListEntry* pEntry);
};
//===============================================
class RecovDocList : public SvxSimpleTable
{
//-------------------------------------------
// member
public:
Image m_aGreenCheckImg;
Image m_aYellowCheckImg;
Image m_aRedCrossImg;
OUString m_aSuccessRecovStr;
OUString m_aOrigDocRecovStr;
OUString m_aRecovFailedStr;
OUString m_aRecovInProgrStr;
OUString m_aNotRecovYetStr;
//-------------------------------------------
// interface
public:
//---------------------------------------
/** @short TODO */
RecovDocList(SvxSimpleTableContainer& rParent, ResMgr& rResMgr);
//---------------------------------------
/** @short TODO */
virtual ~RecovDocList();
//---------------------------------------
/** @short TODO */
virtual void InitEntry(SvTreeListEntry* pEntry,
const OUString& rText,
const Image& rImage1,
const Image& rImage2,
SvLBoxButtonKind eButtonKind);
};
//===============================================
class RecoveryDialog : public IExtendedTabPage
, public IRecoveryUpdateListener
{
//-------------------------------------------
// member
private:
FixedText m_aTitleFT;
Window m_aTitleWin;
FixedLine m_aTitleFL;
FixedText m_aDescrFT;
FixedText m_aProgressFT;
Window m_aProgrParent;
FixedText m_aFileListFT;
SvxSimpleTableContainer m_aFileListLBContainer;
RecovDocList m_aFileListLB;
FixedLine m_aBottomFL;
PushButton m_aNextBtn;
CancelButton m_aCancelBtn;
String m_aNextStr;
String m_aTitleRecoveryInProgress;
String m_aTitleRecoveryReport;
String m_aRecoveryOnlyFinish;
String m_aRecoveryOnlyFinishDescr;
PushButton* m_pDefButton;
RecoveryCore* m_pCore;
css::uno::Reference< css::task::XStatusIndicator > m_xProgress;
enum EInternalRecoveryState
{
E_RECOVERY_PREPARED, // dialog started ... recovery prepared
E_RECOVERY_IN_PROGRESS, // recovery core still in progress
E_RECOVERY_CORE_DONE, // recovery core finished it's task
E_RECOVERY_DONE, // user clicked "next" button
E_RECOVERY_CANCELED, // user clicked "cancel" button
E_RECOVERY_CANCELED_BEFORE, // user clicked "cancel" button before recovery was started
E_RECOVERY_CANCELED_AFTERWARDS, // user clicked "cancel" button after reovery was finished
E_RECOVERY_HANDLED // the recovery wizard page was shown already ... and will be shown now again ...
};
sal_Int32 m_eRecoveryState;
sal_Bool m_bWaitForUser;
sal_Bool m_bWaitForCore;
sal_Bool m_bUserDecideNext;
sal_Bool m_bWasRecoveryStarted;
sal_Bool m_bRecoveryOnly;
//-------------------------------------------
// member
public:
//---------------------------------------
/** @short TODO */
RecoveryDialog(Window* pParent,
RecoveryCore* pCore );
//---------------------------------------
/** @short TODO */
virtual ~RecoveryDialog();
//---------------------------------------
// IRecoveryUpdateListener
virtual void updateItems();
virtual void stepNext(TURLInfo* pItem);
virtual void start();
virtual void end();
//---------------------------------------
/** @short TODO */
virtual short execute();
//---------------------------------------
/** @short TODO*/
virtual void setDefButton();
//-------------------------------------------
// helper
private:
//---------------------------------------
/** @short TODO */
DECL_LINK(NextButtonHdl, void*);
DECL_LINK(CancelButtonHdl, void*);
//---------------------------------------
/** @short TODO */
String impl_getStatusString( const TURLInfo& rInfo ) const;
};
//===============================================
class BrokenRecoveryDialog : public ModalDialog
{
//-------------------------------------------
// member
private:
FixedText m_aDescrFT;
FixedText m_aFileListFT;
ListBox m_aFileListLB;
FixedText m_aSaveDirFT;
Edit m_aSaveDirED;
PushButton m_aSaveDirBtn;
FixedLine m_aBottomFL;
OKButton m_aOkBtn;
CancelButton m_aCancelBtn;
::rtl::OUString m_sSavePath;
RecoveryCore* m_pCore;
sal_Bool m_bBeforeRecovery;
sal_Bool m_bExecutionNeeded;
//-------------------------------------------
// interface
public:
//---------------------------------------
/** @short TODO */
BrokenRecoveryDialog(Window* pParent ,
RecoveryCore* pCore ,
sal_Bool bBeforeRecovery);
//---------------------------------------
/** @short TODO */
virtual ~BrokenRecoveryDialog();
//---------------------------------------
/** @short TODO */
virtual sal_Bool isExecutionNeeded();
//---------------------------------------
/** @short TODO */
virtual ::rtl::OUString getSaveDirURL();
//-------------------------------------------
// helper
private:
//---------------------------------------
/** @short TODO */
void impl_refresh();
//---------------------------------------
/** @short TODO */
DECL_LINK(SaveButtonHdl, void*);
//---------------------------------------
/** @short TODO */
DECL_LINK(OkButtonHdl, void*);
//---------------------------------------
/** @short TODO */
DECL_LINK(CancelButtonHdl, void*);
//---------------------------------------
/** @short TODO */
void impl_askForSavePath();
};
class ErrorRepWelcomeDialog : public IExtendedTabPage
{
private:
Window maTitleWin;
FixedText maTitleFT;
FixedLine maTitleFL;
FixedText maDescrFT;
FixedLine maBottomFL;
PushButton maPrevBtn;
OKButton maNextBtn;
CancelButton maCancelBtn;
DECL_LINK( PrevBtnHdl, void* );
DECL_LINK( NextBtnHdl, void* );
DECL_LINK( CancelBtnHdl, void* );
public:
ErrorRepWelcomeDialog( Window* _pParent, sal_Bool _bAllowBack = sal_True );
virtual ~ErrorRepWelcomeDialog();
/** @short TODO*/
virtual short execute();
//---------------------------------------
/** @short TODO*/
virtual void setDefButton();
};
struct ErrorRepParams
{
ErrorRepParams()
#ifdef WNT
: miHTTPConnectionType( 0 )
#else
: miHTTPConnectionType( 1 )
#endif
, mbAllowContact( false )
{}
String maHTTPProxyServer;
String maHTTPProxyPort;
int miHTTPConnectionType;
bool mbAllowContact;
String maReturnAddress;
String maSubject;
String maBody;
};
class ErrorDescriptionEdit : public MultiLineEdit
{
private:
DECL_LINK( ModifyHdl, void* );
public:
ErrorDescriptionEdit( Window* pParent, const ResId& rResId );
virtual ~ErrorDescriptionEdit();
};
class ErrorRepSendDialog : public IExtendedTabPage
{
private:
Window maTitleWin;
FixedText maTitleFT;
FixedLine maTitleFL;
FixedText maDescrFT;
FixedText maDocTypeFT;
Edit maDocTypeED;
FixedText maUsingFT;
ErrorDescriptionEdit maUsingML;
PushButton maShowRepBtn;
PushButton maOptBtn;
CheckBox maContactCB;
FixedText maEMailAddrFT;
Edit maEMailAddrED;
FixedLine maBottomFL;
PushButton maPrevBtn;
OKButton maNextBtn;
CancelButton maCancelBtn;
ErrorRepParams maParams;
DECL_LINK( ShowRepBtnHdl, void* );
DECL_LINK( OptBtnHdl, void* );
DECL_LINK( ContactCBHdl, void* );
DECL_LINK( PrevBtnHdl, void* );
DECL_LINK( SendBtnHdl, void* );
DECL_LINK( CancelBtnHdl, void* );
void initControls();
public:
ErrorRepSendDialog( Window* _pParent );
virtual ~ErrorRepSendDialog();
String GetDocType( void ) const;
String GetUsing( void ) const;
bool IsContactAllowed( void ) const;
String GetEMailAddress( void ) const;
bool ReadParams();
bool SaveParams();
bool SendReport();
/** @short TODO*/
virtual short execute();
//---------------------------------------
/** @short TODO*/
virtual void setDefButton();
};
class ErrorRepOptionsDialog : public ModalDialog
{
private:
FixedLine maProxyFL;
RadioButton maSystemBtn;
RadioButton maDirectBtn;
RadioButton maManualBtn;
FixedText maProxyServerFT;
Edit maProxyServerEd;
FixedText maProxyPortFT;
Edit maProxyPortEd;
FixedText maDescriptionFT;
FixedLine maButtonsFL;
OKButton maOKBtn;
CancelButton maCancelBtn;
ErrorRepParams& mrParams;
DECL_LINK( CancelBtnHdl, void* );
DECL_LINK( OKBtnHdl, void * );
DECL_LINK( ManualBtnHdl, void * );
public:
ErrorRepOptionsDialog( Window* _pParent, ErrorRepParams& rParams );
virtual ~ErrorRepOptionsDialog();
};
class ErrorRepEdit : public ExtMultiLineEdit
{
public:
ErrorRepEdit( Window* pParent, const ResId& rResId );
virtual ~ErrorRepEdit();
};
class ErrorRepPreviewDialog : public ModalDialog
{
private:
ErrorRepEdit maContentML;
OKButton maOKBtn;
long mnMinHeight;
public:
ErrorRepPreviewDialog( Window* _pParent );
virtual ~ErrorRepPreviewDialog();
virtual void Resize();
};
} // namespace DocRecovery
} // namespace svx
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|