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
|
program simple_filechooser;
(* basing upon helloworld2 example*)
{$mode objfpc} {$H+}
{$IFDEF GTK2_0}{$FATAL this demo needs gtk 2.4}{$ENDIF}
{$IFDEF GTK2_2}{$FATAL this demo needs gtk 2.4}{$ENDIF}
uses
Glib2, Gdk2, Gtk2;
const
ACTION_OPEN = 1;
ACTION_SAVE = 2;
MAIN_WINDOW_KEY = 'main_window'; { uses with g_object_(get/set)_data as key }
(* File dialog-callback. *)
procedure dialog_callback (widget : PGtkWidget;
data : gpointer); cdecl;
var
dialog : PGtkWidget;
window : PGtkWindow;
action : gint;
filename : Pgchar;
begin
{ Get a pointer to the main window }
window := g_object_get_data (G_OBJECT(widget), MAIN_WINDOW_KEY);
action := gint (data);
case action of
ACTION_OPEN:
begin
dialog := gtk_file_chooser_dialog_new ('Open File',
window,
GTK_FILE_CHOOSER_ACTION_OPEN,
GTK_STOCK_OPEN, [GTK_RESPONSE_ACCEPT,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
NULL]);
end; { ACTION_OPEN}
ACTION_SAVE:
begin
dialog := gtk_file_chooser_dialog_new ('Save File',
window,
GTK_FILE_CHOOSER_ACTION_SAVE,
GTK_STOCK_SAVE, [GTK_RESPONSE_ACCEPT,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
NULL]);
end; { ACTION_SAVE }
else begin
{ This should never happen }
g_print ('Something is wrong here!!!.'#13#10);
g_print ('No dialog created.'#13#10);
{writeln crashes on my system running linux --- check why }
exit;
end;
end; { case }
if gtk_dialog_run (GTK_DIALOG (dialog)) = GTK_RESPONSE_ACCEPT then
begin
filename := gtk_file_chooser_get_filename (GTK_FILE_CHOOSER (dialog));
g_print ('Filename %s selected.'#13#10, [filename]);
// writeln ('File ', filename, ' selected.');
// ToDO:
// writeln crashes... check why
g_free (filename);
end;
gtk_widget_destroy (dialog);
end;
(* another callback *)
function delete_event (widget: PGtkWidget;
event : PGdkEvent;
data : gpointer): gboolean;cdecl;
begin
gtk_main_quit;
delete_event := FALSE;
end;
var
window,
button,
box1 : PGtkWidget; (* GtkWidget is the storage type for widgets *)
begin
(* This is called in all GTK applications. Arguments are parsed
* from the command line and are returned to the application. *)
gtk_init (@argc, @argv);
(* Create a new window *)
window := gtk_window_new (GTK_WINDOW_TOPLEVEL);
(* This is a new call, which just sets the title of our
* new window to "Hello Buttons!" *)
gtk_window_set_title (GTK_WINDOW (window), 'GtkFileChooser Demo');
(* Here we just set a handler for delete_event that immediately
* exits GTK. *)
g_signal_connect (G_OBJECT (window), 'delete_event',
G_CALLBACK (@delete_event), NULL);
(* Sets the border width of the window. *)
gtk_container_set_border_width (GTK_CONTAINER (window), 10);
(* We create a box to pack widgets into. This is described in detail
* in the "packing" section. The box is not really visible, it
* is just used as a tool to arrange widgets. *)
box1 := gtk_hbox_new (FALSE, 0);
(* Put the box into the main window. *)
gtk_container_add (GTK_CONTAINER (window), box1);
button := gtk_button_new_with_label ('Open');
(* Now when the button is clicked, we call the "callback" function
* with a pointer to the main window as its argument *)
g_object_set_data (G_OBJECT(button), MAIN_WINDOW_KEY, window);
g_signal_connect (G_OBJECT (button), 'clicked',
G_CALLBACK (@dialog_callback), pointer(ACTION_OPEN));
(* Instead of gtk_container_add, we pack this button into the invisible
* box, which has been packed into the window. *)
gtk_box_pack_start (GTK_BOX(box1), button, TRUE, TRUE, 0);
(* Always remember this step, this tells GTK that our preparation for
* this button is complete, and it can now be displayed. *)
gtk_widget_show (button);
(* Do these same steps again to create a second button *)
button := gtk_button_new_with_label ('Save');
g_object_set_data (G_OBJECT(button), MAIN_WINDOW_KEY, window);
g_signal_connect (G_OBJECT (button), 'clicked',
G_CALLBACK (@dialog_callback), pointer(ACTION_SAVE));
gtk_box_pack_start(GTK_BOX (box1), button, TRUE, TRUE, 0);
(* The order in which we show the buttons is not really important, but I
* recommend showing the window last, so it all pops up at once. *)
gtk_widget_show (button);
gtk_widget_show (box1);
gtk_widget_show (window);
(* Rest in gtk_main and wait for the fun to begin! *)
gtk_main ();
end.
|