1
1
use std:: cell:: RefCell ;
2
+ use std:: ops:: Deref ;
2
3
use std:: sync:: { Arc , LazyLock , Mutex , RwLock } ;
3
4
4
5
use cacao:: appkit:: window:: { Window , WindowConfig , WindowDelegate } ;
@@ -10,14 +11,14 @@ use cacao::layout::{Layout, LayoutConstraint};
10
11
use cacao:: notification_center:: Dispatcher ;
11
12
use cacao:: objc:: { class, msg_send, sel, sel_impl} ;
12
13
use cacao:: progress:: ProgressIndicator ;
13
- use cacao:: text:: { AttributedString , Label } ;
14
+ use cacao:: text:: Label ;
14
15
use cacao:: view:: View ;
15
- use installer_downloader:: delegate:: ErrorMessage ;
16
16
use objc_id:: Id ;
17
17
18
+ use crate :: delegate:: ErrorMessage ;
18
19
use crate :: resource:: {
19
20
BANNER_DESC , BETA_LINK_TEXT , BETA_PREFACE_DESC , CANCEL_BUTTON_TEXT , DOWNLOAD_BUTTON_TEXT ,
20
- WINDOW_HEIGHT , WINDOW_TITLE , WINDOW_WIDTH ,
21
+ STABLE_LINK_TEXT , WINDOW_HEIGHT , WINDOW_TITLE , WINDOW_WIDTH ,
21
22
} ;
22
23
23
24
/// Logo render in the banner
@@ -167,7 +168,9 @@ pub struct AppWindow {
167
168
pub download_text : Label ,
168
169
169
170
pub beta_link_preface : Label ,
170
- pub beta_link : Label ,
171
+ pub beta_link : LinkToBeta ,
172
+
173
+ pub stable_link : LinkToStable ,
171
174
}
172
175
173
176
pub struct ErrorView {
@@ -180,27 +183,34 @@ pub struct ErrorView {
180
183
181
184
pub type ErrorViewClickCallback = Box < dyn Fn ( ) + Send > ;
182
185
183
- pub struct DownloadButton {
184
- pub button : Button ,
185
- }
186
+ /// Create a Button newtype that impls Default
187
+ macro_rules! button_wrapper {
188
+ ( $name: ident, $text: expr) => {
189
+ pub struct $name {
190
+ pub button: :: cacao:: button:: Button ,
191
+ }
186
192
187
- impl Default for DownloadButton {
188
- fn default ( ) -> Self {
189
- let button = Button :: new ( DOWNLOAD_BUTTON_TEXT ) ;
190
- Self { button }
191
- }
192
- }
193
+ impl Default for $name {
194
+ fn default ( ) -> Self {
195
+ Self {
196
+ button: Button :: new( $text) ,
197
+ }
198
+ }
199
+ }
193
200
194
- pub struct CancelButton {
195
- pub button : Button ,
201
+ impl Deref for $name {
202
+ type Target = :: cacao:: button:: Button ;
203
+ fn deref( & self ) -> & Self :: Target {
204
+ & self . button
205
+ }
206
+ }
207
+ } ;
196
208
}
197
209
198
- impl Default for CancelButton {
199
- fn default ( ) -> Self {
200
- let button = Button :: new ( CANCEL_BUTTON_TEXT ) ;
201
- Self { button }
202
- }
203
- }
210
+ button_wrapper ! ( LinkToBeta , BETA_LINK_TEXT ) ;
211
+ button_wrapper ! ( LinkToStable , STABLE_LINK_TEXT ) ;
212
+ button_wrapper ! ( DownloadButton , DOWNLOAD_BUTTON_TEXT ) ;
213
+ button_wrapper ! ( CancelButton , CANCEL_BUTTON_TEXT ) ;
204
214
205
215
impl AppWindow {
206
216
pub fn layout ( & mut self ) {
@@ -294,11 +304,13 @@ impl AppWindow {
294
304
self . beta_link_preface . set_text ( BETA_PREFACE_DESC ) ;
295
305
self . main_view . add_subview ( & self . beta_link_preface ) ;
296
306
297
- let mut attr_text = AttributedString :: new ( BETA_LINK_TEXT ) ;
298
- attr_text. set_text_color ( Color :: Link , 0 ..BETA_LINK_TEXT . len ( ) as isize ) ;
307
+ self . beta_link . set_text_color ( Color :: Link ) ;
308
+ self . beta_link . set_bordered ( false ) ;
309
+ self . main_view . add_subview ( & * self . beta_link ) ;
299
310
300
- self . beta_link . set_attributed_text ( attr_text) ;
301
- self . main_view . add_subview ( & self . beta_link ) ;
311
+ self . stable_link . set_text_color ( Color :: Link ) ;
312
+ self . stable_link . set_bordered ( false ) ;
313
+ self . main_view . add_subview ( & * self . stable_link ) ;
302
314
303
315
let status_text_position_y = self . status_text_position_y . get_or_insert_with ( || {
304
316
self . status_text
@@ -372,11 +384,17 @@ impl AppWindow {
372
384
. constraint_equal_to ( & self . main_view . left )
373
385
. offset ( 24. ) ,
374
386
self . beta_link
375
- . bottom
376
- . constraint_equal_to ( & self . beta_link_preface . bottom ) ,
387
+ . center_y
388
+ . constraint_equal_to ( & self . beta_link_preface . center_y ) ,
377
389
self . beta_link
378
390
. left
379
391
. constraint_equal_to ( & self . beta_link_preface . right ) ,
392
+ self . stable_link
393
+ . left
394
+ . constraint_equal_to ( & self . beta_link_preface . left ) ,
395
+ self . stable_link
396
+ . center_y
397
+ . constraint_equal_to ( & self . beta_link_preface . center_y ) ,
380
398
] ) ;
381
399
}
382
400
}
0 commit comments