summaryrefslogtreecommitdiff
path: root/fpcsrc/rtl/morphos/muihelper.pas
blob: b456788741fe9ec54750e33ccba96c4c2496dd21 (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
{
    This file is part of the Free Pascal run time library.
    Copyright (c) 2005 Karoly Balogh

    MUI helper functions for MorphOS/PowerPC

    Based on work of Nils Sjoholm member of the Amiga RTL
    development team.

    MorphOS port was done on a free Pegasos II/G4 machine
    provided by Genesi S.a.r.l. <www.genesi.lu>

    See the file COPYING.FPC, included in this distribution,
    for details about the copyright.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

 **********************************************************************}

unit muihelper;

interface

uses intuition, mui, doslib, utility;


const
  NoFrame          = MUIV_Frame_None;
  ButtonFrame      = MUIV_Frame_Button;
  ImageButtonFrame = MUIV_Frame_ImageButton;
  TextFrame        = MUIV_Frame_Text;
  StringFrame      = MUIV_Frame_String;
  ReadListFrame    = MUIV_Frame_ReadList;
  InputListFrame   = MUIV_Frame_InputList;
  PropFrame        = MUIV_Frame_Prop;
  SliderFrame      = MUIV_Frame_Slider;
  GaugeFrame       = MUIV_Frame_Gauge;
  VirtualFrame     = MUIV_Frame_Virtual;
  GroupFrame       = MUIV_Frame_Group;

const
  Child          = MUIA_Group_Child;
  SubWindow      = MUIA_Application_Window;
  WindowContents = MUIA_Window_RootObject;


// Creates a MUI application
function MH_Application(tags: array of LongWord): pObject_;
function MH_Application(var app; tags: array of LongWord): pObject_;

// Creates a MUI window
function MH_Window(tags: array of LongWord): pObject_;
function MH_Window(var win; tags: array of LongWord): pObject_;

// Creates a MUI button
function MH_MakeButton(blabel: pchar): pObject_;
function MH_MakeButton(var button; blabel: pchar): pObject_;

// Creates a MUI HBar
function MH_MakeHBar(space: longword): pObject_;
function MH_MakeHBar(var hbar; space: longword): pObject_;

// Creates MUI V/HGroup
function MH_VGroup(tags: array of LongWord): pObject_;
function MH_VGroup(frame: longword; tags: array of LongWord): pObject_;
function MH_VGroup(title: PChar; tags: array of LongWord): pObject_;
function MH_HGroup(tags: array of LongWord): pObject_;
function MH_HGroup(frame: longword; tags: array of LongWord): pObject_;
function MH_HGroup(title: PChar; tags: array of LongWord): pObject_;

// Creates MUI Col/RowGroup
function MH_ColGroup(cols: longword; tags: array of LongWord): pObject_;
function MH_ColGroup(cols: longword; frame: longword; tags: array of LongWord): pObject_;
function MH_ColGroup(cols: longword; title: PChar; tags: array of LongWord): pObject_;
function MH_RowGroup(rows: longword; tags: array of LongWord): pObject_;
function MH_RowGroup(rows: longword; frame: longword; tags: array of LongWord): pObject_;
function MH_RowGroup(rows: longword; title: PChar; tags: array of LongWord): pObject_;


// Creates a MUI Text area
function MH_Text(contents: PChar): pObject_;
function MH_Text(contents: PChar; tags: array of LongWord): pObject_;
function MH_Text(var text_; contents: PChar): pObject_;
function MH_Text(var text_; contents: PChar; tags: array of LongWord): pObject_;


implementation


// Creates a MUI application
// ************************************************************************
function MH_Application(tags: array of LongWord): pObject_;
begin
  MH_Application:=MUI_NewObject(MUIC_Application, tags);
end;

function MH_Application(var app; tags: array of LongWord): pObject_;
begin
  pObject_(app):=MUI_NewObject(MUIC_Application, tags);
  MH_Application:=pObject_(app);
end;


// Creates a MUI window
// ************************************************************************
function MH_Window(tags: array of LongWord): pObject_;
begin
  MH_Window:=MUI_NewObject(MUIC_Window, tags);
end;

function MH_Window(var win; tags: array of LongWord): pObject_;
begin
  pObject_(win):=MUI_NewObject(MUIC_Window, tags);
  MH_Window:=pObject_(win);
end;


// Creates a MUI button
// ************************************************************************
function MH_MakeButton(blabel: pchar): pObject_;
begin
 MH_MakeButton:=MUI_MakeObject(MUIO_Button, [DWord(blabel)]);
end;

function MH_MakeButton(var button; blabel: pchar): pObject_;
begin
 pObject_(button):=MUI_MakeObject(MUIO_Button, [DWord(blabel)]);
 MH_MakeButton:=pObject_(button);
end;


// Creates a MUI HBar
// ************************************************************************
function MH_MakeHBar(space: longword): pObject_;
begin
 MH_MakeHBar:=MUI_MakeObject(MUIO_HBar, [space]);
end;

function MH_MakeHBar(var hbar; space: longword): pObject_;
begin
 pObject_(hbar):=MUI_MakeObject(MUIO_HBar, [space]);
 MH_MakeHBar:=pObject_(hbar);
end;


// Creates a MUI VGroup
// ************************************************************************
function MH_VGroup(tags: array of LongWord): pObject_;
begin
  MH_VGroup:=MUI_NewObject(MUIC_Group, tags);
end;

function MH_VGroup(frame: longword; tags: array of LongWord): pObject_;
begin
  MH_VGroup:=MUI_NewObject(MUIC_Group, [ MUIA_Frame, frame, TAG_MORE, DWord(@tags) ] );
end;

function MH_VGroup(title: PChar; tags: array of LongWord): pObject_;
begin
  MH_VGroup:=MUI_NewObject(MUIC_Group, [ MUIA_Frame,      MUIV_Frame_Group, 
                                         MUIA_FrameTitle, longword(title), 
                                         MUIA_Background, MUII_GroupBack,
                                         TAG_MORE, DWord(@tags) ]);
end;


// Creates a MUI HGroup
// ************************************************************************
function MH_HGroup(tags: array of LongWord): pObject_;
begin
  MH_HGroup:=MUI_NewObject(MUIC_Group, [ MUIA_Group_Horiz, MUI_TRUE, TAG_MORE, DWord(@tags) ]);
end;

function MH_HGroup(frame: longword; tags: array of LongWord): pObject_;
begin
  MH_HGroup:=MUI_NewObject(MUIC_Group, [ MUIA_Group_Horiz, MUI_TRUE, 
                                         MUIA_Frame,       frame, 
                                         TAG_MORE, DWord(@tags) ] );
end;

function MH_HGroup(title: PChar; tags: array of LongWord): pObject_;
begin
  MH_HGroup:=MUI_NewObject(MUIC_Group, [ MUIA_Group_Horiz, MUI_TRUE,
                                         MUIA_Frame,       MUIV_Frame_Group, 
                                         MUIA_FrameTitle,  longword(title), 
                                         MUIA_Background,  MUII_GroupBack,
                                         TAG_MORE, DWord(@tags) ]);
end;


// Creates MUI ColGroup
// ************************************************************************
function MH_ColGroup(cols: longword; tags: array of LongWord): pObject_;
begin
  MH_ColGroup:=MUI_NewObject(MUIC_Group, [ MUIA_Group_Columns, cols, TAG_MORE, DWord(@tags) ]);
end;

function MH_ColGroup(cols: longword; frame: longword; tags: array of LongWord): pObject_;
begin
  MH_ColGroup:=MUI_NewObject(MUIC_Group, [ MUIA_Group_Columns, cols, 
                                           MUIA_Frame,         frame, 
                                           TAG_MORE, DWord(@tags) ]);
end;

function MH_ColGroup(cols: longword; title: PChar; tags: array of LongWord): pObject_;
begin
  MH_ColGroup:=MUI_NewObject(MUIC_Group, [ MUIA_Group_Columns, cols,
                                           MUIA_Frame,         MUIV_Frame_Group, 
                                           MUIA_FrameTitle,    longword(title), 
                                           MUIA_Background,    MUII_GroupBack,
                                           TAG_MORE, DWord(@tags) ]);
end;


// Creates MUI RowGroup
// ************************************************************************
function MH_RowGroup(rows: longword; tags: array of LongWord): pObject_;
begin
  MH_RowGroup:=MUI_NewObject(MUIC_Group, [ MUIA_Group_Rows, rows, TAG_MORE, DWord(@tags) ]);
end;

function MH_RowGroup(rows: longword; frame: longword; tags: array of LongWord): pObject_;
begin
  MH_RowGroup:=MUI_NewObject(MUIC_Group, [ MUIA_Group_Rows, rows, 
                                           MUIA_Frame,      frame, 
                                           TAG_MORE, DWord(@tags) ]);
end;

function MH_RowGroup(rows: longword; title: PChar; tags: array of LongWord): pObject_;
begin
  MH_RowGroup:=MUI_NewObject(MUIC_Group, [ MUIA_Group_Rows, rows,
                                           MUIA_Frame,      MUIV_Frame_Group, 
                                           MUIA_FrameTitle, longword(title), 
                                           MUIA_Background, MUII_GroupBack,
                                           TAG_MORE, DWord(@tags) ]);
end;


// Creates a MUI text area
// ************************************************************************
function MH_Text(contents: PChar): pObject_;
begin
 MH_Text:=MUI_NewObject(MUIC_Text,[ MUIA_Text_Contents, DWord(contents), TAG_DONE ]);
end;

function MH_Text(contents: PChar; tags: array of LongWord): pObject_;
begin
 MH_Text:=MUI_NewObject(MUIC_Text,[ MUIA_Text_Contents, DWord(contents), 
                                       TAG_MORE, DWord(@tags) ]);
end;

function MH_Text(var text_; contents: PChar): pObject_;
begin
 pObject_(text_):=MUI_NewObject(MUIC_Text,[ MUIA_Text_Contents, DWord(contents), TAG_DONE ]);
 MH_Text:=pObject_(text_);
end;

function MH_Text(var text_; contents: PChar; tags: array of LongWord): pObject_;
begin
 pObject_(text_):=MUI_NewObject(MUIC_Text,[ MUIA_Text_Contents, DWord(contents), 
                                      TAG_MORE, DWord(@tags) ]);
 MH_Text:=pObject_(text_);
end;


end.