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 <unotools/pathoptions.hxx>
21 : #include <cuires.hrc>
22 : #include "optchart.hxx"
23 : #include <dialmgr.hxx>
24 : #include <vcl/msgbox.hxx>
25 : #include <svx/svxids.hrc>
26 :
27 : namespace
28 : {
29 0 : void FillBoxChartColorLB(ColorLB *pLB, const SvxChartColorTable & rTab)
30 : {
31 0 : pLB->SetUpdateMode(false);
32 0 : pLB->Clear();
33 0 : long nCount = rTab.size();
34 0 : for(long i = 0; i < nCount; ++i)
35 : {
36 0 : pLB->Append(rTab[i]);
37 : }
38 0 : pLB->SetUpdateMode(true);
39 0 : }
40 : }
41 :
42 0 : SvxDefaultColorOptPage::SvxDefaultColorOptPage(Window* pParent, const SfxItemSet& rInAttrs)
43 0 : : SfxTabPage(pParent, "OptChartColorsPage","cui/ui/optchartcolorspage.ui", rInAttrs)
44 : {
45 0 : get(m_pPBRemove, "delete");
46 0 : get(m_pPBAdd, "add");
47 0 : get(m_pPBDefault, "default");
48 0 : get(m_pValSetColorBox, "table");
49 0 : get(m_pLbChartColors, "colors");
50 0 : m_pLbChartColors->set_height_request(m_pLbChartColors->GetTextHeight()*16);
51 :
52 0 : m_pPBDefault->SetClickHdl( LINK( this, SvxDefaultColorOptPage, ResetToDefaults ) );
53 0 : m_pPBAdd->SetClickHdl( LINK( this, SvxDefaultColorOptPage, AddChartColor ) );
54 0 : m_pPBRemove->SetClickHdl( LINK( this, SvxDefaultColorOptPage, RemoveChartColor ) );
55 0 : m_pLbChartColors->SetSelectHdl( LINK( this, SvxDefaultColorOptPage, ListClickedHdl ) );
56 0 : m_pValSetColorBox->SetSelectHdl( LINK( this, SvxDefaultColorOptPage, BoxClickedHdl ) );
57 :
58 0 : m_pValSetColorBox->SetStyle( m_pValSetColorBox->GetStyle()
59 0 : | WB_ITEMBORDER | WB_NAMEFIELD );
60 0 : m_pValSetColorBox->SetColCount( 8 );
61 0 : m_pValSetColorBox->SetLineCount( 13 );
62 0 : m_pValSetColorBox->SetExtraSpacing( 0 );
63 0 : m_pValSetColorBox->Show();
64 :
65 0 : pChartOptions = new SvxChartOptions;
66 0 : pColorList = XColorList::CreateStdColorList();
67 :
68 0 : const SfxPoolItem* pItem = NULL;
69 0 : if ( rInAttrs.GetItemState( SID_SCH_EDITOPTIONS, false, &pItem ) == SFX_ITEM_SET )
70 : {
71 0 : pColorConfig = (static_cast< SvxChartColorTableItem* >(pItem->Clone()) );
72 : }
73 : else
74 : {
75 0 : SvxChartColorTable aTable;
76 0 : aTable.useDefault();
77 0 : pColorConfig = new SvxChartColorTableItem( SID_SCH_EDITOPTIONS, aTable );
78 0 : pColorConfig->SetOptions( pChartOptions );
79 : }
80 :
81 0 : Construct();
82 0 : }
83 :
84 0 : SvxDefaultColorOptPage::~SvxDefaultColorOptPage()
85 : {
86 : // save changes
87 0 : pChartOptions->SetDefaultColors( pColorConfig->GetColorList() );
88 0 : pChartOptions->Commit();
89 :
90 0 : delete pColorConfig;
91 0 : delete pChartOptions;
92 0 : }
93 :
94 0 : void SvxDefaultColorOptPage::Construct()
95 : {
96 0 : if( pColorConfig )
97 0 : FillBoxChartColorLB(m_pLbChartColors, pColorConfig->GetColorList());
98 :
99 0 : FillColorBox();
100 :
101 0 : m_pLbChartColors->SelectEntryPos( 0 );
102 0 : ListClickedHdl(m_pLbChartColors);
103 0 : }
104 :
105 :
106 0 : SfxTabPage* SvxDefaultColorOptPage::Create( Window* pParent, const SfxItemSet& rAttrs )
107 : {
108 0 : return new SvxDefaultColorOptPage( pParent, rAttrs );
109 : }
110 :
111 0 : bool SvxDefaultColorOptPage::FillItemSet( SfxItemSet& rOutAttrs )
112 : {
113 0 : if( pColorConfig )
114 0 : rOutAttrs.Put( *(static_cast< SfxPoolItem* >(pColorConfig)));
115 :
116 0 : return true;
117 : }
118 :
119 0 : void SvxDefaultColorOptPage::Reset( const SfxItemSet& )
120 : {
121 0 : m_pLbChartColors->SelectEntryPos( 0 );
122 0 : ListClickedHdl(m_pLbChartColors);
123 0 : }
124 :
125 0 : void SvxDefaultColorOptPage::FillColorBox()
126 : {
127 0 : if( !pColorList.is() ) return;
128 :
129 0 : long nCount = pColorList->Count();
130 : XColorEntry* pColorEntry;
131 :
132 0 : if( nCount > 104 )
133 0 : m_pValSetColorBox->SetStyle( m_pValSetColorBox->GetStyle() | WB_VSCROLL );
134 :
135 0 : for( long i = 0; i < nCount; i++ )
136 : {
137 0 : pColorEntry = pColorList->GetColor( i );
138 0 : m_pValSetColorBox->InsertItem( i + 1, pColorEntry->GetColor(), pColorEntry->GetName() );
139 : }
140 : }
141 :
142 :
143 0 : long SvxDefaultColorOptPage::GetColorIndex( const Color& rCol )
144 : {
145 0 : if( pColorList.is() )
146 : {
147 0 : long nCount = pColorList->Count();
148 : XColorEntry* pColorEntry;
149 :
150 0 : for( long i = nCount - 1; i >= 0; i-- ) // default chart colors are at the end of the table
151 : {
152 0 : pColorEntry = pColorList->GetColor( i );
153 0 : if( pColorEntry && pColorEntry->GetColor() == rCol )
154 0 : return pColorList->GetIndex( pColorEntry->GetName() );
155 : }
156 : }
157 0 : return -1L;
158 : }
159 :
160 :
161 :
162 :
163 : // event handlers
164 :
165 :
166 : // ResetToDefaults
167 :
168 :
169 0 : IMPL_LINK_NOARG(SvxDefaultColorOptPage, ResetToDefaults)
170 : {
171 0 : if( pColorConfig )
172 : {
173 0 : pColorConfig->GetColorList().useDefault();
174 :
175 0 : FillBoxChartColorLB(m_pLbChartColors, pColorConfig->GetColorList());
176 :
177 0 : m_pLbChartColors->GetFocus();
178 0 : m_pLbChartColors->SelectEntryPos( 0 );
179 0 : m_pPBRemove->Enable( true );
180 : }
181 :
182 0 : return 0L;
183 : }
184 :
185 : // AddChartColor
186 :
187 :
188 0 : IMPL_LINK_NOARG(SvxDefaultColorOptPage, AddChartColor)
189 : {
190 0 : if( pColorConfig )
191 : {
192 0 : ColorData black = RGB_COLORDATA( 0x00, 0x00, 0x00 );
193 :
194 0 : pColorConfig->GetColorList().append (XColorEntry ( black, pColorConfig->GetColorList().getDefaultName(pColorConfig->GetColorList().size())));
195 :
196 0 : FillBoxChartColorLB(m_pLbChartColors, pColorConfig->GetColorList());
197 :
198 0 : m_pLbChartColors->GetFocus();
199 0 : m_pLbChartColors->SelectEntryPos( pColorConfig->GetColorList().size() - 1 );
200 0 : m_pPBRemove->Enable( true );
201 : }
202 :
203 0 : return 0L;
204 : }
205 :
206 : // RemoveChartColor
207 :
208 :
209 0 : IMPL_LINK( SvxDefaultColorOptPage, RemoveChartColor, PushButton*, pButton )
210 : {
211 0 : sal_Int32 nIndex = m_pLbChartColors->GetSelectEntryPos();
212 :
213 0 : if (m_pLbChartColors->GetSelectEntryCount() == 0)
214 0 : return 0L;
215 :
216 0 : if( pColorConfig )
217 : {
218 : OSL_ENSURE(pColorConfig->GetColorList().size() > 1, "don't delete the last chart color");
219 :
220 : MessageDialog aQuery(pButton, "QueryDeleteChartColorDialog",
221 0 : "cui/ui/querydeletechartcolordialog.ui");
222 0 : if (RET_YES == aQuery.Execute())
223 : {
224 0 : pColorConfig->GetColorList().remove( nIndex );
225 :
226 0 : FillBoxChartColorLB(m_pLbChartColors, pColorConfig->GetColorList());
227 :
228 0 : m_pLbChartColors->GetFocus();
229 :
230 0 : if (nIndex == m_pLbChartColors->GetEntryCount() && m_pLbChartColors->GetEntryCount() > 0)
231 0 : m_pLbChartColors->SelectEntryPos( pColorConfig->GetColorList().size() - 1 );
232 0 : else if (m_pLbChartColors->GetEntryCount() > 0)
233 0 : m_pLbChartColors->SelectEntryPos( nIndex );
234 : else
235 0 : m_pPBRemove->Enable(true);
236 0 : }
237 : }
238 :
239 0 : return 0L;
240 : }
241 :
242 0 : IMPL_LINK( SvxDefaultColorOptPage, ListClickedHdl, ColorLB*, _pColorList )
243 : {
244 0 : Color aCol = _pColorList->GetSelectEntryColor();
245 :
246 0 : long nIndex = GetColorIndex( aCol );
247 :
248 0 : if( nIndex == -1 ) // not found
249 0 : m_pValSetColorBox->SetNoSelection();
250 : else
251 0 : m_pValSetColorBox->SelectItem( nIndex + 1 ); // ValueSet is 1-based
252 :
253 0 : return 0L;
254 : }
255 :
256 0 : IMPL_LINK_NOARG(SvxDefaultColorOptPage, BoxClickedHdl)
257 : {
258 0 : sal_Int32 nIdx = m_pLbChartColors->GetSelectEntryPos();
259 0 : if( nIdx != LISTBOX_ENTRY_NOTFOUND )
260 : {
261 0 : const XColorEntry aEntry( m_pValSetColorBox->GetItemColor( m_pValSetColorBox->GetSelectItemId() ), m_pLbChartColors->GetSelectEntry() );
262 :
263 0 : m_pLbChartColors->Modify( aEntry, nIdx );
264 0 : pColorConfig->ReplaceColorByIndex( nIdx, aEntry );
265 :
266 0 : m_pLbChartColors->SelectEntryPos( nIdx ); // reselect entry
267 : }
268 :
269 0 : return 0L;
270 0 : }
271 :
272 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|