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
eb04c514
Kaydet (Commit)
eb04c514
authored
Ock 08, 2012
tarafından
Nick Treleaven
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Add API function ui_lookup_stock_label()
Using this can avoid adding i18n strings unnecessarily.
üst
8f44132d
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
26 additions
and
15 deletions
+26
-15
geanyfunctions.h
plugins/geanyfunctions.h
+2
-0
splitwindow.c
plugins/splitwindow.c
+1
-13
keybindings.c
src/keybindings.c
+2
-1
plugindata.h
src/plugindata.h
+1
-0
plugins.c
src/plugins.c
+2
-1
ui_utils.c
src/ui_utils.c
+16
-0
ui_utils.h
src/ui_utils.h
+2
-0
No files found.
plugins/geanyfunctions.h
Dosyayı görüntüle @
eb04c514
...
...
@@ -302,6 +302,8 @@
geany_functions->p_ui->ui_combo_box_add_to_history
#define ui_menu_add_document_items_sorted \
geany_functions->p_ui->ui_menu_add_document_items_sorted
#define ui_lookup_stock_label \
geany_functions->p_ui->ui_lookup_stock_label
#define dialogs_show_question \
geany_functions->p_dialogs->dialogs_show_question
#define dialogs_show_msgbox \
...
...
plugins/splitwindow.c
Dosyayı görüntüle @
eb04c514
...
...
@@ -199,18 +199,6 @@ static void set_state(enum State id)
}
static
const
gchar
*
ui_get_stock_label
(
const
gchar
*
stock_id
)
{
GtkStockItem
item
;
if
(
gtk_stock_lookup
(
stock_id
,
&
item
))
return
item
.
label
;
g_warning
(
"No stock id '%s'!"
,
stock_id
);
return
""
;
}
/* Create a GtkToolButton with stock icon, label and tooltip.
* @param label can be NULL to use stock label text. @a label can contain underscores,
* which will be removed.
...
...
@@ -222,7 +210,7 @@ static GtkWidget *ui_tool_button_new(const gchar *stock_id, const gchar *label,
if
(
stock_id
&&
!
label
)
{
label
=
ui_
get
_stock_label
(
stock_id
);
label
=
ui_
lookup
_stock_label
(
stock_id
);
}
dupl
=
utils_str_remove_chars
(
g_strdup
(
label
),
"_"
);
label
=
dupl
;
...
...
src/keybindings.c
Dosyayı görüntüle @
eb04c514
...
...
@@ -265,7 +265,8 @@ static void init_default_kb(void)
keybindings_set_item
(
group
,
GEANY_KEYS_PROJECT_OPEN
,
NULL
,
0
,
0
,
"project_open"
,
_
(
"Open"
),
LW
(
project_open1
));
keybindings_set_item
(
group
,
GEANY_KEYS_PROJECT_PROPERTIES
,
NULL
,
0
,
0
,
"project_properties"
,
_
(
"Project properties"
),
LW
(
project_properties1
));
0
,
0
,
"project_properties"
,
ui_lookup_stock_label
(
GTK_STOCK_PROPERTIES
),
LW
(
project_properties1
));
group
=
keybindings_get_core_group
(
GEANY_KEY_GROUP_EDITOR
);
...
...
src/plugindata.h
Dosyayı görüntüle @
eb04c514
...
...
@@ -477,6 +477,7 @@ typedef struct UIUtilsFuncs
const
gchar
*
text
,
gint
history_len
);
void
(
*
ui_menu_add_document_items_sorted
)
(
GtkMenu
*
menu
,
struct
GeanyDocument
*
active
,
GCallback
callback
,
GCompareFunc
compare_func
);
const
gchar
*
(
*
ui_lookup_stock_label
)(
const
gchar
*
stock_id
);
}
UIUtilsFuncs
;
...
...
src/plugins.c
Dosyayı görüntüle @
eb04c514
...
...
@@ -247,7 +247,8 @@ static UIUtilsFuncs uiutils_funcs = {
&
ui_is_keyval_enter_or_return
,
&
ui_get_gtk_settings_integer
,
&
ui_combo_box_add_to_history
,
&
ui_menu_add_document_items_sorted
&
ui_menu_add_document_items_sorted
,
&
ui_lookup_stock_label
};
static
DialogFuncs
dialog_funcs
=
{
...
...
src/ui_utils.c
Dosyayı görüntüle @
eb04c514
...
...
@@ -2784,3 +2784,19 @@ void ui_focus_current_document(void)
if
(
doc
!=
NULL
)
document_grab_focus
(
doc
);
}
/** Finds the label text associated with @a stock_id.
* @p stock_id e.g. @c GTK_STOCK_OPEN.
* @return .
* @since Geany 1.22 */
const
gchar
*
ui_lookup_stock_label
(
const
gchar
*
stock_id
)
{
GtkStockItem
item
;
if
(
gtk_stock_lookup
(
stock_id
,
&
item
))
return
item
.
label
;
g_warning
(
"No stock id '%s'!"
,
stock_id
);
return
NULL
;
}
src/ui_utils.h
Dosyayı görüntüle @
eb04c514
...
...
@@ -229,6 +229,8 @@ GtkWidget *ui_label_new_bold(const gchar *text);
void
ui_label_set_markup
(
GtkLabel
*
label
,
const
gchar
*
format
,
...)
G_GNUC_PRINTF
(
2
,
3
);
const
gchar
*
ui_lookup_stock_label
(
const
gchar
*
stock_id
);
/* End of general widget functions */
void
ui_init_builder
(
void
);
...
...
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