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