Crazy Eddie's GUI System
0.8.4
Main Page
Related Pages
Namespaces
Classes
Files
File List
All
Classes
Namespaces
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Pages
DragContainer.h
1
/***********************************************************************
2
created: 14/2/2005
3
author: Paul D Turner
4
*************************************************************************/
5
/***************************************************************************
6
* Copyright (C) 2004 - 2006 Paul D Turner & The CEGUI Development Team
7
*
8
* Permission is hereby granted, free of charge, to any person obtaining
9
* a copy of this software and associated documentation files (the
10
* "Software"), to deal in the Software without restriction, including
11
* without limitation the rights to use, copy, modify, merge, publish,
12
* distribute, sublicense, and/or sell copies of the Software, and to
13
* permit persons to whom the Software is furnished to do so, subject to
14
* the following conditions:
15
*
16
* The above copyright notice and this permission notice shall be
17
* included in all copies or substantial portions of the Software.
18
*
19
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
22
* IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
23
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
24
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
25
* OTHER DEALINGS IN THE SOFTWARE.
26
***************************************************************************/
27
#ifndef _CEGUIDragContainer_h_
28
#define _CEGUIDragContainer_h_
29
30
#include "../Window.h"
31
#include "../WindowFactory.h"
32
33
#if defined(_MSC_VER)
34
# pragma warning(push)
35
# pragma warning(disable : 4251)
36
#endif
37
38
// Start of CEGUI namespace section
39
namespace
CEGUI
40
{
45
class
CEGUIEXPORT
DragContainer
:
public
Window
46
{
47
public
:
48
/*************************************************************************
49
Constants
50
*************************************************************************/
51
static
const
String
WidgetTypeName
;
52
static
const
String
EventNamespace
;
53
58
static
const
String
EventDragStarted
;
64
static
const
String
EventDragEnded
;
70
static
const
String
EventDragPositionChanged
;
76
static
const
String
EventDragEnabledChanged
;
82
static
const
String
EventDragAlphaChanged
;
88
static
const
String
EventDragMouseCursorChanged
;
94
static
const
String
EventDragThresholdChanged
;
101
static
const
String
EventDragDropTargetChanged
;
102
103
/*************************************************************************
104
Object Construction and Destruction
105
*************************************************************************/
110
DragContainer
(
const
String
& type,
const
String
& name);
111
116
virtual
~
DragContainer
(
void
);
117
118
/*************************************************************************
119
Public Interface to DragContainer
120
*************************************************************************/
129
bool
isDraggingEnabled(
void
)
const
;
130
142
void
setDraggingEnabled(
bool
setting);
143
152
bool
isBeingDragged(
void
)
const
;
153
165
float
getPixelDragThreshold(
void
)
const
;
166
181
void
setPixelDragThreshold(
float
pixels);
182
191
float
getDragAlpha(
void
)
const
;
192
208
void
setDragAlpha(
float
alpha);
209
218
const
Image
* getDragCursorImage(
void
)
const
;
219
234
void
setDragCursorImage(
const
Image
* image);
235
252
void
setDragCursorImage(
const
String
& name);
253
265
Window
* getCurrentDropTarget(
void
)
const
;
266
275
bool
isStickyModeEnabled()
const
;
276
285
void
setStickyModeEnabled(
bool
setting);
286
303
bool
pickUp(
const
bool
force_sticky =
false
);
304
318
void
setFixedDragOffset(
const
UVector2
& offset);
319
333
const
UVector2
& getFixedDragOffset()
const
;
334
345
void
setUsingFixedDragOffset(
const
bool
enable);
346
357
bool
isUsingFixedDragOffset()
const
;
358
359
// Window class overrides.
360
void
getRenderingContext_impl(
RenderingContext
& ctx)
const
;
361
362
protected
:
363
/*************************************************************************
364
Protected Implementation Methods
365
*************************************************************************/
378
bool
isDraggingThresholdExceeded(
const
Vector2f
& local_mouse);
379
387
void
initialiseDragging(
void
);
388
399
void
doDragging(
const
Vector2f
& local_mouse);
400
405
void
updateActiveMouseCursor(
void
)
const
;
406
407
/*************************************************************************
408
Overrides of methods in Window
409
*************************************************************************/
410
411
/*************************************************************************
412
Overrides for Event handler methods
413
*************************************************************************/
414
virtual
void
onMouseButtonDown(
MouseEventArgs
& e);
415
virtual
void
onMouseButtonUp(
MouseEventArgs
& e);
416
virtual
void
onMouseMove(
MouseEventArgs
& e);
417
virtual
void
onCaptureLost(
WindowEventArgs
& e);
418
virtual
void
onAlphaChanged(
WindowEventArgs
& e);
419
virtual
void
onClippingChanged(
WindowEventArgs
& e);
/*Window::drawSelf(z);*/
420
virtual
void
onMoved(
ElementEventArgs
& e);
421
422
/*************************************************************************
423
New Event handler methods
424
*************************************************************************/
435
virtual
void
onDragStarted(
WindowEventArgs
& e);
436
447
virtual
void
onDragEnded(
WindowEventArgs
& e);
448
459
virtual
void
onDragPositionChanged(
WindowEventArgs
& e);
460
469
virtual
void
onDragEnabledChanged(
WindowEventArgs
& e);
470
479
virtual
void
onDragAlphaChanged(
WindowEventArgs
& e);
480
489
virtual
void
onDragMouseCursorChanged(
WindowEventArgs
& e);
490
499
virtual
void
onDragThresholdChanged(
WindowEventArgs
& e);
500
516
virtual
void
onDragDropTargetChanged(
DragDropEventArgs
& e);
517
518
/*************************************************************************
519
Data
520
*************************************************************************/
521
bool
d_draggingEnabled
;
522
bool
d_leftMouseDown
;
523
bool
d_dragging
;
524
UVector2
d_dragPoint
;
525
UVector2
d_startPosition
;
526
float
d_dragThreshold
;
527
float
d_dragAlpha
;
528
float
d_storedAlpha
;
529
bool
d_storedClipState
;
530
Window
*
d_dropTarget
;
531
const
Image
*
d_dragCursorImage
;
532
bool
d_dropflag
;
533
534
bool
d_stickyMode
;
536
bool
d_pickedUp
;
538
bool
d_usingFixedDragOffset
;
540
UVector2
d_fixedDragOffset
;
541
542
private
:
543
/*************************************************************************
544
Implementation methods
545
*************************************************************************/
553
void
addDragContainerProperties(
void
);
554
};
555
556
}
// End of CEGUI namespace section
557
558
559
#if defined(_MSC_VER)
560
# pragma warning(pop)
561
#endif
562
563
#endif // end of guard _CEGUIDragContainer_h_
cegui
include
CEGUI
widgets
DragContainer.h
Generated by
1.8.3.1