diff options
author | Patrick McDermott <pj@pehjota.net> | 2017-10-25 11:45:11 (EDT) |
---|---|---|
committer | Patrick McDermott <pj@pehjota.net> | 2017-10-25 11:45:11 (EDT) |
commit | e736b0c8aaa5e415b204c98ae1564b552198dc08 (patch) | |
tree | 2495d6bff00cb3ca7be098bfd5dae852e2ad5be5 /src | |
parent | a13e7d670db70a3073633d4894015c2053018dc9 (diff) | |
download | marquee-e736b0c8aaa5e415b204c98ae1564b552198dc08.zip marquee-e736b0c8aaa5e415b204c98ae1564b552198dc08.tar.gz marquee-e736b0c8aaa5e415b204c98ae1564b552198dc08.tar.bz2 |
MqTabLabel: Add popover button callback TODO comments
Diffstat (limited to 'src')
-rw-r--r-- | src/tab-label.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tab-label.c b/src/tab-label.c index fb9b4bb..6889585 100644 --- a/src/tab-label.c +++ b/src/tab-label.c @@ -135,9 +135,12 @@ create_tab_popover(GtkWidget *widget, MqTabLabel *tab_label) NEW_BUTTON(1, 2, "edit-undo", "Undo close tab"); CLICKED_CB(0, 0, G_CALLBACK(reload_tab_clicked_cb)); + /* TODO: 0, 1: Duplicate tab */ + /* TODO: 0, 2: Move tab to new window */ CLICKED_CB(0, 3, G_CALLBACK(close_clicked_cb)); CLICKED_CB(1, 0, G_CALLBACK(new_tab_clicked_cb)); CLICKED_CB(1, 1, G_CALLBACK(new_window_clicked_cb)); + /* TODO: 1, 2: Undo close tab */ /* Set up the popover. */ tab_label->popover = gtk_popover_new(widget); |