1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2000, 2010 Oracle and/or its affiliates.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
10*cdf0e10cSrcweir  *
11*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
12*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
13*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
14*cdf0e10cSrcweir  *
15*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
16*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
19*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
20*cdf0e10cSrcweir  *
21*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
22*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
23*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
24*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
25*cdf0e10cSrcweir  *
26*cdf0e10cSrcweir  ************************************************************************/
27*cdf0e10cSrcweir 
28*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
29*cdf0e10cSrcweir #include "precompiled_cui.hxx"
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir #include "internationaloptions.hxx"
32*cdf0e10cSrcweir #include "internationaloptions.hrc"
33*cdf0e10cSrcweir #include <svl/eitem.hxx>
34*cdf0e10cSrcweir #include <cuires.hrc>
35*cdf0e10cSrcweir #include "helpid.hrc"
36*cdf0e10cSrcweir #include <dialmgr.hxx>
37*cdf0e10cSrcweir #include <svx/dialogs.hrc>
38*cdf0e10cSrcweir 
39*cdf0e10cSrcweir namespace offapp
40*cdf0e10cSrcweir {
41*cdf0e10cSrcweir 
42*cdf0e10cSrcweir 	struct InternationalOptionsPage::IMPL
43*cdf0e10cSrcweir 	{
44*cdf0e10cSrcweir 		FixedLine			m_aFL_DefaultTextDirection;
45*cdf0e10cSrcweir 		RadioButton			m_aRB_TxtDirLeft2Right;
46*cdf0e10cSrcweir 		RadioButton			m_aRB_TxtDirRight2Left;
47*cdf0e10cSrcweir 		FixedLine			m_aFL_SheetView;
48*cdf0e10cSrcweir 		CheckBox			m_aCB_ShtVwRight2Left;
49*cdf0e10cSrcweir 		CheckBox			m_aCB_ShtVwCurrentDocOnly;
50*cdf0e10cSrcweir 
51*cdf0e10cSrcweir 		sal_Bool				m_bEnable_SheetView_Opt : 1;
52*cdf0e10cSrcweir 
53*cdf0e10cSrcweir 		inline				IMPL( Window* _pParent );
54*cdf0e10cSrcweir 
55*cdf0e10cSrcweir 		inline void			EnableOption_SheetView( sal_Bool _bEnable = sal_True );
56*cdf0e10cSrcweir 		void				ShowOption_SheetView( sal_Bool _bShow = sal_True );
57*cdf0e10cSrcweir 
58*cdf0e10cSrcweir 		sal_Bool				FillItemSet( SfxItemSet& _rSet );
59*cdf0e10cSrcweir 		void				Reset( const SfxItemSet& _rSet );
60*cdf0e10cSrcweir 	};
61*cdf0e10cSrcweir 
62*cdf0e10cSrcweir 	inline InternationalOptionsPage::IMPL::IMPL( Window* _pParent ) :
63*cdf0e10cSrcweir 		m_aFL_DefaultTextDirection	( _pParent,	CUI_RES( FL_DEFTXTDIRECTION ) )
64*cdf0e10cSrcweir 		,m_aRB_TxtDirLeft2Right		( _pParent,	CUI_RES( RB_TXTDIR_LEFT2RIGHT ) )
65*cdf0e10cSrcweir 		,m_aRB_TxtDirRight2Left		( _pParent, CUI_RES( RB_TXTDIR_RIGHT2LEFT ) )
66*cdf0e10cSrcweir 		,m_aFL_SheetView			( _pParent, CUI_RES( FL_SHEETVIEW ) )
67*cdf0e10cSrcweir 		,m_aCB_ShtVwRight2Left		( _pParent, CUI_RES( CB_SHTVW_RIGHT2LEFT ) )
68*cdf0e10cSrcweir 		,m_aCB_ShtVwCurrentDocOnly	( _pParent, CUI_RES( CB_SHTVW_CURRENTDOCONLY ) )
69*cdf0e10cSrcweir 
70*cdf0e10cSrcweir 		,m_bEnable_SheetView_Opt	( sal_False )
71*cdf0e10cSrcweir 	{
72*cdf0e10cSrcweir 		ShowOption_SheetView( m_bEnable_SheetView_Opt );
73*cdf0e10cSrcweir 	}
74*cdf0e10cSrcweir 
75*cdf0e10cSrcweir 	inline void InternationalOptionsPage::IMPL::EnableOption_SheetView( sal_Bool _bEnable )
76*cdf0e10cSrcweir 	{
77*cdf0e10cSrcweir 		if( m_bEnable_SheetView_Opt != _bEnable )
78*cdf0e10cSrcweir 		{
79*cdf0e10cSrcweir 			ShowOption_SheetView( _bEnable );
80*cdf0e10cSrcweir 
81*cdf0e10cSrcweir 			m_bEnable_SheetView_Opt = _bEnable;
82*cdf0e10cSrcweir 		}
83*cdf0e10cSrcweir 	}
84*cdf0e10cSrcweir 
85*cdf0e10cSrcweir 	void InternationalOptionsPage::IMPL::ShowOption_SheetView( sal_Bool _bShow )
86*cdf0e10cSrcweir 	{
87*cdf0e10cSrcweir 		m_aFL_SheetView.Show( _bShow );
88*cdf0e10cSrcweir 		m_aCB_ShtVwRight2Left.Show( _bShow );
89*cdf0e10cSrcweir 		m_aCB_ShtVwCurrentDocOnly.Show( _bShow );
90*cdf0e10cSrcweir 	}
91*cdf0e10cSrcweir 
92*cdf0e10cSrcweir 	sal_Bool InternationalOptionsPage::IMPL::FillItemSet( SfxItemSet& _rSet )
93*cdf0e10cSrcweir 	{
94*cdf0e10cSrcweir 		DBG_ASSERT( _rSet.GetPool(), "-InternationalOptionsPage::FillItemSet(): no pool gives rums!" );
95*cdf0e10cSrcweir 
96*cdf0e10cSrcweir 		// handling of DefaultTextDirection stuff
97*cdf0e10cSrcweir 		_rSet.Put(	SfxBoolItem(	_rSet.GetPool()->GetWhich( SID_ATTR_PARA_LEFT_TO_RIGHT ),
98*cdf0e10cSrcweir 									m_aRB_TxtDirLeft2Right.IsChecked() ),
99*cdf0e10cSrcweir 					SID_ATTR_PARA_LEFT_TO_RIGHT );
100*cdf0e10cSrcweir 
101*cdf0e10cSrcweir 		// handling of SheetView stuff
102*cdf0e10cSrcweir //		if( m_bEnable_SheetView_Opt )
103*cdf0e10cSrcweir //		{
104*cdf0e10cSrcweir //		}
105*cdf0e10cSrcweir 
106*cdf0e10cSrcweir 		return sal_True;
107*cdf0e10cSrcweir 	}
108*cdf0e10cSrcweir 
109*cdf0e10cSrcweir 	void InternationalOptionsPage::IMPL::Reset( const SfxItemSet& _rSet )
110*cdf0e10cSrcweir 	{
111*cdf0e10cSrcweir 		// handling of DefaultTextDirection stuff
112*cdf0e10cSrcweir 		const SfxBoolItem*	pLeft2RightItem = static_cast< const SfxBoolItem* >( GetItem( _rSet, SID_ATTR_PARA_LEFT_TO_RIGHT ) );
113*cdf0e10cSrcweir 
114*cdf0e10cSrcweir 		DBG_ASSERT( pLeft2RightItem, "+InternationalOptionsPage::Reset(): SID_ATTR_PARA_LEFT_TO_RIGHT not set!" );
115*cdf0e10cSrcweir 
116*cdf0e10cSrcweir 		sal_Bool				bLeft2Right = pLeft2RightItem? pLeft2RightItem->GetValue() : sal_True;
117*cdf0e10cSrcweir 		m_aRB_TxtDirLeft2Right.Check( bLeft2Right );
118*cdf0e10cSrcweir 
119*cdf0e10cSrcweir 		// handling of SheetView stuff
120*cdf0e10cSrcweir //		if( m_bEnable_SheetView_Opt )
121*cdf0e10cSrcweir //		{
122*cdf0e10cSrcweir //			m_aCB_ShtVwRight2Left.Check( sal_False );
123*cdf0e10cSrcweir //
124*cdf0e10cSrcweir //			m_aCB_ShtVwCurrentDocOnly.Check( sal_False );
125*cdf0e10cSrcweir //		}
126*cdf0e10cSrcweir 	}
127*cdf0e10cSrcweir 
128*cdf0e10cSrcweir 	InternationalOptionsPage::InternationalOptionsPage( Window* _pParent, const SfxItemSet& _rAttrSet ) :
129*cdf0e10cSrcweir 		SfxTabPage	( _pParent, CUI_RES( RID_OFA_TP_INTERNATIONAL ), _rAttrSet )
130*cdf0e10cSrcweir 
131*cdf0e10cSrcweir 		,m_pImpl	( new IMPL( this ) )
132*cdf0e10cSrcweir 	{
133*cdf0e10cSrcweir 		FreeResource();
134*cdf0e10cSrcweir 	}
135*cdf0e10cSrcweir 
136*cdf0e10cSrcweir 	SfxTabPage* InternationalOptionsPage::CreateSd( Window* _pParent, const SfxItemSet& _rAttrSet )
137*cdf0e10cSrcweir 	{
138*cdf0e10cSrcweir 		return new InternationalOptionsPage( _pParent, _rAttrSet );
139*cdf0e10cSrcweir 	}
140*cdf0e10cSrcweir 
141*cdf0e10cSrcweir 	SfxTabPage* InternationalOptionsPage::CreateSc( Window* _pParent, const SfxItemSet& _rAttrSet )
142*cdf0e10cSrcweir 	{
143*cdf0e10cSrcweir 		InternationalOptionsPage*	p = new InternationalOptionsPage( _pParent, _rAttrSet );
144*cdf0e10cSrcweir //		p->m_pImpl->EnableOption_SheetView();
145*cdf0e10cSrcweir 		return p;
146*cdf0e10cSrcweir 	}
147*cdf0e10cSrcweir 
148*cdf0e10cSrcweir 	InternationalOptionsPage::~InternationalOptionsPage()
149*cdf0e10cSrcweir 	{
150*cdf0e10cSrcweir 		DELETEZ( m_pImpl );
151*cdf0e10cSrcweir 	}
152*cdf0e10cSrcweir 
153*cdf0e10cSrcweir 	sal_Bool InternationalOptionsPage::FillItemSet( SfxItemSet& _rSet )
154*cdf0e10cSrcweir 	{
155*cdf0e10cSrcweir 		return m_pImpl->FillItemSet( _rSet );
156*cdf0e10cSrcweir 	}
157*cdf0e10cSrcweir 
158*cdf0e10cSrcweir 	void InternationalOptionsPage::Reset( const SfxItemSet& _rSet )
159*cdf0e10cSrcweir 	{
160*cdf0e10cSrcweir 		m_pImpl->Reset( _rSet );
161*cdf0e10cSrcweir 	}
162*cdf0e10cSrcweir 
163*cdf0e10cSrcweir }	// /namespace offapp
164*cdf0e10cSrcweir 
165