@@ -41,6 +41,7 @@ public class Layouts.QuickAdd : Adw.Bin {
41
41
public signal void send_interface_id (string id );
42
42
public signal void add_item_db (Objects .Item item , Gee .ArrayList<Objects . Reminder > reminders );
43
43
public signal void error (HttpResponse response );
44
+ public signal void parent_can_close (bool active );
44
45
45
46
public bool ctrl_pressed { get ; set ; default = false ; }
46
47
@@ -119,7 +120,8 @@ public class Layouts.QuickAdd : Adw.Bin {
119
120
top_margin = 12 ,
120
121
wrap_mode = Gtk . WrapMode . WORD_CHAR ,
121
122
hexpand = true ,
122
- event_focus = false
123
+ event_focus = false ,
124
+ accepts_tab = false
123
125
};
124
126
125
127
description_textview.remove_css_class ("view ");
@@ -132,9 +134,15 @@ public class Layouts.QuickAdd : Adw.Bin {
132
134
schedule_button = new Widgets .ScheduleButton ();
133
135
priority_button = new Widgets .PriorityButton ();
134
136
priority_button.update_from_item (item );
135
- label_button = new Widgets .LabelPicker .LabelButton ();
137
+
138
+ label_button = new Widgets .LabelPicker .LabelButton () {
139
+ tooltip_markup = Util.get_default ().markup_accel_tooltip (_ ("Add Labels "), "Ctrl+L"),
140
+ };
136
141
label_button. source = item. project. source;
137
- reminder_button = new Widgets .ReminderPicker .ReminderButton (true );
142
+
143
+ reminder_button = new Widgets .ReminderPicker .ReminderButton (true ) {
144
+ tooltip_markup = Util.get_default ().markup_accel_tooltip (_ ("Add Reminders "), "Ctrl+R"),
145
+ };
138
146
139
147
var action_box = new Gtk .Box (Gtk . Orientation . HORIZONTAL , 12 ) {
140
148
margin_start = 6 ,
@@ -290,6 +298,13 @@ public class Layouts.QuickAdd : Adw.Bin {
290
298
});
291
299
292
300
label_button.labels_changed.connect (set_labels );
301
+ label_button.picker_opened.connect ((active ) => {
302
+ parent_can_close (! active);
303
+ });
304
+
305
+ reminder_button.picker_opened.connect ((active ) => {
306
+ parent_can_close (! active);
307
+ });
293
308
294
309
var destroy_controller = new Gtk .EventControllerKey ();
295
310
add_controller (destroy_controller );
@@ -350,6 +365,20 @@ public class Layouts.QuickAdd : Adw.Bin {
350
365
create_more_button.activate.connect (() => {
351
366
Services . Settings . get_default (). settings. set_boolean (" quick-add-create-more" , create_more_button. active);
352
367
});
368
+
369
+ var open_label_shortcut = new Gtk .Shortcut (Gtk . ShortcutTrigger . parse_string (" <Control>l" ), new Gtk .CallbackAction (() = > {
370
+ label_button. open_picker ();
371
+ }));
372
+
373
+ var open_reminder_shortcut = new Gtk .Shortcut (Gtk . ShortcutTrigger . parse_string (" <Control>r" ), new Gtk .CallbackAction (() = > {
374
+ reminder_button. open_picker ();
375
+ }));
376
+
377
+ var shortcutController = new Gtk .ShortcutController ();
378
+ shortcutController.add_shortcut (open_label_shortcut );
379
+ shortcutController.add_shortcut (open_reminder_shortcut );
380
+
381
+ add_controller (shortcutController );
353
382
}
354
383
355
384
private void add_item () {
0 commit comments