2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
9 #include <exec/types.h>
10 #include <proto/exec.h>
11 #include <proto/reqtools.h>
12 #include <proto/intuition.h>
13 #include <exec/libraries.h>
14 #include <exec/memory.h>
15 #include <libraries/reqtools.h>
16 #include <aros/libcall.h>
18 #include "reqtools_intern.h"
21 /*****************************************************************************
25 AROS_LH4(ULONG
, rtGetLongA
,
29 AROS_LHA(ULONG
*, longptr
, A1
),
30 AROS_LHA(char *, title
, A2
),
31 AROS_LHA(struct rtReqInfo
*, reqinfo
, A3
),
32 AROS_LHA(struct TagItem
*, taglist
, A0
),
36 struct ReqToolsBase
*, ReqToolsBase
, 13, ReqTools
)
39 Puts up a requester to get a signed long (32-bit) number from the
42 'reqinfo' can be used to customize the requester. For greater
43 control use the tags listed below. The advantage of the rtReqInfo
44 structure is that it is global, where tags have to be specified
45 each function call. See libraries/reqtools.[hi] for a description
46 of the rtReqInfo structure.
49 &longvar - address of long (32 bit!) variable to hold result.
50 title - pointer to null terminated title of requester window.
51 reqinfo - pointer to a rtReqInfo structure allocated with
52 rtAllocRequest() or NULL.
53 taglist - pointer to a TagItem array.
56 RT_Window - see rtEZRequestA()
58 RT_IDCMPFlags - see rtEZRequestA()
60 RT_ReqPos - see rtEZRequestA()
62 RT_LeftOffset - see rtEZRequestA()
64 RT_TopOffset - see rtEZRequestA()
66 RT_PubScrName - see rtEZRequestA()
68 RT_Screen - see rtEZRequestA()
70 RT_ReqHandler - see rtEZRequestA()
72 RT_WaitPointer - see rtEZRequestA()
74 RT_Underscore - [V38] see rtEZRequestA() Only when you also use the
77 RT_LockWindow - [V38] see rtEZRequestA()
79 RT_ScreenToFront - [V38] see rtEZRequestA()
81 RT_ShareIDCMP - [V38] see rtEZRequestA()
83 RT_Locale - [V38] see rtEZRequestA()
85 RT_IntuiMsgFunc - [V38] see rtEZRequestA()
87 RT_TextAttr - [V38] see rtEZRequestA(). Note that under 1.2/1.3 the
88 string gadget's font will remain the screen font.
90 RTGL_Min - (ULONG) Minimum allowed value. If the user tries to
91 enter a smaller value the requester will refuse to accept it.
93 RTGL_Max - (ULONG) Maximum allowed value, higher values are refused.
95 RTGL_Width - (ULONG) Width of requester window in pixels. This is
96 only a suggestion. rtGetLongA() will not go below a certain
99 RTGL_ShowDefault - (BOOL) If this is TRUE (default) the value
100 already in 'longvar' will be displayed in the requester when it
101 comes up. If set to FALSE the requester will be empty.
103 RTGL_GadFmt - (char *) [V38] Using this tag you can offer the user
104 several responses. See rtEZRequestA() for more information.
105 Note that selecting this gadget is considered a positive
106 response so the integer in the gadget is copied to '&longvar'.
108 RTGL_GadFmtArgs - (APTR) [V38] If you used formatting codes with
109 RTGL_GadFmt use this tag to pass the arguments.
111 RTGL_Invisible - (BOOL) [V38] Using this tag you can switch on
112 invisible typing. Very useful if you need to get something like
113 a code number from the user. It is strongly advised to use
114 { RTGL_ShowDefault, FALSE } or the user may get very confused!
117 RTGL_BackFill - (BOOL) [V38] Backfill requester window with
118 pattern. Default TRUE.
120 RTGL_TextFmt - (char *) [V38] Print these lines of text above the
121 gadget in the requester. Very useful to inform the user of what
122 he should enter. Most of the time you will also want to set the
123 GLREQF_CENTERTEXT flag. If you set the RTGL_BackFill tag to
124 FALSE _no_ recessed border will be placed around the text.
125 Formatting codes may be used in the string (see
126 RTGL_TextFmtArgs tag).
128 RTGL_TextFmtArgs - (APTR) [V38] If you used formatting codes with
129 RTGL_TextFmt use this tag to pass the arguments.
131 RTGL_Flags - (ULONG) [V38]
133 GLREQF_CENTERTEXT - centers each line of text above the gadget
134 in the requester window. Should be generally set.
136 GLREQF_HIGHLIGHTTEXT - Highlight text above the gadget. You
137 will normally only want to use this if you also turned off
138 the window backfilling.
141 ret - TRUE if user entered a number, FALSE if not. If one of your
142 idcmp flags caused the requester to end 'ret' will hold this
143 flag. If you used the RTGL_GadFmt tag the return code will hold
144 the value of the response as with rtEZRequestA().
147 'longvar' will NOT change if the requester is aborted.
149 Automatically adjusts the requester to the screen font.
151 rtGetLongA() checks the pr_WindowPtr of your process to find the
152 screen to put the requester on.
154 If you use the RTGL_GadFmt tag the return value is not always the
155 gadget the user selected. If the integer gadget is empty and the
156 user presses the leftmost gadget (normally 'Ok') rtGetLong() will
157 return 0 (FALSE)! If the integer gadget is empty and the user
158 presses one of the other gadgets rtGetLong() _will_ return its
160 Important: &longvar will not be changed in either of these cases.
173 ******************************************************************************/
177 return GetString(NULL
,