lldndbutton.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:3k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file lldndbutton.h
  3.  * @brief Declaration of the drag-n-drop button.
  4.  *
  5.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2009-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_LLDNDBUTTON_H
  33. #define LL_LLDNDBUTTON_H
  34. #include "llbutton.h"
  35. /**
  36.  * Class representing a button which can handle Drag-And-Drop event.
  37.  *
  38.  * LLDragAndDropButton does not contain any logic to handle Drag-And-Drop itself.
  39.  * Instead it provides drag_drop_handler_t which can be set to the button.
  40.  * Then each Drag-And-Drop will be delegated to this handler without any pre/post processing.
  41.  *
  42.  * All xml parameters are the same as LLButton has.
  43.  *
  44.  * @see LLLandmarksPanel for example of usage of this class.
  45.  */
  46. class LLDragAndDropButton : public LLButton
  47. {
  48. public:
  49. struct Params : public LLInitParam::Block<Params, LLButton::Params>
  50. {
  51. Params();
  52. };
  53. LLDragAndDropButton(Params& params);
  54. typedef boost::function<bool (
  55. S32 /*x*/, S32 /*y*/, MASK /*mask*/, BOOL /*drop*/,
  56. EDragAndDropType /*cargo_type*/,
  57. void* /*cargo_data*/,
  58. EAcceptance* /*accept*/,
  59. std::string& /*tooltip_msg*/)> drag_drop_handler_t;
  60. /**
  61.  * Sets a handler which should process Drag-And-Drop.
  62.  */
  63. void setDragAndDropHandler(drag_drop_handler_t handler) { mDragDropHandler = handler; }
  64. /**
  65.  * Process Drag-And-Drop by delegating the event to drag_drop_handler_t.
  66.  * 
  67.  * @return BOOL - value returned by drag_drop_handler_t if it is set, FALSE otherwise.
  68.  */
  69. /*virtual*/ BOOL handleDragAndDrop(S32 x, S32 y, MASK mask, BOOL drop,
  70. EDragAndDropType cargo_type,
  71. void* cargo_data,
  72. EAcceptance* accept,
  73. std::string& tooltip_msg);
  74. private:
  75. drag_drop_handler_t mDragDropHandler;
  76. };
  77. #endif // LL_LLDNDBUTTON_H