📄 abook.h
字号:
/* * addressbook dialog * * Authors: Gerhard Khueny <e9625442@student.tuwien.ac.at> * * TODO: * * Fixes: * * For license terms, see the file COPYING in the project directory. */#ifndef GSMS_ABOOK_H #define GSMS_ABOOK_H typedef struct { gchar *nick; gchar *name; gchar *number; GList *alias;}AbookEntry; GtkWidget* gsms_abook_new(void); void abook_open (void); AbookEntry* abook_search(gchar *nick);void abook_insert_entry(GtkWidget *entry);#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -