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 : #include <osl/mutex.hxx>
22 : #include <cppuhelper/weak.hxx>
23 : #include <toolkit/helper/vclunohelper.hxx>
24 : #include <com/sun/star/awt/XWindow.hpp>
25 : #include <com/sun/star/awt/XWindowPeer.hpp>
26 : #include <com/sun/star/frame/XDispatchProvider.hpp>
27 : #include <com/sun/star/frame/FrameSearchFlag.hpp>
28 : #include <com/sun/star/util/XURLTransformer.hpp>
29 : #include "bibconfig.hxx"
30 :
31 :
32 : #include "datman.hxx"
33 : #include "bibcont.hxx"
34 : #include "bibview.hxx"
35 :
36 :
37 0 : BibShortCutHandler::~BibShortCutHandler()
38 : {
39 0 : }
40 :
41 0 : bool BibShortCutHandler::HandleShortCutKey( const KeyEvent& )
42 : {
43 0 : return false;
44 : }
45 :
46 :
47 0 : BibWindow::BibWindow( vcl::Window* pParent, WinBits nStyle ) : Window( pParent, nStyle ), BibShortCutHandler( this )
48 : {
49 0 : }
50 :
51 0 : BibWindow::~BibWindow()
52 : {
53 0 : }
54 :
55 :
56 0 : BibSplitWindow::BibSplitWindow( vcl::Window* pParent, WinBits nStyle ) : SplitWindow( pParent, nStyle ), BibShortCutHandler( this )
57 : {
58 0 : }
59 :
60 0 : BibTabPage::BibTabPage( vcl::Window* pParent, const OString& rID, const OUString& rUIXMLDescription ) :
61 0 : TabPage( pParent, rID, rUIXMLDescription ), BibShortCutHandler( this )
62 : {
63 0 : }
64 :
65 : using namespace osl;
66 : using namespace ::com::sun::star;
67 : using namespace ::com::sun::star::uno;
68 : using namespace ::com::sun::star::frame;
69 :
70 : //split window size is a percent value
71 : #define WIN_MIN_HEIGHT 10
72 : #define WIN_STEP_SIZE 5
73 :
74 0 : BibWindowContainer::BibWindowContainer( vcl::Window* pParent, BibShortCutHandler* pChildWin, WinBits nStyle ) :
75 : BibWindow( pParent, nStyle ),
76 0 : pChild( pChildWin )
77 : {
78 0 : if(pChild!=NULL)
79 : {
80 0 : vcl::Window* pChildWindow = GetChild();
81 0 : pChildWindow->SetParent(this);
82 0 : pChildWindow->Show();
83 0 : pChildWindow->SetPosPixel(Point(0,0));
84 : }
85 0 : }
86 :
87 0 : BibWindowContainer::~BibWindowContainer()
88 : {
89 0 : disposeOnce();
90 0 : }
91 :
92 0 : void BibWindowContainer::dispose()
93 : {
94 0 : if( pChild )
95 : {
96 0 : VclPtr<vcl::Window> pDel = GetChild();
97 0 : pChild = NULL; // prevents GetFocus for child while deleting!
98 0 : pDel.disposeAndClear();
99 : }
100 0 : vcl::Window::dispose();
101 0 : }
102 :
103 0 : void BibWindowContainer::Resize()
104 : {
105 0 : if( pChild )
106 0 : GetChild()->SetSizePixel( GetOutputSizePixel() );
107 0 : }
108 :
109 0 : void BibWindowContainer::GetFocus()
110 : {
111 0 : if( pChild )
112 0 : GetChild()->GrabFocus();
113 0 : }
114 :
115 0 : bool BibWindowContainer::HandleShortCutKey( const KeyEvent& rKeyEvent )
116 : {
117 0 : return pChild && pChild->HandleShortCutKey( rKeyEvent );
118 : }
119 :
120 :
121 0 : BibBookContainer::BibBookContainer(vcl::Window* pParent, WinBits nStyle):
122 : BibSplitWindow(pParent,nStyle),
123 : pTopWin(NULL),
124 0 : pBottomWin(NULL)
125 : {
126 0 : pBibMod = OpenBibModul();
127 0 : aIdle.SetIdleHdl(LINK( this, BibBookContainer, SplitHdl));
128 0 : aIdle.SetPriority(SchedulerPriority::LOWEST);
129 0 : }
130 :
131 0 : BibBookContainer::~BibBookContainer()
132 : {
133 0 : disposeOnce();
134 0 : }
135 :
136 0 : void BibBookContainer::dispose()
137 : {
138 0 : if( xTopFrameRef.is() )
139 0 : xTopFrameRef->dispose();
140 0 : if( xBottomFrameRef.is() )
141 0 : xBottomFrameRef->dispose();
142 :
143 0 : if( pTopWin )
144 : {
145 0 : VclPtr<vcl::Window> pDel = pTopWin;
146 0 : pTopWin = NULL; // prevents GetFocus for child while deleting!
147 0 : pDel.disposeAndClear();
148 : }
149 :
150 0 : if( pBottomWin )
151 : {
152 0 : VclPtr<vcl::Window> pDel = pBottomWin;
153 0 : pBottomWin = NULL; // prevents GetFocus for child while deleting!
154 0 : pDel.disposeAndClear();
155 : }
156 :
157 0 : CloseBibModul( pBibMod );
158 0 : pTopWin.clear();
159 0 : pBottomWin.clear();
160 0 : BibSplitWindow::dispose();
161 0 : }
162 :
163 0 : void BibBookContainer::Split()
164 : {
165 0 : aIdle.Start();
166 0 : }
167 0 : IMPL_LINK_NOARG_TYPED( BibBookContainer, SplitHdl, Idle*, void)
168 : {
169 0 : long nSize= GetItemSize( TOP_WINDOW);
170 0 : BibConfig* pConfig = BibModul::GetConfig();
171 0 : pConfig->setBeamerSize(nSize);
172 0 : nSize = GetItemSize( BOTTOM_WINDOW);
173 0 : pConfig->setViewSize(nSize);
174 0 : }
175 :
176 0 : void BibBookContainer::createTopFrame( BibShortCutHandler* pWin )
177 : {
178 0 : if ( xTopFrameRef.is() ) xTopFrameRef->dispose();
179 :
180 0 : if(pTopWin)
181 : {
182 0 : RemoveItem(TOP_WINDOW);
183 0 : pTopWin.disposeAndClear();
184 : }
185 0 : pTopWin=VclPtr<BibWindowContainer>::Create(this,pWin);
186 0 : pTopWin->Show();
187 0 : BibConfig* pConfig = BibModul::GetConfig();
188 0 : long nSize = pConfig->getBeamerSize();
189 0 : InsertItem(TOP_WINDOW, pTopWin, nSize, 1, 0, SplitWindowItemFlags::PercentSize );
190 :
191 0 : }
192 :
193 0 : void BibBookContainer::createBottomFrame( BibShortCutHandler* pWin )
194 : {
195 0 : if ( xBottomFrameRef.is() ) xBottomFrameRef->dispose();
196 :
197 0 : if(pBottomWin)
198 : {
199 0 : RemoveItem(BOTTOM_WINDOW);
200 0 : pBottomWin.disposeAndClear();
201 : }
202 :
203 0 : pBottomWin=VclPtr<BibWindowContainer>::Create(this,pWin);
204 :
205 0 : BibConfig* pConfig = BibModul::GetConfig();
206 0 : long nSize = pConfig->getViewSize();
207 0 : InsertItem(BOTTOM_WINDOW, pBottomWin, nSize, 1, 0, SplitWindowItemFlags::PercentSize );
208 :
209 0 : }
210 :
211 0 : void BibBookContainer::GetFocus()
212 : {
213 0 : if( pBottomWin )
214 0 : pBottomWin->GrabFocus();
215 0 : }
216 :
217 0 : bool BibBookContainer::PreNotify( NotifyEvent& rNEvt )
218 : {
219 0 : bool nHandled = false;
220 0 : if( MouseNotifyEvent::KEYINPUT == rNEvt.GetType() )
221 : {
222 0 : const KeyEvent* pKEvt = rNEvt.GetKeyEvent();
223 0 : const vcl::KeyCode aKeyCode = pKEvt->GetKeyCode();
224 0 : sal_uInt16 nKey = aKeyCode.GetCode();
225 0 : const sal_uInt16 nModifier = aKeyCode.GetModifier();
226 :
227 0 : if( KEY_MOD2 == nModifier )
228 : {
229 0 : if( KEY_UP == nKey || KEY_DOWN == nKey )
230 : {
231 0 : if(pTopWin && pBottomWin)
232 : {
233 0 : sal_uInt16 nFirstWinId = KEY_UP == nKey ? TOP_WINDOW : BOTTOM_WINDOW;
234 0 : sal_uInt16 nSecondWinId = KEY_UP == nKey ? BOTTOM_WINDOW : TOP_WINDOW;
235 0 : long nHeight = GetItemSize( nFirstWinId );
236 0 : nHeight -= WIN_STEP_SIZE;
237 0 : if(nHeight < WIN_MIN_HEIGHT)
238 0 : nHeight = WIN_MIN_HEIGHT;
239 0 : SetItemSize( nFirstWinId, nHeight );
240 0 : SetItemSize( nSecondWinId, 100 - nHeight );
241 : }
242 0 : nHandled = true;
243 : }
244 0 : else if( pKEvt->GetCharCode() && HandleShortCutKey( *pKEvt ) )
245 0 : nHandled = true;
246 : }
247 : }
248 :
249 0 : return nHandled;
250 : }
251 :
252 0 : bool BibBookContainer::HandleShortCutKey( const KeyEvent& rKeyEvent )
253 : {
254 0 : bool bRet = false;
255 :
256 0 : if( pTopWin )
257 0 : bRet = pTopWin->HandleShortCutKey( rKeyEvent );
258 :
259 0 : if( !bRet && pBottomWin )
260 0 : bRet = pBottomWin->HandleShortCutKey( rKeyEvent );
261 :
262 0 : return bRet;
263 : }
264 :
265 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|