xref: /trunk/main/svtools/source/control/urlcontrol.cxx (revision cf6516809c57e1bb0a940545cca99cdad54d4ce2)
1*5900e8ecSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3*5900e8ecSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4*5900e8ecSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5*5900e8ecSAndrew Rist  * distributed with this work for additional information
6*5900e8ecSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7*5900e8ecSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8*5900e8ecSAndrew Rist  * "License"); you may not use this file except in compliance
9*5900e8ecSAndrew Rist  * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir  *
11*5900e8ecSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir  *
13*5900e8ecSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14*5900e8ecSAndrew Rist  * software distributed under the License is distributed on an
15*5900e8ecSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*5900e8ecSAndrew Rist  * KIND, either express or implied.  See the License for the
17*5900e8ecSAndrew Rist  * specific language governing permissions and limitations
18*5900e8ecSAndrew Rist  * under the License.
19cdf0e10cSrcweir  *
20*5900e8ecSAndrew Rist  *************************************************************/
21*5900e8ecSAndrew Rist 
22*5900e8ecSAndrew Rist 
23cdf0e10cSrcweir 
24cdf0e10cSrcweir // MARKER(update_precomp.py): autogen include statement, do not remove
25cdf0e10cSrcweir #include "precompiled_svtools.hxx"
26cdf0e10cSrcweir 
27cdf0e10cSrcweir #include <svtools/urlcontrol.hxx>
28cdf0e10cSrcweir #include "svl/filenotation.hxx"
29cdf0e10cSrcweir 
30cdf0e10cSrcweir //.........................................................................
31cdf0e10cSrcweir namespace svt
32cdf0e10cSrcweir {
33cdf0e10cSrcweir //.........................................................................
34cdf0e10cSrcweir 
35cdf0e10cSrcweir     //=====================================================================
36cdf0e10cSrcweir     //= OFileURLControl
37cdf0e10cSrcweir     //=====================================================================
38cdf0e10cSrcweir     //---------------------------------------------------------------------
OFileURLControl(Window * _pParent)39cdf0e10cSrcweir     OFileURLControl::OFileURLControl(Window* _pParent)
40cdf0e10cSrcweir         :SvtURLBox(_pParent, INET_PROT_FILE)
41cdf0e10cSrcweir     {
42cdf0e10cSrcweir         DisableHistory();
43cdf0e10cSrcweir     }
44cdf0e10cSrcweir 
45cdf0e10cSrcweir     //---------------------------------------------------------------------
OFileURLControl(Window * _pParent,const ResId & _rId)46cdf0e10cSrcweir     OFileURLControl::OFileURLControl(Window* _pParent, const ResId& _rId)
47cdf0e10cSrcweir         :SvtURLBox(_pParent, _rId, INET_PROT_FILE)
48cdf0e10cSrcweir     {
49cdf0e10cSrcweir         DisableHistory();
50cdf0e10cSrcweir     }
51cdf0e10cSrcweir 
52cdf0e10cSrcweir     //---------------------------------------------------------------------
PreNotify(NotifyEvent & _rNEvt)53cdf0e10cSrcweir     long OFileURLControl::PreNotify( NotifyEvent& _rNEvt )
54cdf0e10cSrcweir     {
55cdf0e10cSrcweir         if (GetSubEdit() == _rNEvt.GetWindow())
56cdf0e10cSrcweir             if (EVENT_KEYINPUT == _rNEvt.GetType())
57cdf0e10cSrcweir                 if (KEY_RETURN == _rNEvt.GetKeyEvent()->GetKeyCode().GetCode())
58cdf0e10cSrcweir                     if (IsInDropDown())
59cdf0e10cSrcweir                         m_sPreservedText = GetURL();
60cdf0e10cSrcweir 
61cdf0e10cSrcweir         return SvtURLBox::PreNotify(_rNEvt);
62cdf0e10cSrcweir     }
63cdf0e10cSrcweir 
64cdf0e10cSrcweir     //---------------------------------------------------------------------
Notify(NotifyEvent & _rNEvt)65cdf0e10cSrcweir     long OFileURLControl::Notify( NotifyEvent& _rNEvt )
66cdf0e10cSrcweir     {
67cdf0e10cSrcweir         if (GetSubEdit() == _rNEvt.GetWindow())
68cdf0e10cSrcweir             if (EVENT_KEYINPUT == _rNEvt.GetType())
69cdf0e10cSrcweir                 if (KEY_RETURN == _rNEvt.GetKeyEvent()->GetKeyCode().GetCode())
70cdf0e10cSrcweir                     if (IsInDropDown())
71cdf0e10cSrcweir                     {
72cdf0e10cSrcweir                         long nReturn = SvtURLBox::Notify(_rNEvt);
73cdf0e10cSrcweir 
74cdf0e10cSrcweir                         // build a system dependent (thus more user readable) file name
75cdf0e10cSrcweir                         OFileNotation aTransformer(m_sPreservedText, OFileNotation::N_URL);
76cdf0e10cSrcweir                         SetText(aTransformer.get(OFileNotation::N_SYSTEM));
77cdf0e10cSrcweir                         Modify();
78cdf0e10cSrcweir 
79cdf0e10cSrcweir                         // Update the pick list
80cdf0e10cSrcweir                         UpdatePickList();
81cdf0e10cSrcweir 
82cdf0e10cSrcweir                         return nReturn;
83cdf0e10cSrcweir                     }
84cdf0e10cSrcweir 
85cdf0e10cSrcweir         return SvtURLBox::Notify(_rNEvt);
86cdf0e10cSrcweir     }
87cdf0e10cSrcweir 
88cdf0e10cSrcweir //.........................................................................
89cdf0e10cSrcweir }   // namespace svt
90cdf0e10cSrcweir //.........................................................................
91