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/fixed.hxx>
21 : #include <vcl/layout.hxx>
22 : #include <vcl/tabctrl.hxx>
23 : #include <vcl/tabdlg.hxx>
24 : #include <tools/rc.h>
25 :
26 :
27 :
28 : // =======================================================================
29 :
30 0 : void TabDialog::ImplInitTabDialogData()
31 : {
32 0 : mpFixedLine = NULL;
33 0 : mpViewWindow = NULL;
34 0 : meViewAlign = WINDOWALIGN_LEFT;
35 0 : mbPosControls = sal_True;
36 0 : }
37 :
38 : // -----------------------------------------------------------------------
39 :
40 0 : void TabDialog::ImplPosControls()
41 : {
42 0 : if (isLayoutEnabled())
43 0 : return;
44 :
45 0 : Size aCtrlSize( IMPL_MINSIZE_BUTTON_WIDTH, IMPL_MINSIZE_BUTTON_HEIGHT );
46 0 : long nDownCtrl = 0;
47 0 : long nOffY = 0;
48 0 : Window* pTabControl = NULL;
49 :
50 0 : Window* pChild = GetWindow( WINDOW_FIRSTCHILD );
51 0 : while ( pChild )
52 : {
53 0 : if ( pChild->IsVisible() && (pChild != mpViewWindow) )
54 : {
55 0 : if (pChild->GetType() == WINDOW_TABCONTROL || isContainerWindow(*pChild))
56 0 : pTabControl = pChild;
57 0 : else if ( pTabControl )
58 : {
59 0 : Size aOptimalSize( pChild->GetOptimalSize( WINDOWSIZE_PREFERRED ) );
60 0 : long nTxtWidth = aOptimalSize.Width();
61 0 : if ( nTxtWidth > aCtrlSize.Width() )
62 0 : aCtrlSize.Width() = nTxtWidth;
63 0 : long nTxtHeight = aOptimalSize.Height();
64 0 : if ( nTxtHeight > aCtrlSize.Height() )
65 0 : aCtrlSize.Height() = nTxtHeight;
66 0 : nDownCtrl++;
67 : }
68 : else
69 : {
70 0 : long nHeight = pChild->GetSizePixel().Height();
71 0 : if ( nHeight > nOffY )
72 0 : nOffY = nHeight;
73 : }
74 : }
75 :
76 0 : pChild = pChild->GetWindow( WINDOW_NEXT );
77 : }
78 :
79 : // Haben wir ueberhaupt ein TabControl
80 0 : if ( pTabControl )
81 : {
82 : // Offset bei weiteren Controls um einen weiteren Abstand anpassen
83 0 : if ( nOffY )
84 0 : nOffY += IMPL_DIALOG_BAR_OFFSET*2 + 2;
85 :
86 0 : Point aTabOffset( IMPL_DIALOG_OFFSET, IMPL_DIALOG_OFFSET+nOffY );
87 :
88 0 : if (isContainerWindow(*pTabControl))
89 0 : pTabControl->SetSizePixel(pTabControl->GetOptimalSize(WINDOWSIZE_PREFERRED));
90 :
91 0 : Size aTabSize = pTabControl->GetSizePixel();
92 :
93 0 : Size aDlgSize( aTabSize.Width() + IMPL_DIALOG_OFFSET*2,
94 0 : aTabSize.Height() + IMPL_DIALOG_OFFSET*2 + nOffY );
95 0 : long nBtnEx = 0;
96 :
97 : // Preview-Fenster beruecksichtigen und die Groessen/Offsets anpassen
98 0 : if ( mpViewWindow && mpViewWindow->IsVisible() )
99 : {
100 0 : long nViewOffX = 0;
101 0 : long nViewOffY = 0;
102 0 : long nViewWidth = 0;
103 0 : long nViewHeight = 0;
104 0 : sal_uInt16 nViewPosFlags = WINDOW_POSSIZE_POS;
105 0 : Size aViewSize = mpViewWindow->GetSizePixel();
106 0 : if ( meViewAlign == WINDOWALIGN_TOP )
107 : {
108 0 : nViewOffX = aTabOffset.X();
109 0 : nViewOffY = nOffY+IMPL_DIALOG_OFFSET;
110 0 : nViewWidth = aTabSize.Width();
111 0 : nViewPosFlags |= WINDOW_POSSIZE_WIDTH;
112 0 : aTabOffset.Y() += aViewSize.Height()+IMPL_DIALOG_OFFSET;
113 0 : aDlgSize.Height() += aViewSize.Height()+IMPL_DIALOG_OFFSET;
114 : }
115 0 : else if ( meViewAlign == WINDOWALIGN_BOTTOM )
116 : {
117 0 : nViewOffX = aTabOffset.X();
118 0 : nViewOffY = aTabOffset.Y()+aTabSize.Height()+IMPL_DIALOG_OFFSET;
119 0 : nViewWidth = aTabSize.Width();
120 0 : nViewPosFlags |= WINDOW_POSSIZE_WIDTH;
121 0 : aDlgSize.Height() += aViewSize.Height()+IMPL_DIALOG_OFFSET;
122 : }
123 0 : else if ( meViewAlign == WINDOWALIGN_RIGHT )
124 : {
125 0 : nViewOffX = aTabOffset.X()+aTabSize.Width()+IMPL_DIALOG_OFFSET;
126 0 : nViewOffY = aTabOffset.Y();
127 0 : nViewHeight = aTabSize.Height();
128 0 : nViewPosFlags |= WINDOW_POSSIZE_HEIGHT;
129 0 : aDlgSize.Width() += aViewSize.Width()+IMPL_DIALOG_OFFSET;
130 0 : nBtnEx = aViewSize.Width()+IMPL_DIALOG_OFFSET;
131 : }
132 : else // meViewAlign == WINDOWALIGN_LEFT
133 : {
134 0 : nViewOffX = IMPL_DIALOG_OFFSET;
135 0 : nViewOffY = aTabOffset.Y();
136 0 : nViewHeight = aTabSize.Height();
137 0 : nViewPosFlags |= WINDOW_POSSIZE_HEIGHT;
138 0 : aTabOffset.X() += aViewSize.Width()+IMPL_DIALOG_OFFSET;
139 0 : aDlgSize.Width() += aViewSize.Width()+IMPL_DIALOG_OFFSET;
140 0 : nBtnEx = aViewSize.Width()+IMPL_DIALOG_OFFSET;
141 : }
142 :
143 : mpViewWindow->setPosSizePixel( nViewOffX, nViewOffY,
144 : nViewWidth, nViewHeight,
145 0 : nViewPosFlags );
146 : }
147 :
148 : // Positionierung vornehmen
149 0 : pTabControl->SetPosPixel( aTabOffset );
150 :
151 : // Alle anderen Children positionieren
152 0 : sal_Bool bTabCtrl = sal_False;
153 0 : int nLines = 0;
154 : long nX;
155 0 : long nY = aDlgSize.Height();
156 0 : long nTopX = IMPL_DIALOG_OFFSET;
157 :
158 : // Unter Windows 95 werden die Buttons rechtsbuendig angeordnet
159 0 : nX = IMPL_DIALOG_OFFSET;
160 0 : long nCtrlBarWidth = ((aCtrlSize.Width()+IMPL_DIALOG_OFFSET)*nDownCtrl)-IMPL_DIALOG_OFFSET;
161 0 : if ( nCtrlBarWidth <= (aTabSize.Width()+nBtnEx) )
162 0 : nX = (aTabSize.Width()+nBtnEx) - nCtrlBarWidth + IMPL_DIALOG_OFFSET;
163 :
164 0 : Window* pChild2 = GetWindow( WINDOW_FIRSTCHILD );
165 0 : while ( pChild2 )
166 : {
167 0 : if ( pChild2->IsVisible() && (pChild2 != mpViewWindow) )
168 : {
169 0 : if ( pChild2 == pTabControl )
170 0 : bTabCtrl = sal_True;
171 0 : else if ( bTabCtrl )
172 : {
173 0 : if ( !nLines )
174 0 : nLines = 1;
175 :
176 0 : if ( nX+aCtrlSize.Width()-IMPL_DIALOG_OFFSET > (aTabSize.Width()+nBtnEx) )
177 : {
178 0 : nY += aCtrlSize.Height()+IMPL_DIALOG_OFFSET;
179 0 : nX = IMPL_DIALOG_OFFSET;
180 0 : nLines++;
181 : }
182 :
183 0 : pChild2->SetPosSizePixel( Point( nX, nY ), aCtrlSize );
184 0 : nX += aCtrlSize.Width()+IMPL_DIALOG_OFFSET;
185 : }
186 : else
187 : {
188 0 : Size aChildSize = pChild2->GetSizePixel();
189 0 : pChild2->SetPosPixel( Point( nTopX, (nOffY-aChildSize.Height())/2 ) );
190 0 : nTopX += aChildSize.Width()+2;
191 : }
192 : }
193 :
194 0 : pChild2 = pChild2->GetWindow( WINDOW_NEXT );
195 : }
196 :
197 0 : aDlgSize.Height() += nLines * (aCtrlSize.Height()+IMPL_DIALOG_OFFSET);
198 0 : SetOutputSizePixel( aDlgSize );
199 : }
200 :
201 : // Offset merken
202 0 : if ( nOffY )
203 : {
204 0 : Size aDlgSize = GetOutputSizePixel();
205 0 : if ( !mpFixedLine )
206 0 : mpFixedLine = new FixedLine( this );
207 : mpFixedLine->SetPosSizePixel( Point( 0, nOffY ),
208 0 : Size( aDlgSize.Width(), 2 ) );
209 0 : mpFixedLine->Show();
210 : }
211 :
212 0 : mbPosControls = sal_False;
213 : }
214 :
215 : // -----------------------------------------------------------------------
216 :
217 0 : TabDialog::TabDialog( Window* pParent, WinBits nStyle ) :
218 0 : Dialog( WINDOW_TABDIALOG )
219 : {
220 0 : ImplInitTabDialogData();
221 0 : ImplInit( pParent, nStyle );
222 0 : }
223 :
224 : // -----------------------------------------------------------------------
225 :
226 0 : TabDialog::TabDialog( Window* pParent, const ResId& rResId ) :
227 0 : Dialog( WINDOW_TABDIALOG )
228 : {
229 0 : ImplInitTabDialogData();
230 0 : rResId.SetRT( RSC_TABDIALOG );
231 0 : init(pParent, rResId);
232 0 : }
233 :
234 0 : TabDialog::TabDialog( Window* pParent, const rtl::OString& rID, const rtl::OUString& rUIXMLDescription ) :
235 0 : Dialog(pParent, rID, rUIXMLDescription, WINDOW_TABDIALOG)
236 : {
237 0 : ImplInitTabDialogData();
238 0 : }
239 :
240 : // -----------------------------------------------------------------------
241 :
242 0 : TabDialog::~TabDialog()
243 : {
244 0 : delete mpFixedLine;
245 0 : }
246 :
247 : // -----------------------------------------------------------------------
248 :
249 0 : void TabDialog::StateChanged( StateChangedType nType )
250 : {
251 0 : if ( nType == STATE_CHANGE_INITSHOW )
252 : {
253 : // Calculate the Layout only for the initialized state
254 0 : if ( mbPosControls )
255 0 : ImplPosControls();
256 : }
257 0 : Dialog::StateChanged( nType );
258 0 : }
259 :
260 : // -----------------------------------------------------------------------
261 :
262 0 : void TabDialog::AdjustLayout()
263 : {
264 0 : ImplPosControls();
265 0 : queue_resize();
266 108 : }
267 :
268 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|