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
8c25ff87
Kaydet (Commit)
8c25ff87
authored
Eki 12, 2014
tarafından
Jiří Techet
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Make tm_workspace_update() public
üst
52076d19
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
6 deletions
+10
-6
geanyfunctions.h
plugins/geanyfunctions.h
+2
-0
plugindata.h
src/plugindata.h
+1
-0
plugins.c
src/plugins.c
+2
-1
tm_workspace.h
tagmanager/src/tm_workspace.h
+5
-5
No files found.
plugins/geanyfunctions.h
Dosyayı görüntüle @
8c25ff87
...
...
@@ -354,6 +354,8 @@
geany_functions->p_tm->tm_source_file_free
#define tm_workspace_remove_source_file \
geany_functions->p_tm->tm_workspace_remove_source_file
#define tm_workspace_update \
geany_functions->p_tm->tm_workspace_update
#define search_show_find_in_files_dialog \
geany_functions->p_search->search_show_find_in_files_dialog
#define highlighting_get_style \
...
...
src/plugindata.h
Dosyayı görüntüle @
8c25ff87
...
...
@@ -604,6 +604,7 @@ typedef struct TagManagerFuncs
void
(
*
tm_source_file_update
)
(
TMSourceFile
*
source_file
,
gboolean
update_workspace
);
void
(
*
tm_source_file_free
)
(
TMSourceFile
*
source_file
);
gboolean
(
*
tm_workspace_remove_source_file
)
(
TMSourceFile
*
source_file
,
gboolean
do_free
,
gboolean
update
);
void
(
*
tm_workspace_update
)
(
void
);
}
TagManagerFuncs
;
...
...
src/plugins.c
Dosyayı görüntüle @
8c25ff87
...
...
@@ -293,7 +293,8 @@ static TagManagerFuncs tagmanager_funcs = {
&
tm_workspace_add_source_file
,
&
tm_source_file_update
,
&
tm_source_file_free
,
&
tm_workspace_remove_source_file
&
tm_workspace_remove_source_file
,
&
tm_workspace_update
};
static
SearchFuncs
search_funcs
=
{
...
...
tagmanager/src/tm_workspace.h
Dosyayı görüntüle @
8c25ff87
...
...
@@ -48,6 +48,11 @@ gboolean tm_workspace_add_source_file(TMSourceFile *source_file);
*/
gboolean
tm_workspace_remove_source_file
(
TMSourceFile
*
source_file
,
gboolean
do_free
,
gboolean
update
);
/*! Calls tm_source_file_update() for all workspace member source files and creates
workspace tag array. Use if you want to globally refresh the workspace.
*/
void
tm_workspace_update
(
void
);
#ifdef GEANY_PRIVATE
...
...
@@ -89,11 +94,6 @@ gboolean tm_workspace_create_global_tags(const char *pre_process, const char **i
*/
void
tm_workspace_recreate_tags_array
(
void
);
/* Calls tm_source_file_update() for all workspace member source files.
Use if you want to globally refresh the workspace.
*/
void
tm_workspace_update
(
void
);
/* Dumps the workspace tree - useful for debugging */
void
tm_workspace_dump
(
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