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 <osl/mutex.hxx>
21 : #include <toolkit/helper/vclunohelper.hxx>
22 : #include <comphelper/processfactory.hxx>
23 : #include <com/sun/star/awt/PosSize.hpp>
24 : #include <com/sun/star/frame/XDispatch.hpp>
25 : #include <com/sun/star/util/XURLTransformer.hpp>
26 :
27 : #include "bibliography.hrc"
28 : #include <vcl/lstbox.hxx>
29 : #include <vcl/edit.hxx>
30 : #include <tools/debug.hxx>
31 : #include "bibbeam.hxx"
32 : #include "bibview.hxx"
33 : #include "toolbar.hrc"
34 : #include "bibresid.hxx"
35 : #include "datman.hxx"
36 : #include "bibtools.hxx"
37 :
38 : using namespace ::com::sun::star;
39 : using namespace ::com::sun::star::beans;
40 : using namespace ::com::sun::star::uno;
41 :
42 :
43 : #define ID_TOOLBAR 1
44 : #define ID_GRIDWIN 2
45 :
46 : namespace bib
47 : {
48 :
49 : using namespace ::com::sun::star::uno;
50 :
51 0 : void HandleTaskPaneList( vcl::Window* pWindow, bool bAddToList )
52 : {
53 0 : vcl::Window* pParent = pWindow->GetParent();
54 :
55 : DBG_ASSERT( pParent, "-GetTaskPaneList(): everybody here should have a parent!" );
56 :
57 0 : SystemWindow* pSysWin = pParent->GetSystemWindow();
58 0 : if( pSysWin )
59 : {
60 0 : TaskPaneList* pTaskPaneList = pSysWin->GetTaskPaneList();
61 0 : if( pTaskPaneList )
62 : {
63 0 : if( bAddToList )
64 0 : pTaskPaneList->AddWindow( pWindow );
65 : else
66 0 : pTaskPaneList->RemoveWindow( pWindow );
67 : }
68 : }
69 0 : }
70 :
71 :
72 : class BibGridwin
73 : :public vcl::Window //DockingWindow
74 : {
75 : private:
76 : Reference< awt::XWindow > m_xGridWin;
77 : Reference< awt::XControlModel > m_xGridModel;
78 : Reference< awt::XControl > m_xControl;
79 : Reference< awt::XControlContainer > m_xControlContainer;
80 : // #100312#
81 : Reference< frame::XDispatchProviderInterception> m_xDispatchProviderInterception;
82 :
83 : protected:
84 :
85 : virtual void Resize() SAL_OVERRIDE;
86 :
87 : public:
88 :
89 : BibGridwin(vcl::Window* pParent, WinBits nStyle = WB_3DLOOK );
90 : virtual ~BibGridwin();
91 : virtual void dispose() SAL_OVERRIDE;
92 :
93 : void createGridWin(const Reference< awt::XControlModel > & xDbForm);
94 : void disposeGridWin();
95 :
96 0 : const Reference< awt::XControlContainer >& getControlContainer() const { return m_xControlContainer; }
97 : // #100312#
98 0 : const Reference< frame::XDispatchProviderInterception>& getDispatchProviderInterception() const { return m_xDispatchProviderInterception; }
99 :
100 : virtual void GetFocus() SAL_OVERRIDE;
101 : };
102 :
103 0 : BibGridwin::BibGridwin( vcl::Window* _pParent, WinBits _nStyle ) : Window( _pParent, _nStyle )
104 : {
105 0 : m_xControlContainer = VCLUnoHelper::CreateControlContainer(this);
106 :
107 0 : AddToTaskPaneList( this );
108 0 : }
109 :
110 0 : BibGridwin::~BibGridwin()
111 : {
112 0 : disposeOnce();
113 0 : }
114 :
115 0 : void BibGridwin::dispose()
116 : {
117 0 : RemoveFromTaskPaneList( this );
118 :
119 0 : disposeGridWin();
120 0 : vcl::Window::dispose();
121 0 : }
122 :
123 0 : void BibGridwin::Resize()
124 : {
125 0 : if(m_xGridWin.is())
126 : {
127 0 : ::Size aSize = GetOutputSizePixel();
128 0 : m_xGridWin->setPosSize(0, 0, aSize.Width(),aSize.Height(), awt::PosSize::SIZE);
129 : }
130 0 : }
131 :
132 0 : void BibGridwin::createGridWin(const uno::Reference< awt::XControlModel > & xGModel)
133 : {
134 0 : m_xGridModel = xGModel;
135 :
136 0 : if( m_xControlContainer.is())
137 : {
138 0 : uno::Reference< uno::XComponentContext > xContext = comphelper::getProcessComponentContext();
139 :
140 0 : if ( m_xGridModel.is())
141 : {
142 0 : uno::Reference< XPropertySet > xPropSet( m_xGridModel, UNO_QUERY );
143 :
144 0 : if ( xPropSet.is() && m_xGridModel.is() )
145 : {
146 0 : uno::Any aAny = xPropSet->getPropertyValue( "DefaultControl" );
147 0 : OUString aControlName;
148 0 : aAny >>= aControlName;
149 :
150 0 : m_xControl = Reference< awt::XControl > ( xContext->getServiceManager()->createInstanceWithContext(aControlName, xContext), UNO_QUERY_THROW );
151 0 : m_xControl->setModel( m_xGridModel );
152 : }
153 :
154 0 : if ( m_xControl.is() )
155 : {
156 : // Peer as Child to the FrameWindow
157 0 : m_xControlContainer->addControl("GridControl", m_xControl);
158 0 : m_xGridWin=uno::Reference< awt::XWindow > (m_xControl, UNO_QUERY );
159 : // #100312#
160 0 : m_xDispatchProviderInterception=uno::Reference< frame::XDispatchProviderInterception > (m_xControl, UNO_QUERY );
161 0 : m_xGridWin->setVisible( sal_True );
162 0 : m_xControl->setDesignMode( sal_True );
163 : // initially switch on the design mode - switch it off _after_ loading the form
164 :
165 0 : ::Size aSize = GetOutputSizePixel();
166 0 : m_xGridWin->setPosSize(0, 0, aSize.Width(),aSize.Height(), awt::PosSize::POSSIZE);
167 0 : }
168 0 : }
169 : }
170 0 : }
171 :
172 0 : void BibGridwin::disposeGridWin()
173 : {
174 0 : if ( m_xControl.is() )
175 : {
176 0 : Reference< awt::XControl > xDel( m_xControl );
177 0 : m_xControl = NULL;
178 0 : m_xGridWin = NULL;
179 :
180 0 : m_xControlContainer->removeControl( xDel );
181 0 : xDel->dispose();
182 : }
183 0 : }
184 :
185 0 : void BibGridwin::GetFocus()
186 : {
187 0 : if(m_xGridWin.is())
188 0 : m_xGridWin->setFocus();
189 0 : }
190 :
191 0 : BibBeamer::BibBeamer( vcl::Window* _pParent, BibDataManager* _pDM, WinBits _nStyle )
192 : :BibSplitWindow( _pParent, _nStyle | WB_NOSPLITDRAW )
193 : ,pDatMan( _pDM )
194 : ,pToolBar( NULL )
195 0 : ,pGridWin( NULL )
196 : {
197 0 : createToolBar();
198 0 : createGridWin();
199 0 : pDatMan->SetToolbar(pToolBar);
200 0 : pGridWin->Show();
201 0 : connectForm( pDatMan );
202 0 : }
203 :
204 0 : BibBeamer::~BibBeamer()
205 : {
206 0 : disposeOnce();
207 0 : }
208 :
209 0 : void BibBeamer::dispose()
210 : {
211 0 : if ( isFormConnected() )
212 0 : disconnectForm();
213 :
214 0 : if ( m_xToolBarRef.is() )
215 0 : m_xToolBarRef->dispose();
216 :
217 0 : if ( pToolBar )
218 0 : pDatMan->SetToolbar(0);
219 :
220 0 : pToolBar.disposeAndClear();
221 0 : pGridWin.disposeAndClear();
222 0 : BibSplitWindow::dispose();
223 0 : }
224 :
225 0 : void BibBeamer::createToolBar()
226 : {
227 0 : pToolBar= VclPtr<BibToolBar>::Create(this, LINK( this, BibBeamer, RecalcLayout_Impl ));
228 0 : ::Size aSize=pToolBar->GetSizePixel();
229 0 : InsertItem(ID_TOOLBAR, pToolBar, aSize.Height(), 0, 0, SplitWindowItemFlags::Fixed );
230 0 : if ( m_xController.is() )
231 0 : pToolBar->SetXController( m_xController );
232 0 : }
233 :
234 0 : void BibBeamer::createGridWin()
235 : {
236 0 : pGridWin = VclPtr<BibGridwin>::Create(this,0);
237 :
238 0 : InsertItem(ID_GRIDWIN, pGridWin, 40, 1, 0, SplitWindowItemFlags::RelativeSize );
239 :
240 0 : pGridWin->createGridWin( pDatMan->updateGridModel() );
241 0 : }
242 :
243 0 : Reference< awt::XControlContainer > BibBeamer::getControlContainer()
244 : {
245 0 : Reference< awt::XControlContainer > xReturn;
246 0 : if ( pGridWin )
247 0 : xReturn = pGridWin->getControlContainer();
248 0 : return xReturn;
249 : }
250 :
251 : // #100312#
252 0 : Reference< frame::XDispatchProviderInterception > BibBeamer::getDispatchProviderInterception()
253 : {
254 0 : Reference< frame::XDispatchProviderInterception > xReturn;
255 0 : if ( pGridWin )
256 0 : xReturn = pGridWin->getDispatchProviderInterception();
257 0 : return xReturn;
258 : }
259 :
260 0 : void BibBeamer::SetXController(const uno::Reference< frame::XController > & xCtr)
261 : {
262 0 : m_xController = xCtr;
263 :
264 0 : if ( pToolBar )
265 0 : pToolBar->SetXController( m_xController );
266 :
267 0 : }
268 :
269 0 : void BibBeamer::GetFocus()
270 : {
271 0 : if( pGridWin )
272 0 : pGridWin->GrabFocus();
273 0 : }
274 :
275 0 : IMPL_LINK_NOARG( BibBeamer, RecalcLayout_Impl )
276 : {
277 0 : long nHeight = pToolBar->GetSizePixel().Height();
278 0 : SetItemSize( ID_TOOLBAR, nHeight );
279 0 : return 0L;
280 : }
281 :
282 6 : } // namespace bib
283 :
284 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|