summaryrefslogtreecommitdiff
path: root/packages/extra/forms/demo/pushbutton.pp
blob: 1feb6ccad2ef5a571d38f4db5253d417e244fdfd (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
Program pushButtons;
{ A demo that shows the use of push buttons.  }

uses xforms;

var form : PFL_FORM;
    Abox : array[0..8] of PFL_OBJECT;

procedure push_cb( ob : PFL_OBJECT; n : longint);export;

begin
   if (fl_get_button(ob)<>0) then
      fl_show_object(abox[n])
   else
      fl_hide_object(abox[n]);
end;


Procedure makeform;

Var i : Integer;
    obj : PFL_OBJECT;

begin
  form := fl_bgn_form(FL_UP_BOX,400,400);
  for i:=0 to 7 do
    begin
    obj := fl_add_button(FL_PUSH_BUTTON,40,310-40*i,80,30,'');
    fl_set_object_color(obj,FL_BLACK+i+1,FL_BLACK+i+1);
      fl_set_object_callback(obj,PFL_CALLBACKPTR(@push_cb),i);
    abox[i] := fl_add_box(FL_DOWN_BOX,150+30*i,40,25,320,'');
      fl_set_object_color(abox[i],FL_BLACK+i+1,FL_BLACK+i+1);
      fl_hide_object(abox[i]);
    end;
  fl_add_button(FL_NORMAL_BUTTON,40,350,80,30,'Exit');
  fl_end_form;
end;

Begin
  fl_initialize(@argc, argv, 'FormDemo', nil,0);
  makeform;
  fl_show_form(form,FL_PLACE_CENTER,FL_NOBORDER,'Push Buttons');
  { fl_do_forms will return only when Exit is pressed }
  fl_do_forms;
end.
{
  $Log: pushbutton.pp,v $
  Revision 1.4  2005/02/14 17:13:20  peter
    * truncate log

}