1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 // MARKER(update_precomp.py): autogen include statement, do not remove
29 #include "precompiled_svtools.hxx"
30 
31 #include <svtools/urlcontrol.hxx>
32 #include "svl/filenotation.hxx"
33 
34 //.........................................................................
35 namespace svt
36 {
37 //.........................................................................
38 
39 	//=====================================================================
40 	//= OFileURLControl
41 	//=====================================================================
42 	//---------------------------------------------------------------------
43 	OFileURLControl::OFileURLControl(Window* _pParent)
44 		:SvtURLBox(_pParent, INET_PROT_FILE)
45 	{
46 		DisableHistory();
47 	}
48 
49 	//---------------------------------------------------------------------
50 	OFileURLControl::OFileURLControl(Window* _pParent, const ResId& _rId)
51 		:SvtURLBox(_pParent, _rId, INET_PROT_FILE)
52 	{
53 		DisableHistory();
54 	}
55 
56 	//---------------------------------------------------------------------
57 	long OFileURLControl::PreNotify( NotifyEvent& _rNEvt )
58 	{
59 		if (GetSubEdit() == _rNEvt.GetWindow())
60 			if (EVENT_KEYINPUT == _rNEvt.GetType())
61 				if (KEY_RETURN == _rNEvt.GetKeyEvent()->GetKeyCode().GetCode())
62 					if (IsInDropDown())
63 						m_sPreservedText = GetURL();
64 
65 		return SvtURLBox::PreNotify(_rNEvt);
66 	}
67 
68 	//---------------------------------------------------------------------
69 	long OFileURLControl::Notify( NotifyEvent& _rNEvt )
70 	{
71 		if (GetSubEdit() == _rNEvt.GetWindow())
72 			if (EVENT_KEYINPUT == _rNEvt.GetType())
73 				if (KEY_RETURN == _rNEvt.GetKeyEvent()->GetKeyCode().GetCode())
74 					if (IsInDropDown())
75 					{
76 						long nReturn = SvtURLBox::Notify(_rNEvt);
77 
78 						// build a system dependent (thus more user readable) file name
79 						OFileNotation aTransformer(m_sPreservedText, OFileNotation::N_URL);
80 						SetText(aTransformer.get(OFileNotation::N_SYSTEM));
81 						Modify();
82 
83 						// Update the pick list
84 						UpdatePickList();
85 
86 						return nReturn;
87 					}
88 
89 		return SvtURLBox::Notify(_rNEvt);
90 	}
91 
92 //.........................................................................
93 }	// namespace svt
94 //.........................................................................
95 
96