Last change
on this file since 2742 was
2664,
checked in by rgrieder, 16 years ago
|
Merged buildsystem2 to buildsystem3.
Note: Bare merge, just resolved conflicts. To testing, no nothing.
|
-
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.