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
cb179943
Kaydet (Commit)
cb179943
authored
Ock 23, 2018
tarafından
Thomas Martitz
Kaydeden (comit)
Colomban Wendling
Nis 05, 2018
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
msgwin: beautify doxygen comments a bit
üst
d3417b7b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
51 additions
and
42 deletions
+51
-42
msgwindow.c
src/msgwindow.c
+51
-42
No files found.
src/msgwindow.c
Dosyayı görüntüle @
cb179943
...
...
@@ -106,9 +106,11 @@ void msgwin_show_hide_tabs(void)
}
/** Sets the Messages path for opening any parsed filenames without absolute path
* from message lines.
* @param messages_dir The directory. **/
/**
* Sets the Messages path for opening any parsed filenames without absolute path from message lines.
*
* @param messages_dir The directory.
**/
GEANY_API_SYMBOL
void
msgwin_set_messages_dir
(
const
gchar
*
messages_dir
)
{
...
...
@@ -315,11 +317,13 @@ static const GdkColor *get_color(gint msg_color)
/**
*
Adds a new message in the compiler tab treeview in the messages window.
* Adds a new message in the compiler tab treeview in the messages window.
*
* @param msg_color A color to be used for the text. It must be an element of #MsgColors.
* @param format @c printf()-style format string.
* @param ... Arguments for the @c format string.
* @param msg_color A color to be used for the text. It must be an element of #MsgColors.
* @param format @c printf()-style format string.
* @param ... Arguments for the @c format string.
*
* @since 0.15
**/
GEANY_API_SYMBOL
void
msgwin_compiler_add
(
gint
msg_color
,
const
gchar
*
format
,
...)
...
...
@@ -335,12 +339,12 @@ void msgwin_compiler_add(gint msg_color, const gchar *format, ...)
}
/**
*
Adds a new message in the compiler tab treeview in the messages window.
* Adds a new message in the compiler tab treeview in the messages window.
*
*
@param msg_color A color to be used for the text. It must be an element of #MsgColors.
*
@param msg
Compiler message to be added.
* @param msg_color A color to be used for the text. It must be an element of #MsgColors.
*
@param msg
Compiler message to be added.
*
*
@since @todo
* @since @todo
**/
GEANY_API_SYMBOL
void
msgwin_compiler_add_string
(
gint
msg_color
,
const
gchar
*
msg
)
...
...
@@ -391,15 +395,16 @@ void msgwin_show_hide(gboolean show)
/**
* Adds a new message in the messages tab treeview in the messages window.
* If @a line and @a doc are set, clicking on this line jumps into the file which is specified
* by @a doc into the line specified with @a line.
* Adds a new message in the messages tab treeview in the messages window.
*
* @param msg_color A color to be used for the text. It must be an element of #MsgColors.
* @param line The document's line where the message belongs to. Set to @c -1 to ignore.
* @param doc The document. Set to @c NULL to ignore.
* @param format @c printf()-style format string.
* @param ... Arguments for the @c format string.
* If @a line and @a doc are set, clicking on this line jumps into the file
* which is specified by @a doc into the line specified with @a line.
*
* @param msg_color A color to be used for the text. It must be an element of #MsgColors.
* @param line The document's line where the message belongs to. Set to @c -1 to ignore.
* @param doc @nullable The document. Set to @c NULL to ignore.
* @param format @c printf()-style format string.
* @param ... Arguments for the @c format string.
*
* @since 0.15
**/
...
...
@@ -419,16 +424,17 @@ void msgwin_msg_add(gint msg_color, gint line, GeanyDocument *doc, const gchar *
/**
* Adds a new message in the messages tab treeview in the messages window.
* If @a line and @a doc are set, clicking on this line jumps into the
* file which is specified by @a doc into the line specified with @a line.
* Adds a new message in the messages tab treeview in the messages window.
*
* If @a line and @a doc are set, clicking on this line jumps into the
* file which is specified by @a doc into the line specified with @a line.
*
*
@param msg_color A color to be used for the text. It must be an element of #MsgColors.
*
@param line
The document's line where the message belongs to. Set to @c -1 to ignore.
*
@param doc
The document. Set to @c NULL to ignore.
*
@param string
Message to be added.
* @param msg_color A color to be used for the text. It must be an element of #MsgColors.
*
@param line
The document's line where the message belongs to. Set to @c -1 to ignore.
*
@param doc @nullable
The document. Set to @c NULL to ignore.
*
@param string
Message to be added.
*
*
@since @todo
* @since @todo
**/
GEANY_API_SYMBOL
void
msgwin_msg_add_string
(
gint
msg_color
,
gint
line
,
GeanyDocument
*
doc
,
const
gchar
*
string
)
...
...
@@ -468,12 +474,13 @@ void msgwin_msg_add_string(gint msg_color, gint line, GeanyDocument *doc, const
/**
* Logs a status message *without* setting the status bar.
* (Use ui_set_statusbar() to display text on the statusbar)
* Logs a status message *without* setting the status bar.
*
* Use @ref ui_set_statusbar() to display text on the statusbar.
*
*
@param string Status message to be logged.
* @param string Status message to be logged.
*
*
@since @todo
* @since @todo
**/
GEANY_API_SYMBOL
void
msgwin_status_add_string
(
const
gchar
*
string
)
...
...
@@ -503,11 +510,12 @@ void msgwin_status_add_string(const gchar *string)
}
/**
* Logs a status message *without* setting the status bar.
* (Use ui_set_statusbar() to display text on the statusbar)
* Logs a status message *without* setting the status bar.
*
* @param format @c printf()-style format string.
* @param ... Arguments for the @c format string.
* Use @ref ui_set_statusbar() to display text on the statusbar.
*
* @param format @c printf()-style format string.
* @param ... Arguments for the @c format string.
**/
GEANY_API_SYMBOL
void
msgwin_status_add
(
const
gchar
*
format
,
...)
...
...
@@ -1272,12 +1280,13 @@ static gboolean on_msgwin_button_press_event(GtkWidget *widget, GdkEventButton *
/**
* Switches to the given notebook tab of the messages window and shows the messages window
* if it was previously hidden and @a show is set to @c TRUE.
* Switches to the given notebook tab of the messages window.
*
* The messages window is shown if it was previously hidden and @a show is set to @c TRUE.
*
*
@param tabnum An index of a tab in the messages window. Valid values are all elements of
* #MessageWindowTabNum.
*
@param show
Whether to show the messages window at all if it was hidden before.
*
@param tabnum An index of a tab in the messages window. Valid values are
*
all elements of
#MessageWindowTabNum.
*
@param show
Whether to show the messages window at all if it was hidden before.
*
* @since 0.15
**/
...
...
@@ -1309,9 +1318,9 @@ void msgwin_switch_tab(gint tabnum, gboolean show)
/**
*
Removes all messages from a tab specified by @a tabnum in the messages window.
* Removes all messages from a tab specified by @a tabnum in the messages window.
*
*
@param tabnum An index of a tab in the messages window which should be cleared.
* @param tabnum An index of a tab in the messages window which should be cleared.
* Valid values are @c MSG_STATUS, @c MSG_COMPILER and @c MSG_MESSAGE.
*
* @since 0.15
...
...
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