Last change
on this file since 7107 was
5781,
checked in by rgrieder, 15 years ago
|
Reverted trunk again. We might want to find a way to delete these revisions again (x3n's changes are still available as diff in the commit mails).
|
-
Property svn:eol-style set to
native
|
File size:
687 bytes
|
Line | |
---|
1 | /*********************************************************************** |
---|
2 | DragContainer |
---|
3 | ***********************************************************************/ |
---|
4 | class 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.