@@ -480,7 +480,6 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
480
480
/* After the user pressed any valid key or the backspace key, we
481
481
* highlight a random part of the unlock indicator to confirm this
482
482
* keypress. */
483
- //TODO: figure out what to do with the bar indicator for this
484
483
if (unlock_state == STATE_KEY_ACTIVE ||
485
484
unlock_state == STATE_BACKSPACE_ACTIVE ) {
486
485
if (bar_enabled ) {
@@ -489,7 +488,10 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
489
488
int index = rand () % num_bars ;
490
489
bar_heights [index ] = max_bar_height ;
491
490
for (int i = 0 ; i < ((max_bar_height / bar_step ) + 1 ); ++ i ) {
492
- int low_ind = (index - i ) % num_bars ;
491
+ int low_ind = index - i ;
492
+ while (low_ind < 0 ) {
493
+ low_ind += num_bars ;
494
+ }
493
495
int high_ind = (index + i ) % num_bars ;
494
496
int tmp_height = max_bar_height - (bar_step * i );
495
497
if (tmp_height < 0 ) tmp_height = 0 ;
@@ -499,43 +501,44 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
499
501
bar_heights [high_ind ] = tmp_height ;
500
502
if (tmp_height == 0 ) break ;
501
503
}
502
- }
503
- cairo_set_line_width (ctx , RING_WIDTH );
504
- cairo_new_sub_path (ctx );
505
- double highlight_start = (rand () % (int )(2 * M_PI * 100 )) / 100.0 ;
506
- cairo_arc (ctx ,
507
- BUTTON_CENTER /* x */ ,
508
- BUTTON_CENTER /* y */ ,
509
- BUTTON_RADIUS /* radius */ ,
510
- highlight_start ,
511
- highlight_start + (M_PI / 3.0 ));
512
- if (unlock_state == STATE_KEY_ACTIVE ) {
513
- /* For normal keys, we use a lighter green. */ //lol no
514
- cairo_set_source_rgba (ctx , keyhl16 .red , keyhl16 .green , keyhl16 .blue , keyhl16 .alpha );
515
504
} else {
516
- /* For backspace, we use red. */ //lol no
517
- cairo_set_source_rgba (ctx , bshl16 .red , bshl16 .green , bshl16 .blue , bshl16 .alpha );
518
- }
505
+ cairo_set_line_width (ctx , RING_WIDTH );
506
+ cairo_new_sub_path (ctx );
507
+ double highlight_start = (rand () % (int )(2 * M_PI * 100 )) / 100.0 ;
508
+ cairo_arc (ctx ,
509
+ BUTTON_CENTER /* x */ ,
510
+ BUTTON_CENTER /* y */ ,
511
+ BUTTON_RADIUS /* radius */ ,
512
+ highlight_start ,
513
+ highlight_start + (M_PI / 3.0 ));
514
+ if (unlock_state == STATE_KEY_ACTIVE ) {
515
+ /* For normal keys, we use a lighter green. */ //lol no
516
+ cairo_set_source_rgba (ctx , keyhl16 .red , keyhl16 .green , keyhl16 .blue , keyhl16 .alpha );
517
+ } else {
518
+ /* For backspace, we use red. */ //lol no
519
+ cairo_set_source_rgba (ctx , bshl16 .red , bshl16 .green , bshl16 .blue , bshl16 .alpha );
520
+ }
519
521
520
- cairo_stroke (ctx );
521
-
522
- /* Draw two little separators for the highlighted part of the
523
- * unlock indicator. */
524
- cairo_set_source_rgba (ctx , sep16 .red , sep16 .green , sep16 .blue , sep16 .alpha );
525
- cairo_arc (ctx ,
526
- BUTTON_CENTER /* x */ ,
527
- BUTTON_CENTER /* y */ ,
528
- BUTTON_RADIUS /* radius */ ,
529
- highlight_start /* start */ ,
530
- highlight_start + (M_PI / 128.0 ) /* end */ );
531
- cairo_stroke (ctx );
532
- cairo_arc (ctx ,
533
- BUTTON_CENTER /* x */ ,
534
- BUTTON_CENTER /* y */ ,
535
- BUTTON_RADIUS /* radius */ ,
536
- (highlight_start + (M_PI / 3.0 )) - (M_PI / 128.0 ) /* start */ ,
537
- highlight_start + (M_PI / 3.0 ) /* end */ );
538
- cairo_stroke (ctx );
522
+ cairo_stroke (ctx );
523
+
524
+ /* Draw two little separators for the highlighted part of the
525
+ * unlock indicator. */
526
+ cairo_set_source_rgba (ctx , sep16 .red , sep16 .green , sep16 .blue , sep16 .alpha );
527
+ cairo_arc (ctx ,
528
+ BUTTON_CENTER /* x */ ,
529
+ BUTTON_CENTER /* y */ ,
530
+ BUTTON_RADIUS /* radius */ ,
531
+ highlight_start /* start */ ,
532
+ highlight_start + (M_PI / 128.0 ) /* end */ );
533
+ cairo_stroke (ctx );
534
+ cairo_arc (ctx ,
535
+ BUTTON_CENTER /* x */ ,
536
+ BUTTON_CENTER /* y */ ,
537
+ BUTTON_RADIUS /* radius */ ,
538
+ (highlight_start + (M_PI / 3.0 )) - (M_PI / 128.0 ) /* start */ ,
539
+ highlight_start + (M_PI / 3.0 ) /* end */ );
540
+ cairo_stroke (ctx );
541
+ }
539
542
}
540
543
}
541
544
@@ -671,7 +674,7 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
671
674
te_expr * te_layout_y_expr = te_compile (layout_y_expr , vars , NUM_VARS , & te_y_err );
672
675
te_expr * te_bar_expr = te_compile (bar_expr , vars , NUM_VARS , & te_x_err );
673
676
674
- if (xr_screens > 0 ) {
677
+ if (xr_screens > 0 && ! bar_enabled ) {
675
678
/* Composite the unlock indicator in the middle of each screen. */
676
679
// excuse me, just gonna hack something in right here
677
680
if (screen_number != -1 && screen_number < xr_screens ) {
@@ -768,7 +771,7 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
768
771
}
769
772
}
770
773
}
771
- } else {
774
+ } else if (! bar_enabled ) {
772
775
/* We have no information about the screen sizes/positions, so we just
773
776
* place the unlock indicator in the middle of the X root window and
774
777
* hope for the best. */
@@ -802,43 +805,60 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
802
805
cairo_rectangle (xcb_ctx , layout_x , layout_y , CLOCK_WIDTH , CLOCK_HEIGHT );
803
806
cairo_fill (xcb_ctx );
804
807
}
805
- }
806
- // oh boy, here we go!
807
- // this really needs to be broken into functions or something :D
808
- double bar_offset = te_eval ( te_bar_expr );
809
- if ( bar_enabled ) {
808
+ } else {
809
+ // oh boy, here we go!
810
+ // TODO: get this to play nicely with multiple monitors
811
+ // ideally it'd intelligently span both monitors
812
+ double bar_offset = te_eval ( te_bar_expr );
810
813
double x , y , width , height ;
811
814
double back_x = 0 , back_y = 0 , back_x2 = 0 , back_y2 = 0 , back_width = 0 , back_height = 0 ;
812
815
for (int i = 0 ; i < num_bars ; ++ i ) {
813
816
double cur_bar_height = bar_heights [i ];
814
817
815
818
if (cur_bar_height > 0 ) {
816
- cairo_set_source_rgba (bar_ctx , keyhl16 .red , keyhl16 .green , keyhl16 .blue , keyhl16 .alpha );
819
+ if (unlock_state == STATE_BACKSPACE_ACTIVE ) {
820
+ cairo_set_source_rgba (bar_ctx , bshl16 .red , bshl16 .green , bshl16 .blue , bshl16 .alpha );
821
+ } else {
822
+ cairo_set_source_rgba (bar_ctx , keyhl16 .red , keyhl16 .green , keyhl16 .blue , keyhl16 .alpha );
823
+ }
817
824
} else {
818
- cairo_set_source_rgba (bar_ctx , bar16 .red , bar16 .green , bar16 .blue , bar16 .alpha );
825
+ DEBUG ("auth state is now %d\n" , auth_state );
826
+ switch (auth_state ) {
827
+ case STATE_AUTH_VERIFY :
828
+ case STATE_AUTH_LOCK :
829
+ cairo_set_source_rgba (bar_ctx , insidever16 .red , insidever16 .green , insidever16 .blue , insidever16 .alpha );
830
+ break ;
831
+ case STATE_AUTH_WRONG :
832
+ case STATE_I3LOCK_LOCK_FAILED :
833
+ cairo_set_source_rgba (bar_ctx , insidewrong16 .red , insidewrong16 .green , insidewrong16 .blue , insidewrong16 .alpha );
834
+ break ;
835
+ default :
836
+ cairo_set_source_rgba (bar_ctx , bar16 .red , bar16 .green , bar16 .blue , bar16 .alpha );
837
+ break ;
838
+ }
819
839
}
820
840
821
841
if (bar_orientation == BAR_VERT ) {
822
- width = (cur_bar_height < 0 ? bar_base_height : cur_bar_height );
842
+ width = (cur_bar_height <= 0 ? bar_base_height : cur_bar_height );
823
843
height = bar_width ;
824
844
x = bar_offset ;
825
845
y = i * bar_width ;
826
846
if (bar_bidirectional ) {
827
- width = (cur_bar_height < 0 ? bar_base_height : cur_bar_height ) * 2 ;
847
+ width = (cur_bar_height <= 0 ? bar_base_height : cur_bar_height ) * 2 ;
828
848
x = bar_offset - (width / 2 ) + (bar_base_height / 2 );
829
849
}
830
850
} else {
831
851
width = bar_width ;
832
- height = (cur_bar_height < 0 ? bar_base_height : cur_bar_height );
852
+ height = (cur_bar_height <= 0 ? bar_base_height : cur_bar_height );
833
853
x = i * bar_width ;
834
854
y = bar_offset ;
835
855
if (bar_bidirectional ) {
836
- height = (cur_bar_height < 0 ? bar_base_height : cur_bar_height ) * 2 ;
856
+ height = (cur_bar_height <= 0 ? bar_base_height : cur_bar_height ) * 2 ;
837
857
y = bar_offset - (height / 2 ) + (bar_base_height / 2 );
838
858
}
839
859
}
840
860
841
- if (cur_bar_height < bar_base_height ) {
861
+ if (cur_bar_height < bar_base_height && cur_bar_height > 0 ) {
842
862
if (bar_orientation == BAR_VERT ) {
843
863
back_x = bar_offset + cur_bar_height ;
844
864
back_y = y ;
@@ -863,12 +883,23 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
863
883
}
864
884
}
865
885
}
866
-
867
886
cairo_rectangle (bar_ctx , x , y , width , height );
868
887
cairo_fill (bar_ctx );
869
888
if ((bar_bidirectional && ((cur_bar_height * 2 ) < bar_base_height ))
870
889
|| (!bar_bidirectional && (cur_bar_height < bar_base_height ))) {
871
- cairo_set_source_rgba (bar_ctx , bar16 .red , bar16 .green , bar16 .blue , bar16 .alpha );
890
+ switch (auth_state ) {
891
+ case STATE_AUTH_VERIFY :
892
+ case STATE_AUTH_LOCK :
893
+ cairo_set_source_rgba (bar_ctx , insidever16 .red , insidever16 .green , insidever16 .blue , insidever16 .alpha );
894
+ break ;
895
+ case STATE_AUTH_WRONG :
896
+ case STATE_I3LOCK_LOCK_FAILED :
897
+ cairo_set_source_rgba (bar_ctx , insidewrong16 .red , insidewrong16 .green , insidewrong16 .blue , insidewrong16 .alpha );
898
+ break ;
899
+ default :
900
+ cairo_set_source_rgba (bar_ctx , bar16 .red , bar16 .green , bar16 .blue , bar16 .alpha );
901
+ break ;
902
+ }
872
903
cairo_rectangle (bar_ctx , back_x , back_y , back_width , back_height );
873
904
if (bar_bidirectional ) {
874
905
cairo_rectangle (bar_ctx , back_x2 , back_y2 , back_width , back_height );
@@ -893,6 +924,7 @@ xcb_pixmap_t draw_image(uint32_t *resolution) {
893
924
te_free (te_date_y_expr );
894
925
te_free (te_layout_x_expr );
895
926
te_free (te_layout_y_expr );
927
+ te_free (te_bar_expr );
896
928
897
929
cairo_surface_destroy (xcb_output );
898
930
cairo_surface_destroy (time_output );
0 commit comments