pcb 4.1.1
An interactive printed circuit board layout editor.
|
Go to the source code of this file.
Functions | |
static gint | log_window_configure_event_cb (GtkWidget *widget, GdkEventConfigure *ev, gpointer data) |
static void | log_close_cb (gpointer data) |
static void | log_destroy_cb (GtkWidget *widget, gpointer data) |
void | ghid_log_window_create () |
void | ghid_log_window_show (gboolean raise) |
static void | ghid_log_append_string (gchar *s) |
void | ghid_log (const char *fmt,...) |
void | ghid_logv (const char *fmt, va_list args) |
static gint | GhidLogShowOnAppend (int argc, char **argv, Coord x, Coord y) |
Variables | |
static GtkWidget * | log_window |
static GtkWidget * | log_text |
static gboolean | log_show_on_append = FALSE |
static const char | logshowonappend_syntax [] = "LogShowOnAppend(true|false)" |
static const char | logshowonappend_help [] |
HID_Action | ghid_log_action_list [] |
void ghid_log | ( | const char * | fmt, |
... | |||
) |
Definition at line 132 of file gui-log-window.c.
References ghid_logv().
Referenced by REGISTER_FLAGS().
static void ghid_log_append_string | ( | gchar * | s | ) | [static] |
Definition at line 122 of file gui-log-window.c.
References FALSE, ghid_log_window_create(), ghid_log_window_show(), ghid_text_view_append(), log_show_on_append, and log_text.
Referenced by ghid_logv().
void ghid_log_window_create | ( | ) |
Definition at line 73 of file gui-log-window.c.
References _, SettingType::AutoPlace, FALSE, ghid_scrolled_text_view(), ghidgui, log_close_cb(), log_destroy_cb(), log_text, log_window, log_window_configure_event_cb(), GhidGui::log_window_height, GhidGui::log_window_width, Settings, and TRUE.
Referenced by ghid_log_append_string(), and ghid_log_window_show().
void ghid_log_window_show | ( | gboolean | raise | ) |
Definition at line 113 of file gui-log-window.c.
References ghid_log_window_create(), and log_window.
Referenced by DoWindows(), and ghid_log_append_string().
void ghid_logv | ( | const char * | fmt, |
va_list | args | ||
) |
Definition at line 141 of file gui-log-window.c.
References ghid_log_append_string(), and pcb_vprintf().
Referenced by ghid_log(), and REGISTER_FLAGS().
Definition at line 157 of file gui-log-window.c.
References FALSE, log_show_on_append, and TRUE.
static void log_close_cb | ( | gpointer | data | ) | [static] |
Definition at line 60 of file gui-log-window.c.
References log_window.
Referenced by ghid_log_window_create().
static void log_destroy_cb | ( | GtkWidget * | widget, |
gpointer | data | ||
) | [static] |
Definition at line 67 of file gui-log-window.c.
References log_window.
Referenced by ghid_log_window_create().
static gint log_window_configure_event_cb | ( | GtkWidget * | widget, |
GdkEventConfigure * | ev, | ||
gpointer | data | ||
) | [static] |
Definition at line 46 of file gui-log-window.c.
References GhidGui::config_modified, FALSE, ghidgui, GhidGui::log_window_height, GhidGui::log_window_width, and TRUE.
Referenced by ghid_log_window_create().
{ {"LogShowOnAppend", 0, GhidLogShowOnAppend, logshowonappend_help, logshowonappend_syntax} , }
Definition at line 172 of file gui-log-window.c.
gboolean log_show_on_append = FALSE [static] |
Definition at line 42 of file gui-log-window.c.
Referenced by ghid_log_append_string(), and GhidLogShowOnAppend().
GtkWidget * log_text |
Definition at line 41 of file gui-log-window.c.
Referenced by ghid_log_append_string(), ghid_log_window_create(), lesstif_logv(), and log_clear().
GtkWidget* log_window [static] |
Definition at line 41 of file gui-log-window.c.
Referenced by ghid_log_window_create(), ghid_log_window_show(), log_close_cb(), and log_destroy_cb().
const char logshowonappend_help[] [static] |
"If true, the log window will be shown whenever something is appended \ to it. If false, the log will still be updated, but the window won't \ be shown."
Definition at line 151 of file gui-log-window.c.
const char logshowonappend_syntax[] = "LogShowOnAppend(true|false)" [static] |
Definition at line 148 of file gui-log-window.c.