1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 #ifndef DBAUI_APPICONCONTROL_HXX 24 #define DBAUI_APPICONCONTROL_HXX 25 26 #ifndef _ICNVW_HXX 27 #include <svtools/ivctrl.hxx> 28 #endif 29 #ifndef _TRANSFER_HXX 30 #include <svtools/transfer.hxx> 31 #endif 32 33 34 namespace dbaui 35 { 36 class IControlActionListener; 37 //================================================================== 38 class OApplicationIconControl :public SvtIconChoiceCtrl 39 ,public DropTargetHelper 40 { 41 Point m_aMousePos; 42 IControlActionListener* m_pActionListener; 43 44 public: 45 OApplicationIconControl(Window* _pParent); 46 virtual ~OApplicationIconControl(); 47 setControlActionListener(IControlActionListener * _pListener)48 void setControlActionListener( IControlActionListener* _pListener ) { m_pActionListener = _pListener; } getControlActionListener() const49 IControlActionListener* getControlActionListener( ) const { return m_pActionListener; } 50 51 protected: 52 // DropTargetHelper overridables 53 virtual sal_Int8 AcceptDrop( const AcceptDropEvent& _rEvt ); 54 virtual sal_Int8 ExecuteDrop( const ExecuteDropEvent& _rEvt ); 55 }; 56 } 57 #endif // DBAUI_APPICONCONTROL_HXX 58 59