widgets.h

来自「串口调试工具。非常好的串口调试助手」· C头文件 代码 · 共 42 行

H
42
字号
/***********************************************************************//* widgets.h                                                           *//* ---------                                                           *//*           GTKTerm Software                                          *//*                      (c) Julien Schmitt                             *//*                      julien@jls-info.com                            */                      /*                                                                     *//* ------------------------------------------------------------------- *//*                                                                     *//*   Purpose                                                           *//*      Functions for the management of the GUI for the main window    *//*      - Header file -                                                *//*                                                                     *//***********************************************************************/#ifndef WIDGETS_H_#define WIDGETS_H_#define MSG_WRN 0#define MSG_ERR 1#define ASCII_VIEW 0#define HEXADECIMAL_VIEW 1void create_main_window(void);void Set_status_message(gchar *);void put_text(gchar *, guint);void put_hexadecimal(gchar *, guint);void Set_local_echo(gboolean);void show_message(gchar *, gint);void clear_display(void);void set_view(guint);gint send_serial(gchar *, gint);void Put_temp_message(const gchar *, gint);extern GtkWidget *StatusBar;extern guint id;extern GtkWidget *Text;extern GtkAccelGroup *shortcuts;#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?