Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/external/ceguilua/ceguilua-0.5.0/package/elements/DragContainer.pkg @ 5738

Last change on this file since 5738 was 5738, checked in by landauf, 15 years ago

merged libraries2 back to trunk

  • Property svn:eol-style set to native
File size: 687 bytes
Line 
1/***********************************************************************
2        DragContainer
3***********************************************************************/
4class DragContainer : public Window
5{
6        bool isDraggingEnabled() const;
7        void setDraggingEnabled(bool setting);
8
9        bool isBeingDragged() const;
10
11        float getPixelDragThreshold() const;
12        void setPixelDragThreshold(float pixels);
13
14        float getDragAlpha() const;
15        void setDragAlpha(float alpha);
16
17        const Image* getDragCursorImage() const;
18        void setDragCursorImage(MouseCursorImage image);
19        void setDragCursorImage(string imageset, string image);
20        void setDragCursorImage(const Image* image);
21
22        Window* getCurrentDropTarget() const;
23};
Note: See TracBrowser for help on using the repository browser.