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 "svtools/table/tablecontrol.hxx"
22 :
23 : #include "tabledatawindow.hxx"
24 : #include "tablecontrol_impl.hxx"
25 : #include "tablegeometry.hxx"
26 :
27 : #include <vcl/help.hxx>
28 : #include <vcl/settings.hxx>
29 :
30 :
31 : namespace svt { namespace table
32 : {
33 :
34 :
35 : using ::com::sun::star::uno::Any;
36 :
37 :
38 : //= TableDataWindow
39 :
40 :
41 0 : TableDataWindow::TableDataWindow( TableControl_Impl& _rTableControl )
42 0 : :Window( &_rTableControl.getAntiImpl() )
43 : ,m_rTableControl( _rTableControl )
44 0 : ,m_nTipWindowHandle( 0 )
45 : {
46 : // by default, use the background as determined by the style settings
47 0 : const Color aWindowColor( GetSettings().GetStyleSettings().GetFieldColor() );
48 0 : SetBackground( Wallpaper( aWindowColor ) );
49 0 : SetFillColor( aWindowColor );
50 0 : }
51 :
52 :
53 0 : TableDataWindow::~TableDataWindow()
54 : {
55 0 : impl_hideTipWindow();
56 0 : }
57 :
58 :
59 0 : void TableDataWindow::Paint( const Rectangle& rUpdateRect )
60 : {
61 0 : m_rTableControl.doPaintContent( rUpdateRect );
62 0 : }
63 :
64 0 : void TableDataWindow::SetBackground( const Wallpaper& rColor )
65 : {
66 0 : Window::SetBackground( rColor );
67 0 : }
68 :
69 0 : void TableDataWindow::SetControlBackground( const Color& rColor )
70 : {
71 0 : Window::SetControlBackground( rColor );
72 0 : }
73 :
74 0 : void TableDataWindow::SetControlBackground()
75 : {
76 0 : Window::SetControlBackground();
77 0 : }
78 :
79 :
80 0 : void TableDataWindow::RequestHelp( const HelpEvent& rHEvt )
81 : {
82 0 : sal_uInt16 const nHelpMode = rHEvt.GetMode();
83 0 : if ( ( IsMouseCaptured() )
84 0 : || ( ( nHelpMode & HELPMODE_QUICK ) == 0 )
85 : )
86 : {
87 0 : Window::RequestHelp( rHEvt );
88 0 : return;
89 : }
90 :
91 0 : OUString sHelpText;
92 0 : sal_uInt16 nHelpStyle = 0;
93 :
94 0 : Point const aMousePos( ScreenToOutputPixel( rHEvt.GetMousePosPixel() ) );
95 0 : RowPos const hitRow = m_rTableControl.getRowAtPoint( aMousePos );
96 0 : ColPos const hitCol = m_rTableControl.getColAtPoint( aMousePos );
97 :
98 0 : PTableModel const pTableModel( m_rTableControl.getModel() );
99 0 : if ( ( hitCol >= 0 ) && ( hitCol < pTableModel->getColumnCount() ) )
100 : {
101 0 : if ( hitRow == ROW_COL_HEADERS )
102 : {
103 0 : sHelpText = pTableModel->getColumnModel( hitCol )->getHelpText();
104 : }
105 0 : else if ( ( hitRow >= 0 ) && ( hitRow < pTableModel->getRowCount() ) )
106 : {
107 0 : Any aCellToolTip;
108 0 : pTableModel->getCellToolTip( hitCol, hitRow, aCellToolTip );
109 0 : if ( !aCellToolTip.hasValue() )
110 : {
111 : // use the cell content
112 0 : pTableModel->getCellContent( hitCol, hitRow, aCellToolTip );
113 :
114 : // use the cell content as tool tip only if it doesn't fit into the cell.
115 0 : bool const activeCell = ( hitRow == m_rTableControl.getCurrentRow() ) && ( hitCol == m_rTableControl.getCurrentColumn() );
116 0 : bool const selectedCell = m_rTableControl.isRowSelected( hitRow );
117 :
118 0 : Rectangle const aWindowRect( Point( 0, 0 ), GetOutputSizePixel() );
119 0 : TableCellGeometry const aCell( m_rTableControl, aWindowRect, hitCol, hitRow );
120 0 : Rectangle const aCellRect( aCell.getRect() );
121 :
122 0 : PTableRenderer const pRenderer = pTableModel->getRenderer();
123 0 : if ( pRenderer->FitsIntoCell( aCellToolTip, hitCol, hitRow, activeCell, selectedCell, *this, aCellRect ) )
124 0 : aCellToolTip.clear();
125 : }
126 :
127 0 : pTableModel->getRenderer()->GetFormattedCellString( aCellToolTip, hitCol, hitRow, sHelpText );
128 :
129 0 : if ( sHelpText.indexOf( '\n' ) >= 0 )
130 0 : nHelpStyle = QUICKHELP_TIP_STYLE_BALLOON;
131 : }
132 : }
133 :
134 0 : if ( !sHelpText.isEmpty() )
135 : {
136 : // hide the standard (singleton) help window, so we do not have two help windows open at the same time
137 0 : Help::HideBalloonAndQuickHelp();
138 :
139 : Rectangle const aControlScreenRect(
140 0 : OutputToScreenPixel( Point( 0, 0 ) ),
141 0 : GetOutputSizePixel()
142 0 : );
143 :
144 0 : if ( m_nTipWindowHandle )
145 : {
146 0 : Help::UpdateTip( m_nTipWindowHandle, this, aControlScreenRect, sHelpText );
147 : }
148 : else
149 0 : m_nTipWindowHandle = Help::ShowTip( this, aControlScreenRect, sHelpText, nHelpStyle );
150 : }
151 : else
152 : {
153 0 : impl_hideTipWindow();
154 0 : Window::RequestHelp( rHEvt );
155 0 : }
156 : }
157 :
158 :
159 0 : void TableDataWindow::impl_hideTipWindow()
160 : {
161 0 : if ( m_nTipWindowHandle != 0 )
162 : {
163 0 : Help::HideTip( m_nTipWindowHandle );
164 0 : m_nTipWindowHandle = 0;
165 : }
166 0 : }
167 :
168 :
169 0 : void TableDataWindow::MouseMove( const MouseEvent& rMEvt )
170 : {
171 0 : if ( rMEvt.IsLeaveWindow() )
172 0 : impl_hideTipWindow();
173 :
174 0 : if ( !m_rTableControl.getInputHandler()->MouseMove( m_rTableControl, rMEvt ) )
175 : {
176 0 : Window::MouseMove( rMEvt );
177 : }
178 0 : }
179 :
180 0 : void TableDataWindow::MouseButtonDown( const MouseEvent& rMEvt )
181 : {
182 0 : impl_hideTipWindow();
183 :
184 0 : Point const aPoint = rMEvt.GetPosPixel();
185 0 : RowPos const hitRow = m_rTableControl.getRowAtPoint( aPoint );
186 0 : bool const wasRowSelected = m_rTableControl.isRowSelected( hitRow );
187 0 : size_t const nPrevSelRowCount = m_rTableControl.getSelectedRowCount();
188 :
189 0 : if ( !m_rTableControl.getInputHandler()->MouseButtonDown( m_rTableControl, rMEvt ) )
190 : {
191 0 : Window::MouseButtonDown( rMEvt );
192 0 : return;
193 : }
194 :
195 0 : bool const isRowSelected = m_rTableControl.isRowSelected( hitRow );
196 0 : size_t const nCurSelRowCount = m_rTableControl.getSelectedRowCount();
197 0 : if ( isRowSelected != wasRowSelected || nCurSelRowCount != nPrevSelRowCount )
198 : {
199 0 : m_aSelectHdl.Call( NULL );
200 : }
201 : }
202 :
203 :
204 0 : void TableDataWindow::MouseButtonUp( const MouseEvent& rMEvt )
205 : {
206 0 : if ( !m_rTableControl.getInputHandler()->MouseButtonUp( m_rTableControl, rMEvt ) )
207 0 : Window::MouseButtonUp( rMEvt );
208 :
209 0 : m_rTableControl.getAntiImpl().GrabFocus();
210 0 : }
211 :
212 :
213 0 : bool TableDataWindow::Notify(NotifyEvent& rNEvt )
214 : {
215 0 : bool nDone = false;
216 0 : if ( rNEvt.GetType() == EVENT_COMMAND )
217 : {
218 0 : const CommandEvent& rCEvt = *rNEvt.GetCommandEvent();
219 0 : if ( rCEvt.GetCommand() == COMMAND_WHEEL )
220 : {
221 0 : const CommandWheelData* pData = rCEvt.GetWheelData();
222 0 : if( !pData->GetModifier() && ( pData->GetMode() == COMMAND_WHEEL_SCROLL ) )
223 : {
224 0 : nDone = HandleScrollCommand( rCEvt, m_rTableControl.getHorzScrollbar(), m_rTableControl.getVertScrollbar() );
225 : }
226 : }
227 : }
228 0 : return nDone || Window::Notify( rNEvt );
229 : }
230 :
231 : } } // namespace svt::table
232 :
233 :
234 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|