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
667d0b51
Kaydet (Commit)
667d0b51
authored
Agu 15, 2017
tarafından
Colomban Wendling
Kaydeden (comit)
Thomas Martitz
Kas 14, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix indentation
üst
b0d3b5ed
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
12 deletions
+12
-12
keyfile.c
src/keyfile.c
+4
-4
prefs.c
src/prefs.c
+8
-8
No files found.
src/keyfile.c
Dosyayı görüntüle @
667d0b51
...
@@ -422,8 +422,8 @@ static void save_dialog_prefs(GKeyFile *config)
...
@@ -422,8 +422,8 @@ static void save_dialog_prefs(GKeyFile *config)
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_load_session"
,
prefs
.
load_session
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_load_session"
,
prefs
.
load_session
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_project_session"
,
project_prefs
.
project_session
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_project_session"
,
project_prefs
.
project_session
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_project_file_in_basedir"
,
project_prefs
.
project_file_in_basedir
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_project_file_in_basedir"
,
project_prefs
.
project_file_in_basedir
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_save_winpos"
,
prefs
.
save_winpos
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_save_winpos"
,
prefs
.
save_winpos
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_save_wingeom"
,
prefs
.
save_wingeom
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_save_wingeom"
,
prefs
.
save_wingeom
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_confirm_exit"
,
prefs
.
confirm_exit
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_confirm_exit"
,
prefs
.
confirm_exit
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_suppress_status_messages"
,
prefs
.
suppress_status_messages
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"pref_main_suppress_status_messages"
,
prefs
.
suppress_status_messages
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"switch_msgwin_pages"
,
prefs
.
switch_to_status
);
g_key_file_set_boolean
(
config
,
PACKAGE
,
"switch_msgwin_pages"
,
prefs
.
switch_to_status
);
...
@@ -759,8 +759,8 @@ static void load_dialog_prefs(GKeyFile *config)
...
@@ -759,8 +759,8 @@ static void load_dialog_prefs(GKeyFile *config)
prefs
.
load_session
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"pref_main_load_session"
,
TRUE
);
prefs
.
load_session
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"pref_main_load_session"
,
TRUE
);
project_prefs
.
project_session
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"pref_main_project_session"
,
TRUE
);
project_prefs
.
project_session
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"pref_main_project_session"
,
TRUE
);
project_prefs
.
project_file_in_basedir
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"pref_main_project_file_in_basedir"
,
FALSE
);
project_prefs
.
project_file_in_basedir
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"pref_main_project_file_in_basedir"
,
FALSE
);
prefs
.
save_winpos
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"pref_main_save_winpos"
,
TRUE
);
prefs
.
save_winpos
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"pref_main_save_winpos"
,
TRUE
);
prefs
.
save_wingeom
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"pref_main_save_wingeom"
,
TRUE
);
prefs
.
save_wingeom
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"pref_main_save_wingeom"
,
TRUE
);
prefs
.
beep_on_errors
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"beep_on_errors"
,
TRUE
);
prefs
.
beep_on_errors
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"beep_on_errors"
,
TRUE
);
prefs
.
switch_to_status
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"switch_msgwin_pages"
,
FALSE
);
prefs
.
switch_to_status
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"switch_msgwin_pages"
,
FALSE
);
prefs
.
auto_focus
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"auto_focus"
,
FALSE
);
prefs
.
auto_focus
=
utils_get_setting_boolean
(
config
,
PACKAGE
,
"auto_focus"
,
FALSE
);
...
...
src/prefs.c
Dosyayı görüntüle @
667d0b51
...
@@ -417,11 +417,11 @@ static void prefs_init_dialog(void)
...
@@ -417,11 +417,11 @@ static void prefs_init_dialog(void)
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_project_file_in_basedir"
);
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_project_file_in_basedir"
);
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
widget
),
project_prefs
.
project_file_in_basedir
);
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
widget
),
project_prefs
.
project_file_in_basedir
);
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_save_win_pos"
);
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_save_win_pos"
);
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
widget
),
prefs
.
save_winpos
);
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
widget
),
prefs
.
save_winpos
);
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_save_win_geom"
);
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_save_win_geom"
);
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
widget
),
prefs
.
save_wingeom
);
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
widget
),
prefs
.
save_wingeom
);
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_ask_for_quit"
);
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_ask_for_quit"
);
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
widget
),
prefs
.
confirm_exit
);
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
widget
),
prefs
.
confirm_exit
);
...
@@ -900,11 +900,11 @@ on_prefs_dialog_response(GtkDialog *dialog, gint response, gpointer user_data)
...
@@ -900,11 +900,11 @@ on_prefs_dialog_response(GtkDialog *dialog, gint response, gpointer user_data)
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_project_file_in_basedir"
);
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_project_file_in_basedir"
);
project_prefs
.
project_file_in_basedir
=
gtk_toggle_button_get_active
(
GTK_TOGGLE_BUTTON
(
widget
));
project_prefs
.
project_file_in_basedir
=
gtk_toggle_button_get_active
(
GTK_TOGGLE_BUTTON
(
widget
));
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_save_win_pos"
);
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_save_win_pos"
);
prefs
.
save_winpos
=
gtk_toggle_button_get_active
(
GTK_TOGGLE_BUTTON
(
widget
));
prefs
.
save_winpos
=
gtk_toggle_button_get_active
(
GTK_TOGGLE_BUTTON
(
widget
));
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_save_win_geom"
);
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_save_win_geom"
);
prefs
.
save_wingeom
=
gtk_toggle_button_get_active
(
GTK_TOGGLE_BUTTON
(
widget
));
prefs
.
save_wingeom
=
gtk_toggle_button_get_active
(
GTK_TOGGLE_BUTTON
(
widget
));
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_ask_for_quit"
);
widget
=
ui_lookup_widget
(
ui_widgets
.
prefs_dialog
,
"check_ask_for_quit"
);
prefs
.
confirm_exit
=
gtk_toggle_button_get_active
(
GTK_TOGGLE_BUTTON
(
widget
));
prefs
.
confirm_exit
=
gtk_toggle_button_get_active
(
GTK_TOGGLE_BUTTON
(
widget
));
...
...
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