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
7f7f6697
Kaydet (Commit)
7f7f6697
authored
Tem 04, 2014
tarafından
Colomban Wendling
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add tooltips to explain the purpose of the New Project dialog fields
üst
11b50493
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
project.c
src/project.c
+7
-0
No files found.
src/project.c
Dosyayı görüntüle @
7f7f6697
...
...
@@ -110,6 +110,7 @@ void project_new(void)
GtkWidget
*
button
;
GtkWidget
*
bbox
;
GtkWidget
*
label
;
gchar
*
tooltip
;
PropertyDialogElements
*
e
;
if
(
!
project_ask_close
())
...
...
@@ -143,6 +144,7 @@ void project_new(void)
gtk_entry_set_activates_default
(
GTK_ENTRY
(
e
->
name
),
TRUE
);
ui_entry_add_clear_icon
(
GTK_ENTRY
(
e
->
name
));
gtk_entry_set_max_length
(
GTK_ENTRY
(
e
->
name
),
MAX_NAME_LEN
);
gtk_widget_set_tooltip_text
(
e
->
name
,
_
(
"Project name"
));
ui_table_add_row
(
GTK_TABLE
(
table
),
0
,
label
,
e
->
name
,
NULL
);
...
...
@@ -153,6 +155,11 @@ void project_new(void)
gtk_entry_set_activates_default
(
GTK_ENTRY
(
e
->
file_name
),
TRUE
);
ui_entry_add_clear_icon
(
GTK_ENTRY
(
e
->
file_name
));
gtk_entry_set_width_chars
(
GTK_ENTRY
(
e
->
file_name
),
30
);
tooltip
=
g_strdup_printf
(
_
(
"Path of the file representing the project and storing its settings. "
"It should normally have the
\"
%s
\"
extension."
),
"."
GEANY_PROJECT_EXT
);
gtk_widget_set_tooltip_text
(
e
->
file_name
,
tooltip
);
g_free
(
tooltip
);
button
=
gtk_button_new
();
g_signal_connect
(
button
,
"clicked"
,
G_CALLBACK
(
on_file_save_button_clicked
),
e
);
image
=
gtk_image_new_from_stock
(
GTK_STOCK_OPEN
,
GTK_ICON_SIZE_BUTTON
);
...
...
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