Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 2710 was 2710, checked in by rgrieder, 15 years ago

Merged buildsystem3 containing buildsystem2 containing Adi's buildsystem branch back to the trunk.
Please update the media directory if you were not using buildsystem3 before.

  • 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.