?? stdplugins-intl.h
字號(hào):
#ifndef __STDPLUGINS_INTL_H__#define __STDPLUGINS_INTL_H__#include <locale.h>#include "libgimp/gimpintl.h"#ifdef HAVE_LC_MESSAGES#define INIT_I18N() G_STMT_START{ \ setlocale(LC_MESSAGES, ""); \ bindtextdomain("gimp-std-plugins", LOCALEDIR); \ textdomain("gimp-std-plugins"); \ }G_STMT_END#else#define INIT_I18N() G_STMT_START{ \ bindtextdomain("gimp-std-plugins", LOCALEDIR); \ textdomain("gimp-std-plugins"); \ }G_STMT_END#endif#define INIT_I18N_UI() G_STMT_START{ \ gtk_set_locale(); \ setlocale (LC_NUMERIC, "C"); \ INIT_I18N(); \ }G_STMT_END#endif /* __STDPLUGINS_INTL_H__ */
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -