xref: /AOO41X/main/sc/source/ui/dbgui/textimportoptions.cxx (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1*cdf0e10cSrcweir /*************************************************************************
2*cdf0e10cSrcweir  *
3*cdf0e10cSrcweir  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4*cdf0e10cSrcweir  *
5*cdf0e10cSrcweir  * Copyright 2008 by Sun Microsystems, Inc.
6*cdf0e10cSrcweir  *
7*cdf0e10cSrcweir  * OpenOffice.org - a multi-platform office productivity suite
8*cdf0e10cSrcweir  *
9*cdf0e10cSrcweir  * $RCSfile: langbox.hxx,v $
10*cdf0e10cSrcweir  * $Revision: 1.4.242.1 $
11*cdf0e10cSrcweir  *
12*cdf0e10cSrcweir  * This file is part of OpenOffice.org.
13*cdf0e10cSrcweir  *
14*cdf0e10cSrcweir  * OpenOffice.org is free software: you can redistribute it and/or modify
15*cdf0e10cSrcweir  * it under the terms of the GNU Lesser General Public License version 3
16*cdf0e10cSrcweir  * only, as published by the Free Software Foundation.
17*cdf0e10cSrcweir  *
18*cdf0e10cSrcweir  * OpenOffice.org is distributed in the hope that it will be useful,
19*cdf0e10cSrcweir  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20*cdf0e10cSrcweir  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21*cdf0e10cSrcweir  * GNU Lesser General Public License version 3 for more details
22*cdf0e10cSrcweir  * (a copy is included in the LICENSE file that accompanied this code).
23*cdf0e10cSrcweir  *
24*cdf0e10cSrcweir  * You should have received a copy of the GNU Lesser General Public License
25*cdf0e10cSrcweir  * version 3 along with OpenOffice.org.  If not, see
26*cdf0e10cSrcweir  * <http://www.openoffice.org/license.html>
27*cdf0e10cSrcweir  * for a copy of the LGPLv3 License.
28*cdf0e10cSrcweir  *
29*cdf0e10cSrcweir  ************************************************************************/
30*cdf0e10cSrcweir 
31*cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
32*cdf0e10cSrcweir #include "precompiled_sc.hxx"
33*cdf0e10cSrcweir 
34*cdf0e10cSrcweir #undef SC_DLLIMPLEMENTATION
35*cdf0e10cSrcweir 
36*cdf0e10cSrcweir //------------------------------------------------------------------------
37*cdf0e10cSrcweir 
38*cdf0e10cSrcweir #include "textimportoptions.hxx"
39*cdf0e10cSrcweir #include "textimportoptions.hrc"
40*cdf0e10cSrcweir 
41*cdf0e10cSrcweir #include "scresid.hxx"
42*cdf0e10cSrcweir #include "vcl/window.hxx"
43*cdf0e10cSrcweir #include "vcl/msgbox.hxx"
44*cdf0e10cSrcweir #include "vcl/svapp.hxx"
45*cdf0e10cSrcweir 
46*cdf0e10cSrcweir ScTextImportOptionsDlg::ScTextImportOptionsDlg(Window* pParent) :
47*cdf0e10cSrcweir     ModalDialog(pParent, ScResId(RID_SCDLG_TEXT_IMPORT_OPTIONS)),
48*cdf0e10cSrcweir 
49*cdf0e10cSrcweir     maBtnOk(this, ScResId(BTN_OK)),
50*cdf0e10cSrcweir     maBtnCancel(this, ScResId(BTN_CANCEL)),
51*cdf0e10cSrcweir     maBtnHelp(this, ScResId(BTN_HELP)),
52*cdf0e10cSrcweir     maFlChooseLang(this, ScResId(FL_CHOOSE_LANG)),
53*cdf0e10cSrcweir     maRbAutomatic(this, ScResId(RB_AUTOMATIC)),
54*cdf0e10cSrcweir     maRbCustom(this, ScResId(RB_CUSTOM)),
55*cdf0e10cSrcweir     maLbCustomLang(this, ScResId(LB_CUSTOM_LANG)),
56*cdf0e10cSrcweir     maFlOption(this, ScResId(FL_OPTION)),
57*cdf0e10cSrcweir     maBtnConvertDate(this, ScResId(BTN_CONVERT_DATE))
58*cdf0e10cSrcweir {
59*cdf0e10cSrcweir     FreeResource();
60*cdf0e10cSrcweir     init();
61*cdf0e10cSrcweir }
62*cdf0e10cSrcweir 
63*cdf0e10cSrcweir ScTextImportOptionsDlg::~ScTextImportOptionsDlg()
64*cdf0e10cSrcweir {
65*cdf0e10cSrcweir }
66*cdf0e10cSrcweir 
67*cdf0e10cSrcweir short ScTextImportOptionsDlg::Execute()
68*cdf0e10cSrcweir {
69*cdf0e10cSrcweir     return ModalDialog::Execute();
70*cdf0e10cSrcweir }
71*cdf0e10cSrcweir 
72*cdf0e10cSrcweir LanguageType ScTextImportOptionsDlg::getLanguageType() const
73*cdf0e10cSrcweir {
74*cdf0e10cSrcweir     if (maRbAutomatic.IsChecked())
75*cdf0e10cSrcweir         return LANGUAGE_SYSTEM;
76*cdf0e10cSrcweir 
77*cdf0e10cSrcweir     return maLbCustomLang.GetSelectLanguage();
78*cdf0e10cSrcweir }
79*cdf0e10cSrcweir 
80*cdf0e10cSrcweir bool ScTextImportOptionsDlg::isDateConversionSet() const
81*cdf0e10cSrcweir {
82*cdf0e10cSrcweir     return maBtnConvertDate.IsChecked();
83*cdf0e10cSrcweir }
84*cdf0e10cSrcweir 
85*cdf0e10cSrcweir void ScTextImportOptionsDlg::init()
86*cdf0e10cSrcweir {
87*cdf0e10cSrcweir     Link aLink = LINK( this, ScTextImportOptionsDlg, OKHdl );
88*cdf0e10cSrcweir     maBtnOk.SetClickHdl(aLink);
89*cdf0e10cSrcweir     aLink = LINK( this, ScTextImportOptionsDlg, RadioHdl );
90*cdf0e10cSrcweir     maRbAutomatic.SetClickHdl(aLink);
91*cdf0e10cSrcweir     maRbCustom.SetClickHdl(aLink);
92*cdf0e10cSrcweir 
93*cdf0e10cSrcweir     maRbAutomatic.Check(true);
94*cdf0e10cSrcweir 
95*cdf0e10cSrcweir     maLbCustomLang.SetLanguageList(
96*cdf0e10cSrcweir         LANG_LIST_ALL | LANG_LIST_ONLY_KNOWN, false, false);
97*cdf0e10cSrcweir 
98*cdf0e10cSrcweir     LanguageType eLang = Application::GetSettings().GetLanguage();
99*cdf0e10cSrcweir     maLbCustomLang.SelectLanguage(eLang);
100*cdf0e10cSrcweir     maLbCustomLang.Disable();
101*cdf0e10cSrcweir }
102*cdf0e10cSrcweir 
103*cdf0e10cSrcweir IMPL_LINK( ScTextImportOptionsDlg, OKHdl, OKButton*, EMPTYARG )
104*cdf0e10cSrcweir {
105*cdf0e10cSrcweir     EndDialog(RET_OK);
106*cdf0e10cSrcweir     return 0;
107*cdf0e10cSrcweir }
108*cdf0e10cSrcweir 
109*cdf0e10cSrcweir IMPL_LINK( ScTextImportOptionsDlg, RadioHdl, RadioButton*, pBtn )
110*cdf0e10cSrcweir {
111*cdf0e10cSrcweir     if (pBtn == &maRbAutomatic)
112*cdf0e10cSrcweir     {
113*cdf0e10cSrcweir         maLbCustomLang.Disable();
114*cdf0e10cSrcweir     }
115*cdf0e10cSrcweir     else if (pBtn == &maRbCustom)
116*cdf0e10cSrcweir     {
117*cdf0e10cSrcweir         maLbCustomLang.Enable();
118*cdf0e10cSrcweir     }
119*cdf0e10cSrcweir     return 0;
120*cdf0e10cSrcweir }
121*cdf0e10cSrcweir 
122