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 : #include <vcl/msgbox.hxx>
21 : #include <sfx2/app.hxx>
22 :
23 : #include "reffact.hxx"
24 : #include "document.hxx"
25 : #include "scresid.hxx"
26 : #include "globstr.hrc"
27 : #include "rangenam.hxx"
28 : #include "simpref.hxx"
29 : #include "scmod.hxx"
30 :
31 : #define ABS_SREF SCA_VALID \
32 : | SCA_COL_ABSOLUTE | SCA_ROW_ABSOLUTE | SCA_TAB_ABSOLUTE
33 : #define ABS_DREF ABS_SREF \
34 : | SCA_COL2_ABSOLUTE | SCA_ROW2_ABSOLUTE | SCA_TAB2_ABSOLUTE
35 : #define ABS_DREF3D ABS_DREF | SCA_TAB_3D
36 :
37 0 : ScSimpleRefDlg::ScSimpleRefDlg(SfxBindings* pB, SfxChildWindow* pCW, Window* pParent,
38 : ScViewData* ptrViewData)
39 : : ScAnyRefDlg(pB, pCW, pParent, "SimpleRefDialog", "modules/scalc/ui/simplerefdialog.ui")
40 : ,
41 :
42 0 : pDoc ( ptrViewData->GetDocument() ),
43 : bAutoReOpen ( true ),
44 : bCloseOnButtonUp( false ),
45 : bSingleCell ( false ),
46 0 : bMultiSelection ( false )
47 : {
48 0 : get(m_pFtAssign, "area");
49 0 : get(m_pEdAssign, "assign");
50 0 : m_pEdAssign->SetReferences(this, m_pFtAssign);
51 0 : get(m_pRbAssign, "assignref");
52 0 : m_pRbAssign->SetReferences(this, m_pEdAssign);
53 :
54 0 : get(m_pBtnOk, "ok");
55 0 : get(m_pBtnCancel, "cancel");
56 :
57 : // damit die Strings in der Resource bei den FixedTexten bleiben koennen:
58 0 : Init();
59 0 : SetDispatcherLock( true ); // Modal-Modus einschalten
60 0 : }
61 :
62 :
63 0 : ScSimpleRefDlg::~ScSimpleRefDlg()
64 : {
65 0 : SetDispatcherLock( false ); // Modal-Modus einschalten
66 0 : }
67 :
68 :
69 0 : void ScSimpleRefDlg::FillInfo(SfxChildWinInfo& rWinInfo) const
70 : {
71 0 : ScAnyRefDlg::FillInfo(rWinInfo);
72 0 : rWinInfo.bVisible=bAutoReOpen;
73 0 : }
74 :
75 :
76 0 : void ScSimpleRefDlg::SetRefString(const OUString &rStr)
77 : {
78 0 : m_pEdAssign->SetText(rStr);
79 0 : }
80 :
81 :
82 0 : void ScSimpleRefDlg::Init()
83 : {
84 0 : m_pBtnOk->SetClickHdl ( LINK( this, ScSimpleRefDlg, OkBtnHdl ) );
85 0 : m_pBtnCancel->SetClickHdl ( LINK( this, ScSimpleRefDlg, CancelBtnHdl ) );
86 0 : bCloseFlag=false;
87 0 : }
88 :
89 :
90 : // Uebergabe eines mit der Maus selektierten Tabellenbereiches, der dann als
91 : // neue Selektion im Referenz-Fenster angezeigt wird.
92 0 : void ScSimpleRefDlg::SetReference( const ScRange& rRef, ScDocument* pDocP )
93 : {
94 0 : if ( m_pEdAssign->IsEnabled() )
95 : {
96 0 : if ( rRef.aStart != rRef.aEnd )
97 0 : RefInputStart(m_pEdAssign);
98 :
99 0 : theCurArea = rRef;
100 0 : OUString aRefStr;
101 0 : if ( bSingleCell )
102 : {
103 0 : ScAddress aAdr = rRef.aStart;
104 0 : aRefStr = aAdr.Format(SCA_ABS_3D, pDocP, pDocP->GetAddressConvention());
105 : }
106 : else
107 0 : aRefStr = theCurArea.Format(ABS_DREF3D, pDocP, pDocP->GetAddressConvention());
108 :
109 0 : if ( bMultiSelection )
110 : {
111 0 : OUString aVal = m_pEdAssign->GetText();
112 0 : Selection aSel = m_pEdAssign->GetSelection();
113 0 : aSel.Justify();
114 0 : aVal = aVal.replaceAt( aSel.Min(), aSel.Len(), aRefStr );
115 0 : Selection aNewSel( aSel.Min(), aSel.Min()+aRefStr.getLength() );
116 0 : m_pEdAssign->SetRefString( aVal );
117 0 : m_pEdAssign->SetSelection( aNewSel );
118 : }
119 : else
120 0 : m_pEdAssign->SetRefString( aRefStr );
121 :
122 0 : aChangeHdl.Call( &aRefStr );
123 : }
124 0 : }
125 :
126 0 : bool ScSimpleRefDlg::Close()
127 : {
128 0 : CancelBtnHdl(m_pBtnCancel);
129 0 : return true;
130 : }
131 :
132 :
133 0 : void ScSimpleRefDlg::SetActive()
134 : {
135 0 : m_pEdAssign->GrabFocus();
136 :
137 : // kein NameModifyHdl, weil sonst Bereiche nicht geaendert werden koennen
138 : // (nach dem Aufziehen der Referenz wuerde der alte Inhalt wieder angezeigt)
139 : // (der ausgewaehlte DB-Name hat sich auch nicht veraendert)
140 :
141 0 : RefInputDone();
142 0 : }
143 :
144 0 : bool ScSimpleRefDlg::IsRefInputMode() const
145 : {
146 0 : return true;
147 : }
148 :
149 0 : void ScSimpleRefDlg::SetCloseHdl( const Link& rLink )
150 : {
151 0 : aCloseHdl=rLink;
152 0 : }
153 :
154 0 : void ScSimpleRefDlg::SetUnoLinks( const Link& rDone, const Link& rAbort,
155 : const Link& rChange )
156 : {
157 0 : aDoneHdl = rDone;
158 0 : aAbortedHdl = rAbort;
159 0 : aChangeHdl = rChange;
160 0 : }
161 :
162 0 : void ScSimpleRefDlg::SetFlags( bool bSetCloseOnButtonUp, bool bSetSingleCell, bool bSetMultiSelection )
163 : {
164 0 : bCloseOnButtonUp = bSetCloseOnButtonUp;
165 0 : bSingleCell = bSetSingleCell;
166 0 : bMultiSelection = bSetMultiSelection;
167 0 : }
168 :
169 0 : void ScSimpleRefDlg::StartRefInput()
170 : {
171 0 : if ( bMultiSelection )
172 : {
173 : // initially select the whole string, so it gets replaced by default
174 0 : m_pEdAssign->SetSelection( Selection( 0, m_pEdAssign->GetText().getLength() ) );
175 : }
176 :
177 0 : m_pRbAssign->DoRef();
178 0 : bCloseFlag = true;
179 0 : }
180 :
181 0 : void ScSimpleRefDlg::RefInputDone( bool bForced)
182 : {
183 0 : ScAnyRefDlg::RefInputDone(bForced);
184 0 : if ( (bForced || bCloseOnButtonUp) && bCloseFlag )
185 0 : OkBtnHdl(m_pBtnOk);
186 0 : }
187 :
188 : // Handler:
189 :
190 0 : IMPL_LINK_NOARG(ScSimpleRefDlg, OkBtnHdl)
191 : {
192 0 : bAutoReOpen=false;
193 0 : OUString aResult=m_pEdAssign->GetText();
194 0 : aCloseHdl.Call(&aResult);
195 0 : Link aUnoLink = aDoneHdl; // stack var because this is deleted in DoClose
196 0 : DoClose( ScSimpleRefDlgWrapper::GetChildWindowId() );
197 0 : aUnoLink.Call( &aResult );
198 0 : return 0;
199 : }
200 :
201 :
202 0 : IMPL_LINK_NOARG(ScSimpleRefDlg, CancelBtnHdl)
203 : {
204 0 : bAutoReOpen=false;
205 0 : OUString aResult=m_pEdAssign->GetText();
206 0 : aCloseHdl.Call(NULL);
207 0 : Link aUnoLink = aAbortedHdl; // stack var because this is deleted in DoClose
208 0 : DoClose( ScSimpleRefDlgWrapper::GetChildWindowId() );
209 0 : aUnoLink.Call( &aResult );
210 0 : return 0;
211 0 : }
212 :
213 :
214 :
215 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|