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 :
10 : #include <iodlg.hrc>
11 : #include <PlacesListBox.hxx>
12 : #include <svtools/PlaceEditDialog.hxx>
13 :
14 : #include <vcl/msgbox.hxx>
15 : #include <svtools/headbar.hxx>
16 : #include <svtools/svtresid.hxx>
17 :
18 : #define COLUMN_NAME 1
19 :
20 :
21 0 : PlacesListBox_Impl::PlacesListBox_Impl( PlacesListBox* pParent, const OUString& rTitle ) :
22 : SvHeaderTabListBox( pParent, WB_TABSTOP | WB_NOINITIALSELECTION ),
23 : mpHeaderBar( NULL ),
24 0 : mpParent( pParent )
25 : {
26 0 : Size aBoxSize = pParent->GetSizePixel( );
27 0 : mpHeaderBar = new HeaderBar( pParent, WB_BUTTONSTYLE | WB_BOTTOMBORDER );
28 0 : mpHeaderBar->SetPosSizePixel( Point( 0, 0 ), Size( 600, 16 ) );
29 :
30 0 : long pTabs[] = { 2, 20, 600 };
31 0 : SetTabs( &pTabs[0], MAP_PIXEL );
32 0 : mpHeaderBar->InsertItem( COLUMN_NAME, rTitle, 600, HIB_LEFT | HIB_VCENTER );
33 :
34 0 : Size aHeadSize = mpHeaderBar->GetSizePixel();
35 : SetPosSizePixel( Point( 0, aHeadSize.getHeight() ),
36 0 : Size( aBoxSize.getWidth(), aBoxSize.getHeight() - aHeadSize.getHeight() ) );
37 :
38 0 : InitHeaderBar( mpHeaderBar );
39 :
40 0 : Show( );
41 0 : mpHeaderBar->Show();
42 0 : }
43 :
44 0 : PlacesListBox_Impl::~PlacesListBox_Impl( )
45 : {
46 0 : delete mpHeaderBar;
47 0 : mpParent = NULL;
48 0 : }
49 :
50 0 : void PlacesListBox_Impl::MouseButtonUp( const MouseEvent& rMEvt )
51 : {
52 0 : SvHeaderTabListBox::MouseButtonUp( rMEvt );
53 0 : mpParent->updateView( );
54 0 : }
55 :
56 0 : PlacesListBox::PlacesListBox( vcl::Window* pParent, SvtFileDialog* pFileDlg, const OUString& rTitle, WinBits nBits ) :
57 : Control( pParent, nBits ),
58 : maPlaces( ),
59 : mpDlg( pFileDlg ),
60 : mpImpl( NULL ),
61 : mpAddBtn( ),
62 : mpDelBtn( ),
63 : mnNbEditables( 0 ),
64 : mbUpdated( false ),
65 0 : mbSelectionChanged( false )
66 : {
67 0 : mpImpl = new PlacesListBox_Impl( this, rTitle );
68 :
69 0 : mpImpl->SetSelectHdl( LINK( this, PlacesListBox, Selection ) );
70 0 : mpImpl->SetDoubleClickHdl( LINK( this, PlacesListBox, DoubleClick ) ) ;
71 :
72 0 : mpAddBtn = new ImageButton( this, 0 );
73 0 : mpAddBtn->SetText( OUString( "+" ) );
74 0 : mpAddBtn->SetPosSizePixel( Point( 0, 0 ), Size( 22, 22 ) );
75 0 : mpAddBtn->Show();
76 :
77 0 : mpDelBtn = new ImageButton( this, 0 );
78 0 : mpDelBtn->SetText( OUString( "-" ) );
79 0 : mpDelBtn->SetPosSizePixel( Point( 0, 0 ), Size( 22, 22 ) );
80 0 : mpDelBtn->Show();
81 0 : }
82 :
83 0 : PlacesListBox::~PlacesListBox( )
84 : {
85 0 : delete mpImpl;
86 0 : delete mpAddBtn;
87 0 : delete mpDelBtn;
88 0 : }
89 :
90 0 : void PlacesListBox::AppendPlace( PlacePtr pPlace )
91 : {
92 0 : maPlaces.push_back( pPlace );
93 0 : mpImpl->InsertEntry( pPlace->GetName( ),
94 0 : getEntryIcon( pPlace ), getEntryIcon( pPlace ) );
95 :
96 0 : if(pPlace->IsEditable()) {
97 0 : ++mnNbEditables;
98 0 : mbUpdated = true;
99 : }
100 0 : }
101 :
102 :
103 0 : bool PlacesListBox::IsUpdated() {
104 0 : if(mbUpdated) {
105 0 : mbUpdated = false;
106 0 : return true;
107 : }
108 0 : return false;
109 : }
110 :
111 :
112 0 : void PlacesListBox::RemovePlace( sal_uInt16 nPos )
113 : {
114 0 : if ( nPos < maPlaces.size() )
115 : {
116 0 : if(maPlaces[nPos]->IsEditable()) {
117 0 : --mnNbEditables;
118 0 : mbUpdated = true;
119 : }
120 0 : maPlaces.erase( maPlaces.begin() + nPos );
121 0 : SvTreeListEntry* pEntry = mpImpl->GetEntry( nPos );
122 0 : mpImpl->RemoveEntry( pEntry );
123 : }
124 0 : }
125 :
126 0 : void PlacesListBox::RemoveSelectedPlace() {
127 0 : RemovePlace(mpImpl->GetCurrRow());
128 0 : }
129 :
130 0 : void PlacesListBox::SetAddHdl( const Link& rHdl )
131 : {
132 0 : mpAddBtn->SetClickHdl( rHdl );
133 0 : }
134 :
135 0 : void PlacesListBox::SetDelHdl( const Link& rHdl )
136 : {
137 0 : mpDelBtn->SetClickHdl( rHdl );
138 0 : }
139 :
140 0 : void PlacesListBox::SetDelEnabled( bool enabled )
141 : {
142 0 : mpDelBtn->Enable( enabled );
143 0 : }
144 :
145 0 : void PlacesListBox::SetSizePixel( const Size& rNewSize )
146 : {
147 0 : Control::SetSizePixel( rNewSize );
148 0 : Size aListSize( rNewSize );
149 0 : aListSize.Height() -= 26 + 18;
150 0 : mpImpl->SetSizePixel( aListSize );
151 :
152 0 : sal_Int32 nBtnY = rNewSize.Height() - 26;
153 0 : mpAddBtn->SetPosPixel( Point( 3, nBtnY ) );
154 0 : mpDelBtn->SetPosPixel( Point( 6 + 24, nBtnY ) );
155 0 : }
156 :
157 0 : Image PlacesListBox::getEntryIcon( PlacePtr pPlace )
158 : {
159 0 : Image theImage = mpDlg->GetButtonImage( IMG_FILEDLG_PLACE_LOCAL );
160 0 : if ( !pPlace->IsLocal( ) )
161 0 : theImage = mpDlg->GetButtonImage( IMG_FILEDLG_PLACE_REMOTE );
162 0 : return theImage;
163 : }
164 :
165 0 : IMPL_LINK( PlacesListBox, Selection, void* , EMPTYARG )
166 : {
167 0 : sal_uInt32 nSelected = mpImpl->GetCurrRow();
168 0 : PlacePtr pPlace = maPlaces[nSelected];
169 :
170 0 : mbSelectionChanged = true;
171 0 : if(pPlace->IsEditable())
172 0 : mpDlg->RemovablePlaceSelected();
173 : else
174 0 : mpDlg->RemovablePlaceSelected(false);
175 0 : return 0;
176 : }
177 :
178 0 : IMPL_LINK ( PlacesListBox, DoubleClick, void*, EMPTYARG )
179 : {
180 0 : sal_uInt16 nSelected = mpImpl->GetCurrRow();
181 0 : PlacePtr pPlace = maPlaces[nSelected];
182 0 : if ( pPlace->IsEditable() == true && !pPlace->IsLocal( ) )
183 : {
184 0 : PlaceEditDialog aDlg( mpDlg, pPlace );
185 0 : short aRetCode = aDlg.Execute();
186 0 : switch(aRetCode) {
187 : case RET_OK :
188 : {
189 0 : pPlace->SetName ( aDlg.GetServerName() );
190 0 : pPlace->SetUrl( aDlg.GetServerUrl() );
191 0 : mbUpdated = true;
192 0 : break;
193 : }
194 : case RET_NO :
195 : {
196 0 : RemovePlace(nSelected);
197 0 : break;
198 : }
199 : default:
200 0 : break;
201 0 : };
202 : }
203 0 : return 0;
204 : }
205 :
206 0 : void PlacesListBox::updateView( )
207 : {
208 0 : if ( mbSelectionChanged )
209 : {
210 0 : mbSelectionChanged = false;
211 0 : sal_uInt32 nSelected = mpImpl->GetCurrRow();
212 0 : PlacePtr pPlace = maPlaces[nSelected];
213 0 : mpDlg->OpenURL_Impl( pPlace->GetUrl( ) );
214 : }
215 6 : }
216 :
217 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|