Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
G
geany
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
geany
Commits
a4082308
Kaydet (Commit)
a4082308
authored
Ock 12, 2017
tarafından
Matthew Brush
Kaydeden (comit)
Matthew Brush
Agu 04, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add "Close Documents to the Right" feature
Similar to applications like Firefox and Chromium.
üst
3e864317
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
notebook.c
src/notebook.c
+29
-0
No files found.
src/notebook.c
Dosyayı görüntüle @
a4082308
...
...
@@ -430,6 +430,29 @@ static void on_open_in_new_window_activate(GtkMenuItem *menuitem, gpointer user_
}
static
gboolean
has_tabs_on_right
(
GeanyDocument
*
doc
)
{
GtkNotebook
*
nb
=
GTK_NOTEBOOK
(
main_widgets
.
notebook
);
gint
total_pages
=
gtk_notebook_get_n_pages
(
nb
);
gint
doc_page
=
document_get_notebook_page
(
doc
);
return
total_pages
>
(
doc_page
+
1
);
}
void
on_close_documents_right_activate
(
GtkMenuItem
*
menuitem
,
GeanyDocument
*
doc
)
{
g_return_if_fail
(
has_tabs_on_right
(
doc
));
GtkNotebook
*
nb
=
GTK_NOTEBOOK
(
main_widgets
.
notebook
);
gint
doc_page
=
document_get_notebook_page
(
doc
);
for
(
gint
i
=
doc_page
+
1
;
i
<
gtk_notebook_get_n_pages
(
nb
);
)
{
if
(
!
document_close
(
document_get_from_page
(
i
)))
i
++
;
// only increment if tab wasn't closed
}
gtk_notebook_set_current_page
(
nb
,
doc_page
);
}
static
void
show_tab_bar_popup_menu
(
GdkEventButton
*
event
,
GeanyDocument
*
doc
)
{
GtkWidget
*
menu_item
;
...
...
@@ -473,6 +496,12 @@ static void show_tab_bar_popup_menu(GdkEventButton *event, GeanyDocument *doc)
g_signal_connect
(
menu_item
,
"activate"
,
G_CALLBACK
(
on_close_other_documents1_activate
),
doc
);
gtk_widget_set_sensitive
(
GTK_WIDGET
(
menu_item
),
(
doc
!=
NULL
));
menu_item
=
ui_image_menu_item_new
(
GTK_STOCK_CLOSE
,
_
(
"Close Documents to the _Right"
));
gtk_widget_show
(
menu_item
);
gtk_container_add
(
GTK_CONTAINER
(
menu
),
menu_item
);
g_signal_connect
(
menu_item
,
"activate"
,
G_CALLBACK
(
on_close_documents_right_activate
),
doc
);
gtk_widget_set_sensitive
(
GTK_WIDGET
(
menu_item
),
has_tabs_on_right
(
doc
));
menu_item
=
ui_image_menu_item_new
(
GTK_STOCK_CLOSE
,
_
(
"C_lose All"
));
gtk_widget_show
(
menu_item
);
gtk_container_add
(
GTK_CONTAINER
(
menu
),
menu_item
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment