diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tab.c | 6 | ||||
-rw-r--r-- | src/tab.h | 3 |
2 files changed, 9 insertions, 0 deletions
@@ -478,6 +478,12 @@ mq_tab_update_position(MqTab *tab, guint position) update_tab_label(tab); } +guint +mq_tab_get_position(MqTab *tab) +{ + return tab->position; +} + const gchar * mq_tab_get_title(MqTab *tab) { @@ -65,6 +65,9 @@ mq_tab_new_root(MqWindow *window); void mq_tab_update_position(MqTab *tab, guint position); +guint +mq_tab_get_position(MqTab *tab); + const gchar * mq_tab_get_title(MqTab *tab); |