@@ -15,28 +15,21 @@ impl AppDelegate for AppWindow {
15
15
where
16
16
F : Fn ( ) + Send + ' static ,
17
17
{
18
- let cb = Self :: sync_callback ( callback) ;
19
- self . download_button . button . set_action ( move || {
20
- let cb = Action :: DownloadClick ( cb. clone ( ) ) ;
21
- cacao:: appkit:: App :: < super :: ui:: AppImpl , _ > :: dispatch_main ( cb) ;
22
- } ) ;
18
+ self . download_button . set_callback ( callback) ;
23
19
}
24
20
25
21
fn on_cancel < F > ( & mut self , callback : F )
26
22
where
27
23
F : Fn ( ) + Send + ' static ,
28
24
{
29
- let cb = Self :: sync_callback ( callback) ;
30
- self . cancel_button . button . set_action ( move || {
31
- let cb = Action :: CancelClick ( cb. clone ( ) ) ;
32
- cacao:: appkit:: App :: < super :: ui:: AppImpl , _ > :: dispatch_main ( cb) ;
33
- } ) ;
25
+ self . cancel_button . set_callback ( callback) ;
34
26
}
35
27
36
28
fn on_beta_link < F > ( & mut self , callback : F )
37
29
where
38
30
F : Fn ( ) + Send + ' static ,
39
31
{
32
+ self . beta_link . set_callback ( callback) ;
40
33
}
41
34
42
35
fn set_status_text ( & mut self , text : & str ) {
@@ -76,35 +69,35 @@ impl AppDelegate for AppWindow {
76
69
}
77
70
78
71
fn show_download_button ( & mut self ) {
79
- self . download_button . button . set_hidden ( false ) ;
72
+ self . download_button . set_hidden ( false ) ;
80
73
}
81
74
82
75
fn hide_download_button ( & mut self ) {
83
- self . download_button . button . set_hidden ( true ) ;
76
+ self . download_button . set_hidden ( true ) ;
84
77
}
85
78
86
79
fn enable_download_button ( & mut self ) {
87
- self . download_button . button . set_enabled ( true ) ;
80
+ self . download_button . set_enabled ( true ) ;
88
81
}
89
82
90
83
fn disable_download_button ( & mut self ) {
91
- self . download_button . button . set_enabled ( false ) ;
84
+ self . download_button . set_enabled ( false ) ;
92
85
}
93
86
94
87
fn show_cancel_button ( & mut self ) {
95
- self . cancel_button . button . set_hidden ( false ) ;
88
+ self . cancel_button . set_hidden ( false ) ;
96
89
}
97
90
98
91
fn hide_cancel_button ( & mut self ) {
99
- self . cancel_button . button . set_hidden ( true ) ;
92
+ self . cancel_button . set_hidden ( true ) ;
100
93
}
101
94
102
95
fn enable_cancel_button ( & mut self ) {
103
- self . cancel_button . button . set_enabled ( true ) ;
96
+ self . cancel_button . set_enabled ( true ) ;
104
97
}
105
98
106
99
fn disable_cancel_button ( & mut self ) {
107
- self . cancel_button . button . set_enabled ( false ) ;
100
+ self . cancel_button . set_enabled ( false ) ;
108
101
}
109
102
110
103
fn show_beta_text ( & mut self ) {
@@ -129,7 +122,7 @@ impl AppDelegate for AppWindow {
129
122
where
130
123
F : Fn ( ) + Send + ' static ,
131
124
{
132
- println ! ( "todo. on stable link" ) ;
125
+ self . stable_link . set_callback ( callback ) ;
133
126
}
134
127
135
128
fn show_stable_text ( & mut self ) {
@@ -141,17 +134,19 @@ impl AppDelegate for AppWindow {
141
134
}
142
135
143
136
fn show_error_message ( & mut self , message : installer_downloader:: delegate:: ErrorMessage ) {
144
- let on_cancel = self . error_cancel_callback . clone ( ) . map ( |cb | {
137
+ let on_cancel = self . error_cancel_callback . clone ( ) . map ( |callback | {
145
138
move || {
146
- let cb = Action :: ErrorCancel ( cb. clone ( ) ) ;
147
- cacao:: appkit:: App :: < super :: ui:: AppImpl , _ > :: dispatch_main ( cb) ;
139
+ let callback = callback. clone ( ) ;
140
+ let callback = Action :: ButtonClick { callback } ;
141
+ cacao:: appkit:: App :: < super :: ui:: AppImpl , _ > :: dispatch_main ( callback) ;
148
142
}
149
143
} ) ;
150
144
151
- let on_retry = self . error_retry_callback . clone ( ) . map ( |cb | {
145
+ let on_retry = self . error_retry_callback . clone ( ) . map ( |callback | {
152
146
move || {
153
- let cb = Action :: ErrorRetry ( cb. clone ( ) ) ;
154
- cacao:: appkit:: App :: < super :: ui:: AppImpl , _ > :: dispatch_main ( cb) ;
147
+ let callback = callback. clone ( ) ;
148
+ let callback = Action :: ButtonClick { callback } ;
149
+ cacao:: appkit:: App :: < super :: ui:: AppImpl , _ > :: dispatch_main ( callback) ;
155
150
}
156
151
} ) ;
157
152
0 commit comments