summaryrefslogtreecommitdiff
path: root/src/lib/ecore_win32/Ecore_Win32.h
blob: 78b8d6ac0703b523c922fa48652979cfbdda9fcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
#ifndef __ECORE_WIN32_H__
#define __ECORE_WIN32_H__

/*
 * DO NOT USE THIS HEADER. IT IS WORK IN PROGRESS. IT IS NOT FINAL AND
 * THE API MAY CHANGE.
 */

/*
#ifndef ECORE_WIN32_WIP_POZEFLKSD
# ifdef _MSC_VER
#  pragma message ("You are using a work in progress API. This API is not stable")
#  pragma message ("and is subject to change. You use this at your own risk.")
# else
#  warning "You are using a work in progress API. This API is not stable"
#  warning "and is subject to change. You use this at your own risk."
# endif
#endif
*/

#include <Eina.h>

#include <ecore_win32_api.h>

#ifdef __cplusplus
extern "C" {
#endif

/**
 * @defgroup Ecore_Win32_Group Ecore_Win32 library
 * @ingroup Ecore
 *
 * @{
 */

/**
 * @typedef Ecore_Win32_Window_State
 * State of a window.
 */
typedef enum
{
   ECORE_WIN32_WINDOW_STATE_UNKNOWN, /**< Unknown state */
   ECORE_WIN32_WINDOW_STATE_ICONIFIED, /**< iconified window */
   ECORE_WIN32_WINDOW_STATE_MODAL, /**< modal dialog box */
   ECORE_WIN32_WINDOW_STATE_STICKY, /**< sticky window */
   ECORE_WIN32_WINDOW_STATE_MAXIMIZED_VERT, /**< maximum vertical sized window */
   ECORE_WIN32_WINDOW_STATE_MAXIMIZED_HORZ, /**< maximum horizontal sized window */
   ECORE_WIN32_WINDOW_STATE_MAXIMIZED, /**< maximum sized window */
   ECORE_WIN32_WINDOW_STATE_SHADED, /**< shaded window */
   ECORE_WIN32_WINDOW_STATE_HIDDEN, /**< hidden (minimized or iconified) window */
   ECORE_WIN32_WINDOW_STATE_FULLSCREEN, /**< fullscreen window */
   ECORE_WIN32_WINDOW_STATE_ABOVE, /**< above window */
   ECORE_WIN32_WINDOW_STATE_BELOW, /**< below window */
   ECORE_WIN32_WINDOW_STATE_DEMANDS_ATTENTION /**< To document */
} Ecore_Win32_Window_State;

/**
 * @typedef Ecore_Win32_Window_Type
 * Type of a window.
 */
typedef enum
{
   ECORE_WIN32_WINDOW_TYPE_DESKTOP, /**< Desktop feature */
   ECORE_WIN32_WINDOW_TYPE_DOCK,    /**< Dock window (should be on top of other windows) */
   ECORE_WIN32_WINDOW_TYPE_TOOLBAR, /**< Toolbar window */
   ECORE_WIN32_WINDOW_TYPE_MENU,    /**< Menu window */
   ECORE_WIN32_WINDOW_TYPE_UTILITY, /**< Small persistent utility window, such as a palette or toolbox */
   ECORE_WIN32_WINDOW_TYPE_SPLASH,  /**< Splash screen window displayed as an application is starting up */
   ECORE_WIN32_WINDOW_TYPE_DIALOG,  /**< Dialog window */
   ECORE_WIN32_WINDOW_TYPE_NORMAL,  /**< Normal top-level window */
   ECORE_WIN32_WINDOW_TYPE_UNKNOWN  /**< Unknown type */
} Ecore_Win32_Window_Type;

/**
 * @typedef Ecore_Win32_Cursor_Shape
 * Shape of a cursor.
 */
typedef enum
{
   ECORE_WIN32_CURSOR_SHAPE_APP_STARTING, /**< Standard arrow and small hourglass */
   ECORE_WIN32_CURSOR_SHAPE_ARROW,        /**< Standard arrow */
   ECORE_WIN32_CURSOR_SHAPE_CROSS,        /**< Crosshair */
   ECORE_WIN32_CURSOR_SHAPE_HAND,         /**< Hand */
   ECORE_WIN32_CURSOR_SHAPE_HELP,         /**< Arrow and question mark */
   ECORE_WIN32_CURSOR_SHAPE_I_BEAM,       /**< I-beam */
   ECORE_WIN32_CURSOR_SHAPE_NO,           /**< Slashed circle */
   ECORE_WIN32_CURSOR_SHAPE_SIZE_ALL,     /**< Four-pointed arrow pointing north, south, east, and west */
   ECORE_WIN32_CURSOR_SHAPE_SIZE_NESW,    /**< Double-pointed arrow pointing northeast and southwest */
   ECORE_WIN32_CURSOR_SHAPE_SIZE_NS,      /**< Double-pointed arrow pointing north and south */
   ECORE_WIN32_CURSOR_SHAPE_SIZE_NWSE,    /**< Double-pointed arrow pointing northwest and southeast */
   ECORE_WIN32_CURSOR_SHAPE_SIZE_WE,      /**< Double-pointed arrow pointing west and east */
   ECORE_WIN32_CURSOR_SHAPE_UP_ARROW,     /**< Vertical arrow */
   ECORE_WIN32_CURSOR_SHAPE_WAIT          /**< Hourglass */
} Ecore_Win32_Cursor_Shape;

/**
 * @typedef Ecore_Win32_Cursor_X11_Shape
 * Shape of an X11 cursor.
 */
typedef enum
{
   ECORE_WIN32_CURSOR_X11_SHAPE_X,
   ECORE_WIN32_CURSOR_X11_SHAPE_ARROW,
   ECORE_WIN32_CURSOR_X11_SHAPE_BASED_ARROW_DOWN,
   ECORE_WIN32_CURSOR_X11_SHAPE_UP,
   ECORE_WIN32_CURSOR_X11_SHAPE_BOAT,
   ECORE_WIN32_CURSOR_X11_SHAPE_BOGOSITY,
   ECORE_WIN32_CURSOR_X11_SHAPE_BOTTOM_LEFT_CORNER,
   ECORE_WIN32_CURSOR_X11_SHAPE_BOTTOM_RIGHT_CORNER,
   ECORE_WIN32_CURSOR_X11_SHAPE_BOTTOM_SIDE,
   ECORE_WIN32_CURSOR_X11_SHAPE_BOTTOM_TEE,
   ECORE_WIN32_CURSOR_X11_SHAPE_BOX_SPIRAL,
   ECORE_WIN32_CURSOR_X11_SHAPE_CENTER_PTR,
   ECORE_WIN32_CURSOR_X11_SHAPE_CIRCLE,
   ECORE_WIN32_CURSOR_X11_SHAPE_CLOCK,
   ECORE_WIN32_CURSOR_X11_SHAPE_COFFEE_MUG,
   ECORE_WIN32_CURSOR_X11_SHAPE_CROSS,
   ECORE_WIN32_CURSOR_X11_SHAPE_CROSS_REVERSE,
   ECORE_WIN32_CURSOR_X11_SHAPE_CROSSHAIR,
   ECORE_WIN32_CURSOR_X11_SHAPE_DIAMOND_CROSS,
   ECORE_WIN32_CURSOR_X11_SHAPE_DOT,
   ECORE_WIN32_CURSOR_X11_SHAPE_DOT_BOX_MASK,
   ECORE_WIN32_CURSOR_X11_SHAPE_DOUBLE_ARROW,
   ECORE_WIN32_CURSOR_X11_SHAPE_DRAFT_LARGE,
   ECORE_WIN32_CURSOR_X11_SHAPE_DRAFT_SMALL,
   ECORE_WIN32_CURSOR_X11_SHAPE_DRAPED_BOX,
   ECORE_WIN32_CURSOR_X11_SHAPE_EXCHANGE,
   ECORE_WIN32_CURSOR_X11_SHAPE_FLEUR,
   ECORE_WIN32_CURSOR_X11_SHAPE_GOBBLER,
   ECORE_WIN32_CURSOR_X11_SHAPE_GUMBY,
   ECORE_WIN32_CURSOR_X11_SHAPE_HAND1,
   ECORE_WIN32_CURSOR_X11_SHAPE_HAND2,
   ECORE_WIN32_CURSOR_X11_SHAPE_HEART,
   ECORE_WIN32_CURSOR_X11_SHAPE_ICON,
   ECORE_WIN32_CURSOR_X11_SHAPE_IRON_CROSS,
   ECORE_WIN32_CURSOR_X11_SHAPE_LEFT_PTR,
   ECORE_WIN32_CURSOR_X11_SHAPE_LEFT_SIDE,
   ECORE_WIN32_CURSOR_X11_SHAPE_LEFT_TEE,
   ECORE_WIN32_CURSOR_X11_SHAPE_LEFTBUTTON,
   ECORE_WIN32_CURSOR_X11_SHAPE_LL_ANGLE,
   ECORE_WIN32_CURSOR_X11_SHAPE_LR_ANGLE,
   ECORE_WIN32_CURSOR_X11_SHAPE_MAN,
   ECORE_WIN32_CURSOR_X11_SHAPE_MIDDLEBUTTON,
   ECORE_WIN32_CURSOR_X11_SHAPE_MOUSE,
   ECORE_WIN32_CURSOR_X11_SHAPE_PENCIL,
   ECORE_WIN32_CURSOR_X11_SHAPE_PIRATE,
   ECORE_WIN32_CURSOR_X11_SHAPE_PLUS,
   ECORE_WIN32_CURSOR_X11_SHAPE_QUESTION_ARROW,
   ECORE_WIN32_CURSOR_X11_SHAPE_RIGHT_PTR,
   ECORE_WIN32_CURSOR_X11_SHAPE_RIGHT_SIDE,
   ECORE_WIN32_CURSOR_X11_SHAPE_RIGHT_TEE,
   ECORE_WIN32_CURSOR_X11_SHAPE_RIGHTBUTTON,
   ECORE_WIN32_CURSOR_X11_SHAPE_RTL_LOGO,
   ECORE_WIN32_CURSOR_X11_SHAPE_SAILBOAT,
   ECORE_WIN32_CURSOR_X11_SHAPE_SB_DOWN_ARROW,
   ECORE_WIN32_CURSOR_X11_SHAPE_SB_H_DOUBLE_ARROW,
   ECORE_WIN32_CURSOR_X11_SHAPE_SB_LEFT_ARROW,
   ECORE_WIN32_CURSOR_X11_SHAPE_SB_RIGHT_ARROW,
   ECORE_WIN32_CURSOR_X11_SHAPE_SB_UP_ARROW,
   ECORE_WIN32_CURSOR_X11_SHAPE_SB_V_DOUBLE_ARROW,
   ECORE_WIN32_CURSOR_X11_SHAPE_SHUTTLE,
   ECORE_WIN32_CURSOR_X11_SHAPE_SIZING,
   ECORE_WIN32_CURSOR_X11_SHAPE_SPIDER,
   ECORE_WIN32_CURSOR_X11_SHAPE_SPRAYCAN,
   ECORE_WIN32_CURSOR_X11_SHAPE_STAR,
   ECORE_WIN32_CURSOR_X11_SHAPE_TARGET,
   ECORE_WIN32_CURSOR_X11_SHAPE_TCROSS,
   ECORE_WIN32_CURSOR_X11_SHAPE_TOP_LEFT_ARROW,
   ECORE_WIN32_CURSOR_X11_SHAPE_TOP_LEFT_CORNER,
   ECORE_WIN32_CURSOR_X11_SHAPE_TOP_RIGHT_CORNER,
   ECORE_WIN32_CURSOR_X11_SHAPE_TOP_SIDE,
   ECORE_WIN32_CURSOR_X11_SHAPE_TOP_TEE,
   ECORE_WIN32_CURSOR_X11_SHAPE_TREK,
   ECORE_WIN32_CURSOR_X11_SHAPE_UL_ANGLE,
   ECORE_WIN32_CURSOR_X11_SHAPE_UMBRELLA,
   ECORE_WIN32_CURSOR_X11_SHAPE_UR_ANGLE,
   ECORE_WIN32_CURSOR_X11_SHAPE_WATCH,
   ECORE_WIN32_CURSOR_X11_SHAPE_XTERM,
} Ecore_Win32_Cursor_X11_Shape;

/**
 * @typedef Ecore_Win32_DnD_State
 * State of a DnD operation.
 */
typedef enum
{
   ECORE_WIN32_DND_EVENT_DRAG_ENTER = 1, /**< Drag enter */
   ECORE_WIN32_DND_EVENT_DRAG_OVER  = 2, /**< Drag over */
   ECORE_WIN32_DND_EVENT_DRAG_LEAVE = 3, /**< Drag leave */
   ECORE_WIN32_DND_EVENT_DROP       = 4  /**< Drop */
} Ecore_Win32_DnD_State;

/**
 * @typedef Ecore_Win32_Window
 * Abstract type for a window.
 */
typedef struct _Ecore_Win32_Window Ecore_Win32_Window;

/**
 * @typedef Ecore_Win32_Cursor
 * Abstract type for a cursor.
 */
typedef void Ecore_Win32_Cursor;


/**
 * @typedef Ecore_Win32_Event_Mouse_In
 * Event sent when the mouse enters the window.
 */
typedef struct _Ecore_Win32_Event_Mouse_In              Ecore_Win32_Event_Mouse_In;

/**
 * @typedef Ecore_Win32_Event_Mouse_Out
 * Event sent when the mouse leaves the window.
 */
typedef struct _Ecore_Win32_Event_Mouse_Out             Ecore_Win32_Event_Mouse_Out;

/**
 * @typedef Ecore_Win32_Event_Window_Focus_In
 * Event sent when the window gets the focus.
 */
typedef struct _Ecore_Win32_Event_Window_Focus_In       Ecore_Win32_Event_Window_Focus_In;

/**
 * @typedef Ecore_Win32_Event_Window_Focus_Out
 * Event sent when the window looses the focus.
 */
typedef struct _Ecore_Win32_Event_Window_Focus_Out      Ecore_Win32_Event_Window_Focus_Out;

/**
 * @typedef Ecore_Win32_Event_Window_Damage
 * Event sent when the window is damaged.
 */
typedef struct _Ecore_Win32_Event_Window_Damage         Ecore_Win32_Event_Window_Damage;

/**
 * @typedef Ecore_Win32_Event_Window_Create
 * Event sent when the window is created.
 */
typedef struct _Ecore_Win32_Event_Window_Create         Ecore_Win32_Event_Window_Create;

/**
 * @typedef Ecore_Win32_Event_Window_Destroy
 * Event sent when the window is destroyed.
 */
typedef struct _Ecore_Win32_Event_Window_Destroy        Ecore_Win32_Event_Window_Destroy;

/**
 * @typedef Ecore_Win32_Event_Window_Hide
 * Event sent when the window is hidden.
 */
typedef struct _Ecore_Win32_Event_Window_Hide           Ecore_Win32_Event_Window_Hide;

/**
 * @typedef Ecore_Win32_Event_Window_Show
 * Event sent when the window is shown.
 */
typedef struct _Ecore_Win32_Event_Window_Show           Ecore_Win32_Event_Window_Show;

/**
 * @typedef Ecore_Win32_Event_Window_Configure
 * Event sent when the window is configured.
 */
typedef struct _Ecore_Win32_Event_Window_Configure      Ecore_Win32_Event_Window_Configure;

/**
 * @typedef Ecore_Win32_Event_Window_Resize
 * Event sent when the window is resized.
 */
typedef struct _Ecore_Win32_Event_Window_Resize         Ecore_Win32_Event_Window_Resize;

/**
 * @typedef Ecore_Win32_Event_Window_Property
 * Event sent when the window properties are changed.
 * @since 1.20
 */
typedef struct _Ecore_Win32_Event_Window_Property         Ecore_Win32_Event_Window_Property;

/**
 * @typedef Ecore_Win32_Event_Window_Delete_Request
 * Event sent when the window is deleted.
 */
typedef struct _Ecore_Win32_Event_Window_Delete_Request Ecore_Win32_Event_Window_Delete_Request;

/**
 * @typedef Ecore_Win32_Event_Selection_Clear
 * Event sent when the content of the clipboard has been removed.
 *
 * @since 1.24
 */
typedef struct _Ecore_Win32_Event_Selection_Clear Ecore_Win32_Event_Selection_Clear;

/**
 * @typedef Ecore_Win32_Event_Selection_Notify
 * Event sent when the content of the clipboard has been added.
 *
 * @since 1.24
 */
typedef struct _Ecore_Win32_Event_Selection_Notify Ecore_Win32_Event_Selection_Notify;

/**
 * @struct _Ecore_Win32_Event_Mouse_In
 * Event sent when the mouse enters the window.
 */
struct _Ecore_Win32_Event_Mouse_In
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   int                 x; /**< The x coordinate where the mouse leaved */
   int                 y; /**< The y coordinate where the mouse entered */
   unsigned long       timestamp; /**< The time the event occurred */
   unsigned int        modifiers; /**< The keyboard modifiers */
};

/**
 * @struct _Ecore_Win32_Event_Mouse_Out
 * Event sent when the mouse leaves the window.
 */
struct _Ecore_Win32_Event_Mouse_Out
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   int                 x; /**< The x coordinate where the mouse leaved */
   int                 y; /**< The y coordinate where the mouse leaved */
   unsigned long       timestamp; /**< The time the event occurred */
   unsigned int        modifiers; /**< The keyboard modifiers */
};

/**
 * @struct _Ecore_Win32_Event_Window_Focus_In
 * Event sent when the window gets the focus.
 */
struct _Ecore_Win32_Event_Window_Focus_In
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   unsigned long       timestamp; /**< The time the event occurred */
};

/**
 * @struct _Ecore_Win32_Event_Window_Focus_Out
 * Event sent when the window looses the focus.
 */
struct _Ecore_Win32_Event_Window_Focus_Out
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   unsigned long       timestamp; /**< The time the event occurred */
};

/**
 * @struct _Ecore_Win32_Event_Window_Damage
 * Event sent when the window is damaged.
 */
struct _Ecore_Win32_Event_Window_Damage
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   int                 x; /**< The x coordinate of the top left corner of the damaged region */
   int                 y; /**< The y coordinate of the top left corner of the damaged region */
   int                 width; /**< The width of the damaged region */
   int                 height; /**< The time the event occurred */
   unsigned long       timestamp; /**< The time the event occurred */
};

/**
 * @struct _Ecore_Win32_Event_Window_Create
 * Event sent when the window is created.
 */
struct _Ecore_Win32_Event_Window_Create
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   unsigned long       timestamp; /**< The time the event occurred */
};

/**
 * @struct _Ecore_Win32_Event_Window_Destroy
 * Event sent when the window is destroyed.
 */
struct _Ecore_Win32_Event_Window_Destroy
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   unsigned long       timestamp; /**< The time the event occurred */
};

/**
 * @struct _Ecore_Win32_Event_Window_Hide
 * Event sent when the window is hidden.
 */
struct _Ecore_Win32_Event_Window_Hide
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   unsigned long       timestamp; /**< The time the event occurred */
};

/**
 * @struct _Ecore_Win32_Event_Window_Show
 * Event sent when the window is shown.
 */
struct _Ecore_Win32_Event_Window_Show
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   unsigned long       timestamp; /**< The time the event occurred */
};

/**
 * @struct _Ecore_Win32_Event_Window_Configure
 * Event sent when the window is configured.
 */
struct _Ecore_Win32_Event_Window_Configure
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   Ecore_Win32_Window *abovewin;
   int                 x; /**< The new x coordinate of the top left corner */
   int                 y; /**< The new y coordinate of the top left corner */
   int                 width; /**< The new width */
   int                 height; /**< The new height */
   unsigned long       timestamp; /**< The time the event occurred */
};

/**
 * @struct _Ecore_Win32_Event_Window_Resize
 * Event sent when the window is resized.
 */
struct _Ecore_Win32_Event_Window_Resize
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   int                 width; /**< The new width */
   int                 height; /**< The new height */
   unsigned long       timestamp; /**< The time the event occurred */
};

/**
 * @struct _Ecore_Win32_Event_Window_Property
 * Event sent when the window properties are changed.
 * @since 1.20
 */
struct _Ecore_Win32_Event_Window_Property
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   unsigned long       timestamp; /**< The time the event occurred */
};

/**
 * @struct _Ecore_Win32_Event_Window_Delete_Request
 * Event sent when the window is deleted.
 */
struct _Ecore_Win32_Event_Window_Delete_Request
{
   Ecore_Win32_Window *window; /**< The window that received the event */
   unsigned long       timestamp; /**< The time the event occurred */
};

/**
 * @struct _Ecore_Win32_Event_Selection_Clear
 * Event sent when the content of the clipboard has been removed.
 *
 * @since 1.24
 */
struct _Ecore_Win32_Event_Selection_Clear
{
   Ecore_Win32_Window   *window; /**< The window that received the event */
   unsigned long         timestamp; /**< The time the event occurred */
   char                 *selection; /**< The type of the selection */
};

/**
 * @struct _Ecore_Win32_Event_Selection_Notify
 * Event sent when the content of the clipboard has been added.
 *
 * @since 1.24
 */
struct _Ecore_Win32_Event_Selection_Notify
{
   Ecore_Win32_Window   *window; /**< The window that received the event */
   unsigned long         timestamp; /**< The time the event occurred */
   char                 *selection; /**< The type of the selection */
   void                 *data; /**< The data of the selection */
};

/**
 * @typedef Ecore_Win32_Dnd_DropTarget_Callback
 * Callback type for Drop operations. See ecore_win32_dnd_register_drop_target().
 */
typedef int (*Ecore_Win32_Dnd_DropTarget_Callback)(void *window, int event, int pt_x, int pt_y, void *data, int size);

ECORE_WIN32_API extern int ECORE_WIN32_EVENT_MOUSE_IN; /**< Ecore_Event for the #Ecore_Win32_Event_Mouse_In event */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_MOUSE_OUT; /**< Ecore_Event for the #Ecore_Win32_Event_Mouse_Out event */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_WINDOW_FOCUS_IN; /**< Ecore_Event for the #Ecore_Win32_Event_Window_Focus_In event */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_WINDOW_FOCUS_OUT; /**< Ecore_Event for the #Ecore_Win32_Event_Window_Focus_Out event */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_WINDOW_DAMAGE; /**< Ecore_Event for the Ecore_Win32_Event_Damage event */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_WINDOW_CREATE; /**< Ecore_Event for the Ecore_Win32_Event_Create event */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_WINDOW_DESTROY; /**< Ecore_Event for the Ecore_Win32_Event_Destroy event */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_WINDOW_HIDE; /**< Ecore_Event for the Ecore_Win32_Event_Hide event */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_WINDOW_SHOW; /**< Ecore_Event for the Ecore_Win32_Event_Show event */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_WINDOW_CONFIGURE; /**< Ecore_Event for the Ecore_Win32_Event_Configure event */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_WINDOW_RESIZE; /**< Ecore_Event for the Ecore_Win32_Event_Resize event */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_WINDOW_PROPERTY; /**< Ecore_Event for the Ecore_Win32_Event_Property event @since 1.20 */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_WINDOW_DELETE_REQUEST; /**< Ecore_Event for the #Ecore_Win32_Event_Window_Delete_Request event */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_SELECTION_CLEAR; /**< Ecore_Event for the #Ecore_Win32_Event_Selection_Clear event @since 1.16 */
ECORE_WIN32_API extern int ECORE_WIN32_EVENT_SELECTION_NOTIFY; /**< Ecore_Event for the #Ecore_Win32_Event_Selection_Notify event @since 1.16 */


/* Core */

ECORE_WIN32_API int           ecore_win32_init();
ECORE_WIN32_API int           ecore_win32_shutdown();
ECORE_WIN32_API int           ecore_win32_screen_depth_get();
ECORE_WIN32_API void          ecore_win32_double_click_time_set(double t);
ECORE_WIN32_API double        ecore_win32_double_click_time_get(void);
ECORE_WIN32_API unsigned long ecore_win32_current_time_get(void);

/* Window */

ECORE_WIN32_API Ecore_Win32_Window *ecore_win32_window_new(Ecore_Win32_Window *parent,
                                                int                 x,
                                                int                 y,
                                                int                 width,
                                                int                 height);
ECORE_WIN32_API Ecore_Win32_Window *ecore_win32_window_override_new(Ecore_Win32_Window *parent,
                                                         int                 x,
                                                         int                 y,
                                                         int                 width,
                                                         int                 height);

ECORE_WIN32_API void ecore_win32_window_free(Ecore_Win32_Window *window);

ECORE_WIN32_API void *ecore_win32_window_hwnd_get(Ecore_Win32_Window *window);

ECORE_WIN32_API void ecore_win32_window_move(Ecore_Win32_Window *window,
                                  int                 x,
                                  int                 y);

ECORE_WIN32_API void ecore_win32_window_resize(Ecore_Win32_Window *window,
                                    int                 width,
                                    int                 height);

ECORE_WIN32_API void ecore_win32_window_move_resize(Ecore_Win32_Window *window,
                                         int                 x,
                                         int                 y,
                                         int                 width,
                                         int                 height);

ECORE_WIN32_API void ecore_win32_window_geometry_get(Ecore_Win32_Window *window,
                                          int                *x,
                                          int                *y,
                                          int                *width,
                                          int                *height);

ECORE_WIN32_API void ecore_win32_window_size_get(Ecore_Win32_Window *window,
                                      int                *width,
                                      int                *height);

ECORE_WIN32_API void ecore_win32_window_size_min_set(Ecore_Win32_Window *window,
                                          int                 min_width,
                                          int                 min_height);

ECORE_WIN32_API void ecore_win32_window_size_min_get(Ecore_Win32_Window *window,
                                          int                *min_width,
                                          int                *min_height);

ECORE_WIN32_API void ecore_win32_window_size_max_set(Ecore_Win32_Window *window,
                                          int                 max_width,
                                          int                 max_height);

ECORE_WIN32_API void ecore_win32_window_size_max_get(Ecore_Win32_Window *window,
                                          int                *max_width,
                                          int                *max_height);

ECORE_WIN32_API void ecore_win32_window_size_base_set(Ecore_Win32_Window *window,
                                           int                 base_width,
                                           int                 base_height);

ECORE_WIN32_API void ecore_win32_window_size_base_get(Ecore_Win32_Window *window,
                                           int                *base_width,
                                           int                *base_height);

ECORE_WIN32_API void ecore_win32_window_size_step_set(Ecore_Win32_Window *window,
                                           int                 step_width,
                                           int                 step_height);

ECORE_WIN32_API void ecore_win32_window_size_step_get(Ecore_Win32_Window *window,
                                           int                *step_width,
                                           int                *step_height);

ECORE_WIN32_API void ecore_win32_window_show(Ecore_Win32_Window *window);

ECORE_WIN32_API void ecore_win32_window_hide(Ecore_Win32_Window *window);

ECORE_WIN32_API void ecore_win32_window_raise(Ecore_Win32_Window *window);

ECORE_WIN32_API void ecore_win32_window_lower(Ecore_Win32_Window *window);

ECORE_WIN32_API void ecore_win32_window_title_set(Ecore_Win32_Window *window,
                                       const char         *title);

ECORE_WIN32_API void ecore_win32_window_focus(Ecore_Win32_Window *window);

ECORE_WIN32_API void *ecore_win32_window_focus_get(void);

ECORE_WIN32_API void ecore_win32_window_iconified_set(Ecore_Win32_Window *window,
                                           Eina_Bool           on);

ECORE_WIN32_API void ecore_win32_window_borderless_set(Ecore_Win32_Window *window,
                                            Eina_Bool           on);

ECORE_WIN32_API void ecore_win32_window_fullscreen_set(Ecore_Win32_Window *window,
                                            Eina_Bool           on);

ECORE_WIN32_API void ecore_win32_window_cursor_set(Ecore_Win32_Window *window,
                                        Ecore_Win32_Cursor *cursor);

ECORE_WIN32_API void ecore_win32_window_state_set(Ecore_Win32_Window       *window,
                                       Ecore_Win32_Window_State *state,
                                       unsigned int              num);

ECORE_WIN32_API void ecore_win32_window_state_get(Ecore_Win32_Window        *window,
                                       Ecore_Win32_Window_State **state,
                                       unsigned int              *num);

ECORE_WIN32_API void ecore_win32_window_state_request_send(Ecore_Win32_Window      *window,
                                                Ecore_Win32_Window_State state,
                                                unsigned int             set);

ECORE_WIN32_API void ecore_win32_window_type_set(Ecore_Win32_Window      *window,
                                      Ecore_Win32_Window_Type  type);

/* Cursor */

ECORE_WIN32_API Ecore_Win32_Cursor *ecore_win32_cursor_new(const void *pixels_and,
                                                const void *pixels_xor,
                                                int         width,
                                                int         height,
                                                int         hot_x,
                                                int         hot_y);

ECORE_WIN32_API void                ecore_win32_cursor_free(Ecore_Win32_Cursor *cursor);

ECORE_WIN32_API Ecore_Win32_Cursor *ecore_win32_cursor_shaped_new(Ecore_Win32_Cursor_Shape shape);

ECORE_WIN32_API const Ecore_Win32_Cursor *ecore_win32_cursor_x11_shaped_get(Ecore_Win32_Cursor_X11_Shape shape);

ECORE_WIN32_API void                ecore_win32_cursor_size_get(int *width, int *height);

ECORE_WIN32_API void                ecore_win32_cursor_show(Eina_Bool show);



/* Drag and drop */
ECORE_WIN32_API int       ecore_win32_dnd_init();
ECORE_WIN32_API int       ecore_win32_dnd_shutdown();
ECORE_WIN32_API Eina_Bool ecore_win32_dnd_begin(const char *data,
                                     int         size);
ECORE_WIN32_API Eina_Bool ecore_win32_dnd_register_drop_target(Ecore_Win32_Window                 *window,
                                                    Ecore_Win32_Dnd_DropTarget_Callback callback);
ECORE_WIN32_API void      ecore_win32_dnd_unregister_drop_target(Ecore_Win32_Window *window);

/* Clipboard */

/**
 * @brief Set data to the clipboard.
 *
 * @param[in] window The window that owns the clipboard.
 * @param[in] data The data to set.
 * @param[in] size The size of the data.
 * @param[in] mime_type The mime type describing the data in the clipboard.
 * @return #EINA_TRUE on success, #EINA_FALSE otherwise.
 *
 * This function sets @p data of size @p size in the clipboard owned by
 * @p window. This function returns #EINA_TRUE on success, and
 * #EINA_FALSE otherwise. If @p window or @p data are @c NULL, or @p size
 * is less than or equal to 0, this function returns #EINA_FALSE.
 *
 * @since 1.24
 */
ECORE_WIN32_API Eina_Bool ecore_win32_clipboard_set(const Ecore_Win32_Window *window,
                                         const void *data,
                                         size_t size,
                                         const char *mime_type);

/**
 * @brief Get data from the clipboard.
 *
 * @param[in] window The window that owns the clipboard.
 * @param[out] size The size of the data.
 * @param[in] mime_type The mime type describing the data in the clipboard.
 * @return The retrieved data.
 *
 * This function gets data of size @p size from the clipboard owned by
 * @p window. @p size must be a valid buffer.
 *
 * @since 1.24
 */
ECORE_WIN32_API void * ecore_win32_clipboard_get(const Ecore_Win32_Window *window,
                                         size_t *size,
                                         const char *mime_type);

/**
 * @brief Cleat the clipboard.
 *
 * @param[in] window The window that owns the clipboard.
 *
 * This function clears the clipboard owned by @p window. This
 * function returns #EINA_TRUE on success, and #EINA_FALSE otherwise.
 * If @p window is @c NULL, this function returns #EINA_FALSE.
 *
 * @since 1.24
 */
ECORE_WIN32_API void ecore_win32_clipboard_clear(const Ecore_Win32_Window *window);

/**
 * @typedef Ecore_Win32_Monitor
 * Desktop geometry and dpi of a monitor.
 *
 * @since 1.20
 */
typedef struct
{
   Eina_Rectangle desktop; /**< Coordinates and size of the desktop */
   struct
   {
      unsigned int x; /**< DPI along the X axis */
      unsigned int y; /**< DPI along the Y axis */
   } dpi;
} Ecore_Win32_Monitor;

/**
 * @brief Return the coordinates, sizes DPI's of the monitors.
 *
 * @return An iterator of an Eina list, with #Ecore_Win32_Monitor
 * as data.
 *
 * This function returns the coordinates, sizes and DPI's of the
 * monitors as an iterator of a list of #Ecore_Win32_Monitor.
 *
 * @since 1.20
 */
ECORE_WIN32_API Eina_Iterator *ecore_win32_monitors_get(void);

/**
 * @}
 */

#ifdef __cplusplus
}
#endif

#endif /* __ECORE_WIN32_H__ */