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
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
|
/*
* API.C
* GizmoBar Version 1.00, Win32 version August 1993
*
* API functions affecting a GizmoBar and a message processing function to
* handle the equivalent called through messages.
*
* Copyright (c)1993 Microsoft Corporation, All Rights Reserved
*
* Kraig Brockschmidt, Software Design Engineer
* Microsoft Systems Developer Relations
*
* Internet : kraigb@microsoft.com
* Compuserve: >INTERNET:kraigb@microsoft.com
*/
#include <windows.h>
#include "gizmoint.h"
/*
* GBMessageHandler
*
* Purpose:
* Processes control messages that are equivalents of available
* control API. The data passed with these messages is simply
* extracted from structures and passed as parameters to their
* equivalent function.
*
* Parameters:
* <Standard Message Parameters> plus
* pGB LPGIZMOBAR providing control-specific data.
*
* Return Value:
* LRESULT Return value from equivalent API function.
*/
LRESULT GBMessageHandler(HWND hWnd, UINT iMsg, WPARAM wParam
, LPARAM lParam, LPGIZMOBAR pGB)
{
LRESULT lRet=0L;
LPCREATEGIZMO pCG;
LPGBMSG pMsg;
LPGBGETTEXT pGT;
LPGBGETINT pGI;
LPGBSETINT pSI;
if (NULL==pGB)
return 0L;
switch (iMsg)
{
case GBM_HWNDASSOCIATESET:
lRet=(LRESULT)(UINT)GBHwndAssociateSet(hWnd, (HWND)wParam);
break;
case GBM_HWNDASSOCIATEGET:
lRet=(LRESULT)(UINT)GBHwndAssociateGet(hWnd);
break;
case GBM_GIZMOADD:
pCG=(LPCREATEGIZMO)lParam;
lRet=(LRESULT)GBGizmoAdd(pCG->hWndParent, pCG->iType, pCG->iGizmo
, pCG->uID, pCG->dx, pCG->dy, pCG->pszText, pCG->hBmp
, pCG->iImage, pCG->uState);
break;
case GBM_GIZMOREMOVE:
lRet=(LRESULT)GBGizmoRemove(hWnd, wParam);
break;
case GBM_GIZMOSENDMESSAGE:
pMsg=(LPGBMSG)lParam;
lRet=GBGizmoSendMessage(hWnd, wParam, pMsg->iMsg, pMsg->wParam, pMsg->lParam);
break;
case GBM_GIZMOSHOW:
lRet=(LRESULT)GBGizmoShow(hWnd, wParam, (BOOL)LOWORD(lParam));
break;
case GBM_GIZMOENABLE:
lRet=(LRESULT)GBGizmoEnable(hWnd, wParam, (BOOL)LOWORD(lParam));
break;
case GBM_GIZMOCHECK:
lRet=(LRESULT)GBGizmoCheck(hWnd, wParam, (BOOL)LOWORD(lParam));
break;
case GBM_GIZMOFOCUSSET:
lRet=(LRESULT)GBGizmoFocusSet(hWnd, wParam);
break;
case GBM_GIZMOEXIST:
lRet=(LRESULT)GBGizmoExist(hWnd, wParam);
break;
case GBM_GIZMOTYPEGET:
lRet=(LRESULT)GBGizmoTypeGet(hWnd, wParam);
break;
case GBM_GIZMODATASET:
lRet=(LRESULT)GBGizmoDataSet(hWnd, wParam, (DWORD)lParam);
break;
case GBM_GIZMODATAGET:
lRet=(LRESULT)GBGizmoDataGet(hWnd, wParam);
break;
case GBM_GIZMONOTIFYSET:
lRet=(LRESULT)GBGizmoNotifySet(hWnd, wParam, (BOOL)LOWORD(lParam));
break;
case GBM_GIZMONOTIFYGET:
lRet=(LRESULT)GBGizmoNotifyGet(hWnd, wParam);
break;
case GBM_GIZMOTEXTGET:
pGT=(LPGBGETTEXT)lParam;
lRet=(LRESULT)GBGizmoTextGet(hWnd, wParam, pGT->psz, pGT->cch);
break;
case GBM_GIZMOTEXTSET:
GBGizmoTextSet(hWnd, wParam, (LPTSTR)lParam);
break;
case GBM_GIZMOINTGET:
pGI=(LPGBGETINT)lParam;
lRet=(LRESULT)GBGizmoIntGet(hWnd, wParam, &pGI->fSuccess, pGI->fSigned);
break;
case GBM_GIZMOINTSET:
pSI=(LPGBSETINT)lParam;
GBGizmoIntSet(hWnd, wParam, pSI->uValue, pSI->fSigned);
break;
default:
break;
}
return lRet;
}
/*
* PGizmoFromHwndID
*
* Purpose:
* Retrieves the pGizmo for the given GizmoBar and the gizmo ID.
*
* Parameters:
* hWnd HWND of a GizmoBar.
* uID UINT gizmo identifier.
*
* Return Value:
* LPGIZMO NULL if the gizmo does not exist or hWnd is invalid.
* non-NULL LPGIZMO otherwise.
*/
LPGIZMO PGizmoFromHwndID(HWND hWnd, UINT uID)
{
LPGIZMOBAR pGB;
if (!IsWindow(hWnd))
return FALSE;
pGB=(LPGIZMOBAR)GetWindowLong(hWnd, GBWL_STRUCTURE);
if (NULL==pGB)
return FALSE;
return GizmoPFind(&pGB->pGizmos, uID);
}
/*
* GBHwndAssociateSet
*
* Purpose:
* Changes the associate window of a GizmoBar.
*
* Parameters:
* hWnd HWND of the control window.
*
* Set Parameters:
* hWndAssociate HWND of new associate.
*
* Return Value:
* HWND Handle of previous associate.
*/
HWND WINAPI GBHwndAssociateSet(HWND hWnd, HWND hWndNew)
{
HWND hWndOld=NULL;
LPGIZMOBAR pGB;
pGB=(LPGIZMOBAR)GetWindowLong(hWnd, GBWL_STRUCTURE);
if (NULL!=pGB)
{
hWndOld=pGB->hWndAssociate;
pGB->hWndAssociate=hWndNew;
if (NULL!=hWndOld)
SendCommand(hWndOld, pGB->uID, GBN_ASSOCIATELOSS, hWnd);
if (NULL!=hWndNew)
SendCommand(hWndNew, pGB->uID, GBN_ASSOCIATEGAIN, hWnd);
}
return hWndOld;
}
/*
* GBHwndAssociateGet
*
* Purpose:
* Retrieves the associate window of a GizmoBar
*
* Parameters:
* hWnd HWND of the control window.
*
* Set Parameters:
* hWndAssociate HWND of new associate.
*
* Return Value:
* HWND Handle of current associate.
*/
HWND WINAPI GBHwndAssociateGet(HWND hWnd)
{
HWND hWndOld=NULL;
LPGIZMOBAR pGB;
pGB=(LPGIZMOBAR)GetWindowLong(hWnd, GBWL_STRUCTURE);
if (NULL!=pGB)
hWndOld=pGB->hWndAssociate;
return hWndOld;
}
/*
* GBGizmoAdd
*
* Purpose:
* Creates a new gizmo on the GizmoBar. Subsequent operations should
* be done using the identifier, uID, for this gizmo.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* iType UINT type of the gizmo to create.
* iGizmo UINT position (zero-based) at which to place the gizmo.
* uID UINT identifier for WM_COMMAND from this gizmo.
* dx, dy UINT dimensions of the gizmo.
* pszText LPTSTR initial text for edit, list, combo, and text gizmos.
* hBitmap HBITMAP for gizmos of the button types (COMMAND or
* ATTRIBUTE) specifies a source bitmap from which the
* button image is taken.
* iImage UINT index into hBitmap for the image for this button.
* uState UINT initial state of the gizmo.
*
* Return Value:
* BOOL TRUE if creation succeeded, FALSE otherwise.
*/
BOOL WINAPI GBGizmoAdd(HWND hWnd, UINT iType, UINT iGizmo, UINT uID
, UINT dx, UINT dy, LPTSTR pszText, HBITMAP hBmp, UINT iImage, UINT uState)
{
BOOL fSuccess;
LPGIZMOBAR pGB;
LPGIZMO pGizmo;
if (!IsWindow(hWnd))
return FALSE;
pGB=(LPGIZMOBAR)GetWindowLong(hWnd, GBWL_STRUCTURE);
if (NULL==pGB)
return FALSE;
/*
* This automatically creates the windows, allocates structures, includes
* the gizmo in pGB->pGizmos, and so forth.
*/
pGizmo=GizmoPAllocate((LPINT)&fSuccess, &pGB->pGizmos, hWnd, iType
, iGizmo, uID, dx, dy, pszText, hBmp, iImage, uState);
if (fSuccess)
{
if (NULL!=pGB->hWndAssociate)
SendCommand(pGB->hWndAssociate,GBN_GIZMOADDED, pGB->uID, hWnd);
InvalidateRect(hWnd, NULL, TRUE);
UpdateWindow(hWnd);
}
else
GizmoPFree(&pGB->pGizmos, pGizmo);
return fSuccess;
}
/*
* GBGizmoRemove
*
* Purpose:
* Removes an existing gizmo from the GizmoBar.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* uID UINT identifier for this gizmo.
*
* Return Value:
* BOOL TRUE if deletion succeeded, FALSE otherwise.
*/
BOOL WINAPI GBGizmoRemove(HWND hWnd, UINT uID)
{
LPGIZMOBAR pGB;
LPGIZMO pGizmo;
if (!IsWindow(hWnd))
return FALSE;
pGB=(LPGIZMOBAR)GetWindowLong(hWnd, GBWL_STRUCTURE);
if (NULL==pGB)
return FALSE;
pGizmo=GizmoPFind(&pGB->pGizmos, uID);
if (NULL==pGizmo)
return FALSE;
GizmoPFree(&pGB->pGizmos, pGizmo);
if (NULL!=pGB->hWndAssociate)
SendCommand(pGB->hWndAssociate, GBN_GIZMOREMOVED, pGB->uID, hWnd);
InvalidateRect(hWnd, NULL, TRUE);
UpdateWindow(hWnd);
return TRUE;
}
/*
* GBGizmoSendMessage
*
* Purpose:
* Implements the equivalent of SendMessage to a gizmo in the
* GizmoBar. Separators, command buttons, and attribute buttons
* do not accept messages.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* uID UINT identifier of the gizmo to affect.
* iMsg UINT message to send.
* wParam WPARAM of the message.
* lParam LPARAM of the message.
*
* Return Value:
* LRESULT Return value from the message. 0L if the
* gizmo does not accept messages.
*/
LRESULT WINAPI GBGizmoSendMessage(HWND hWnd, UINT uID, UINT iMsg
, WPARAM wParam, LPARAM lParam)
{
LPGIZMO pGizmo;
LONG lRet=0L;
pGizmo=PGizmoFromHwndID(hWnd, uID);
if (NULL!=pGizmo && NULL!=pGizmo->hWnd)
lRet=SendMessage(pGizmo->hWnd, iMsg, wParam, lParam);
return lRet;
}
/*
* GBGizmoShow
*
* Purpose:
* Shows or hides a control, adjusting the positions of all others
* to make room for or reuse the space for this control.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* uID UINT identifier of the gizmo to affect.
* fShow BOOL TRUE to show the gizmo, FALSE to hide it.
*
* Return Value:
* BOOL TRUE if the function was successful, FALSE otherwise.
*/
BOOL WINAPI GBGizmoShow(HWND hWnd, UINT uID, BOOL fShow)
{
BOOL fRet=FALSE;
LPGIZMO pGizmo;
pGizmo=PGizmoFromHwndID(hWnd, uID);
if (NULL!=pGizmo)
{
if (fShow && pGizmo->fHidden)
{
if (NULL!=pGizmo->hWnd)
ShowWindow(pGizmo->hWnd, SW_SHOWNORMAL);
GizmosExpand(pGizmo);
}
if (!fShow && !pGizmo->fHidden)
{
if (NULL!=pGizmo->hWnd)
ShowWindow(pGizmo->hWnd, SW_HIDE);
GizmosCompact(pGizmo);
}
//This will be right even if we didn't change anything.
pGizmo->fHidden=!fShow;
}
InvalidateRect(hWnd, NULL, TRUE);
UpdateWindow(hWnd);
return fRet;
}
/*
* GBGizmoEnable
*
* Purpose:
* Enables or disables a control on the GizmoBar.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* uID UINT identifier of the gizmo to affect.
* fEnable BOOL TRUE to enable the gizmo, FALSE otherwise.
*
* Return Value:
* BOOL TRUE if the gizmo was previously disabled, FALSE
* otherwise.
*/
BOOL WINAPI GBGizmoEnable(HWND hWnd, UINT uID, BOOL fEnable)
{
LPGIZMO pGizmo;
BOOL fRet=FALSE;
pGizmo=PGizmoFromHwndID(hWnd, uID);
if (NULL==pGizmo)
return FALSE;
fRet=(BOOL)(BUTTONGROUP_DISABLED & pGizmo->uState);
//Use windows to enable or disable window gizmos
if (NULL!=pGizmo->hWnd)
EnableWindow(pGizmo->hWnd, fEnable);
else
{
//If we're not down, command and attribute buttons act the same.
if (!(BUTTONGROUP_DOWN & pGizmo->uState))
GizmoPStateSet(hWnd, pGizmo, fEnable ? COMMANDBUTTON_UP : COMMANDBUTTON_DISABLED);
else
{
//Attribute buttons are a little more sensitive with DOWNDISABLED
GizmoPStateSet(hWnd, pGizmo
, fEnable ? ATTRIBUTEBUTTON_DOWN : ATTRIBUTEBUTTON_DOWNDISABLED);
}
}
return fRet;
}
/*
* GBGizmoCheck
*
* Purpose:
* Checks or unchecks an attribute button in the GizmoBar. If the
* gizmo is part of a group of mutually exclusive attributes, then
* other gizmos are unchecked when this one is checked. If this is
* the only one checked in these circumstances, this function is a NOP.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* uID UINT identifier of the gizmo to affect.
* fCheck BOOL TRUE to check this gizmo, FALSE to uncheck.
*
* Return Value:
* BOOL TRUE if the change took place. FALSE otherwise.
*/
BOOL WINAPI GBGizmoCheck(HWND hWnd, UINT uID, BOOL fCheck)
{
LPGIZMOBAR pGB;
LPGIZMO pGizmo;
if (!IsWindow(hWnd))
return FALSE;
pGB=(LPGIZMOBAR)GetWindowLong(hWnd, GBWL_STRUCTURE);
if (NULL==pGB)
return FALSE;
pGizmo=GizmoPFind(&pGB->pGizmos, uID);
if (NULL!=pGizmo)
GizmoPCheck(hWnd, pGizmo, fCheck);
return TRUE;
}
/*
* GBGizmoFocusSet
*
* Purpose:
* Sets the focus to a partuclar gizmo in the gizmo if that gizmo
* can accept the focus. Separators, attribute buttons, text,
* and command buttons cannot have the focus.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* uID UINT identifier of the gizmo to affect.
*
* Return Value:
* BOOL TRUE if the focus was set. FALSE otherwise, such as
* when uID identifies a control that cannot have focus.
*/
UINT WINAPI GBGizmoFocusSet(HWND hWnd, UINT uID)
{
LPGIZMO pGizmo;
BOOL fRet=FALSE;
pGizmo=PGizmoFromHwndID(hWnd, uID);
if (NULL!=pGizmo && NULL!=pGizmo->hWnd)
{
fRet=TRUE;
SetFocus(pGizmo->hWnd);
}
return fRet;
}
/*
* GBGizmoExist
*
* Purpose:
* Determines if a gizmo of a given identifier exists in the GizmoBar.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* uID UINT identifier to verify.
*
* Return Value:
* BOOL TRUE if the gizmo exists, FALSE otherwise.
*/
BOOL WINAPI GBGizmoExist(HWND hWnd, UINT uID)
{
return (NULL!=PGizmoFromHwndID(hWnd, uID));
}
/*
* GBGizmoTypeGet
*
* Purpose:
* Returns the type of the gizmo specified by the given identifer.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* uID UINT identifier to find.
*
* Return Value:
* int A GIZMOTYPE_* value if the function is successful,
* otherwise -1.
*/
int WINAPI GBGizmoTypeGet(HWND hWnd, UINT uID)
{
int iRet=-1;
LPGIZMO pGizmo;
pGizmo=PGizmoFromHwndID(hWnd, uID);
if (NULL!=pGizmo)
iRet=pGizmo->iType;
return iRet;
}
/*
* GBGizmoDataSet
* GBGizmoDataGet
*
* Purpose:
* Sets or retrieves an extra DWORD value associated with the given gizmo.
* Applications can store any information here they please.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* uID UINT identifier of the gizmo.
* dwData (Set only) DWORD data to store with the gizmo.
*
* Return Value:
* DWORD Set: Previous value
* Get: Current value
*/
DWORD WINAPI GBGizmoDataSet(HWND hWnd, UINT uID, DWORD dwData)
{
LPGIZMO pGizmo;
DWORD dw=0L;
pGizmo=PGizmoFromHwndID(hWnd, uID);
if (NULL!=pGizmo)
{
dw=pGizmo->dwData;
pGizmo->dwData=dwData;
}
return dw;
}
DWORD WINAPI GBGizmoDataGet(HWND hWnd, UINT uID)
{
LPGIZMO pGizmo;
DWORD dw=0L;
pGizmo=PGizmoFromHwndID(hWnd, uID);
if (NULL!=pGizmo)
dw=pGizmo->dwData;
return dw;
}
/*
* GBGizmoNotifySet
* GBGizmoNotifyGet
*
* Purpose:
* Sets or retrieves the notify status of a gizmo. If notify is FALSE,
* the no WM_COMMAND messages are sent from the GizmoBar to the parent
* window when this gizmo is used.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* uID UINT identifier of the gizmo.
* fNotify (Set only) BOOL new notify status to set.
*
* Return Value:
* BOOL Set: Previous value of the notify flag.
* Get: Current value of the notify flag.
*/
BOOL WINAPI GBGizmoNotifySet(HWND hWnd, UINT uID, BOOL fNotify)
{
LPGIZMO pGizmo;
BOOL fRet=FALSE;
pGizmo=PGizmoFromHwndID(hWnd, uID);
if (NULL!=pGizmo)
{
fRet=pGizmo->fNotify;
pGizmo->fNotify=fNotify;
}
return fRet;
}
BOOL WINAPI GBGizmoNotifyGet(HWND hWnd, UINT uID)
{
LPGIZMO pGizmo;
BOOL fRet=FALSE;
pGizmo=PGizmoFromHwndID(hWnd, uID);
if (NULL!=pGizmo)
fRet=pGizmo->fNotify;
return fRet;
}
/*
* GBGizmoTextSet
* GBGizmoTextGet
*
* Purpose:
* Retrieves or sets text in a GizmoBar gizmo. Separators, command buttons,
* and attribute buttons are not affected by this call.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* uID UINT identifying the gizmo.
* psz LPTSTR (Set) providing the text to show in the window
* or (Get) pointing to a buffer to receive the text.
* cch (Get only) UINT maximum number of chars to copy to psz.
*
* Return Value:
* int Number of characters copied to psz.
*/
void WINAPI GBGizmoTextSet(HWND hWnd, UINT uID, LPTSTR psz)
{
//This fails on non-windowed gizmos anyway, so we don't check.
SetDlgItemText(hWnd, uID, psz);
return;
}
int WINAPI GBGizmoTextGet(HWND hWnd, UINT uID, LPTSTR psz, UINT cch)
{
//This fails on non-windowed gizmos anyway, so we don't check.
return GetDlgItemText(hWnd, uID, psz, cch);
}
/*
* GBGizmoIntSet
* GBGizmoIntGet
*
* Purpose:
* Retrieves or sets an integer in a GizmoBar gizmo. Separators, command
* buttons, and attribute buttons are not affected by this call.
*
* Parameters:
* hWnd HWND of the GizmoBar.
* uID UINT identifying the gizmo.
*
* (Set only)
* u UINT value to set in the gizmo.
* fSigned BOOL TRUE to indicate if the value is signed.
*
* (Get only)
* pfTrans BOOL FAR * in which the success of the function is returned.
* fSigned BOOL TRUE to indicate if the value is signed.
*
* Return Value:
* (Set): None
* (Get): UINT Integer translation of the gizmo's text.
*/
void WINAPI GBGizmoIntSet(HWND hWnd, UINT uID, UINT u, BOOL fSigned)
{
//This fails on non-windowed gizmos anyway, so we don't check.
SetDlgItemInt(hWnd, uID, u, fSigned);
return;
}
UINT WINAPI GBGizmoIntGet(HWND hWnd, UINT uID, BOOL FAR *pfTrans, BOOL fSigned)
{
//This fails on non-windowed gizmos anyway, so we don't check.
return GetDlgItemInt(hWnd, uID, pfTrans, fSigned);
}
|