Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #ifdef SD_DLLIMPLEMENTATION
22 : #undef SD_DLLIMPLEMENTATION
23 : #endif
24 :
25 : #include "BreakDlg.hxx"
26 : #include <sfx2/progress.hxx>
27 :
28 : #include <svx/svdedtv.hxx>
29 : #include <svx/svdetc.hxx>
30 : #include <sfx2/app.hxx>
31 : #include <vcl/msgbox.hxx>
32 :
33 : #include "sdattr.hxx"
34 : #include "brkdlg.hrc"
35 : #include "sdresid.hxx"
36 : #include "View.hxx"
37 : #include "drawview.hxx"
38 : #include "strings.hrc"
39 : #include "DrawDocShell.hxx"
40 :
41 : namespace sd {
42 :
43 : /*************************************************************************
44 : |*
45 : |* Dialog zum aufbrechen von Metafiles
46 : |*
47 : \************************************************************************/
48 :
49 0 : BreakDlg::BreakDlg(
50 : ::Window* pWindow,
51 : DrawView* _pDrView,
52 : DrawDocShell* pShell,
53 : sal_uLong nSumActionCount,
54 : sal_uLong nObjCount )
55 : : SfxModalDialog ( pWindow, SdResId( DLG_BREAK ) ),
56 : aFtObjInfo ( this, SdResId( FT_OBJ_INFO ) ),
57 : aFtActInfo ( this, SdResId( FT_ACT_INFO ) ),
58 : aFtInsInfo ( this, SdResId( FT_INS_INFO ) ),
59 : aFiObjInfo ( this, SdResId( FI_OBJ_INFO ) ),
60 : aFiActInfo ( this, SdResId( FI_ACT_INFO ) ),
61 : aFiInsInfo ( this, SdResId( FI_INS_INFO ) ),
62 : aBtnCancel ( this, SdResId( BTN_CANCEL ) ),
63 : aLink ( LINK( this, BreakDlg, UpDate)),
64 0 : mpProgress ( NULL )
65 : {
66 0 : aBtnCancel.SetClickHdl( LINK( this, BreakDlg, CancelButtonHdl));
67 :
68 0 : mpProgress = new SfxProgress( pShell, String(SdResId(STR_BREAK_METAFILE)), nSumActionCount*3 );
69 :
70 0 : pProgrInfo = new SvdProgressInfo( &aLink );
71 : // jede Action wird in DoImport() 3mal bearbeitet
72 0 : pProgrInfo->Init( nSumActionCount*3, nObjCount );
73 :
74 0 : pDrView = _pDrView;
75 0 : bCancel = sal_False;
76 :
77 0 : FreeResource();
78 0 : }
79 :
80 0 : BreakDlg::~BreakDlg()
81 : {
82 0 : if( mpProgress )
83 0 : delete mpProgress;
84 :
85 0 : if( pProgrInfo )
86 0 : delete pProgrInfo;
87 0 : }
88 :
89 : // Control-Handler fuer den Abbruch Button
90 0 : IMPL_LINK_NOARG(BreakDlg, CancelButtonHdl)
91 : {
92 0 : bCancel = sal_True;
93 0 : aBtnCancel.Disable();
94 0 : return( 0L );
95 : }
96 :
97 : // Die UpDate Methode muss regelmaessig von der Arbeitsfunktion
98 : // ausgeuehrt werden.
99 : // Beim ersten aufruf wird die gesamtanzahl der actions uebergeben.
100 : // Jeder weitere sollte die bearbeiteten actions seit dem letzten aufruf von
101 : // UpDate erhalten.
102 :
103 0 : IMPL_LINK( BreakDlg, UpDate, void*, nInit )
104 : {
105 0 : String aEmptyStr;
106 :
107 0 : if(pProgrInfo == NULL)
108 0 : return 1L;
109 :
110 : // Statuszeile updaten oder Fehlermeldung?
111 0 : if(nInit == (void*)1L)
112 : {
113 0 : ErrorBox aErrBox( this, WB_OK, String( SdResId( STR_BREAK_FAIL ) ) );
114 0 : aErrBox.Execute();
115 : }
116 : else
117 : {
118 0 : if(mpProgress)
119 0 : mpProgress->SetState( pProgrInfo->GetSumCurAction() );
120 : }
121 :
122 : // Welches Oject wird gerade angezeigt?
123 0 : String info = UniString::CreateFromInt32( pProgrInfo->GetCurObj() );
124 0 : info.Append( sal_Unicode('/') );
125 0 : info.Append( UniString::CreateFromInt32( pProgrInfo->GetObjCount() ) );
126 0 : aFiObjInfo.SetText(info);
127 :
128 : // Wieviele Actions sind schon aufgebrochen?
129 0 : if(pProgrInfo->GetActionCount() == 0)
130 : {
131 0 : aFiActInfo.SetText( aEmptyStr );
132 : }
133 : else
134 : {
135 0 : info = UniString::CreateFromInt32( pProgrInfo->GetCurAction() );
136 0 : info.Append( sal_Unicode('/') );
137 0 : info.Append( UniString::CreateFromInt32( pProgrInfo->GetActionCount() ) );
138 0 : aFiActInfo.SetText(info);
139 : }
140 :
141 : // Und erst eingefuegt????
142 0 : if(pProgrInfo->GetInsertCount() == 0)
143 : {
144 0 : aFiInsInfo.SetText( aEmptyStr );
145 : }
146 : else
147 : {
148 0 : info = UniString::CreateFromInt32( pProgrInfo->GetCurInsert() );
149 0 : info.Append( sal_Unicode('/') );
150 0 : info.Append( UniString::CreateFromInt32( pProgrInfo->GetInsertCount() ) );
151 0 : aFiInsInfo.SetText(info);
152 : }
153 :
154 0 : Application::Reschedule();
155 0 : return( bCancel?0L:1L );
156 : }
157 :
158 : // Oeffnet den Modalen Dialog und startet einen Timer der die Arbeitsfunktion
159 : // nach oeffnen des Dialogs ausfuehrt
160 0 : short BreakDlg::Execute()
161 : {
162 0 : aTimer.SetTimeout( 10 );
163 0 : aTimer.SetTimeoutHdl( LINK( this, BreakDlg, InitialUpdate ) );
164 0 : aTimer.Start();
165 :
166 0 : return SfxModalDialog::Execute();
167 : }
168 :
169 : // Linkmethode welche die Arbeitsfunktion startet
170 0 : IMPL_LINK_NOARG(BreakDlg, InitialUpdate)
171 : {
172 0 : pDrView->DoImportMarkedMtf(pProgrInfo);
173 0 : EndDialog(sal_True);
174 0 : return 0L;
175 : }
176 :
177 0 : } // end of namespace sd
178 :
179 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|