Details
enum GimpLogFlags
typedef enum
{
GIMP_LOG_TOOL_EVENTS = 1 << 0,
GIMP_LOG_TOOL_FOCUS = 1 << 1,
GIMP_LOG_DND = 1 << 2,
GIMP_LOG_HELP = 1 << 3,
GIMP_LOG_DIALOG_FACTORY = 1 << 4,
GIMP_LOG_MENUS = 1 << 5,
GIMP_LOG_SAVE_DIALOG = 1 << 6,
GIMP_LOG_IMAGE_SCALE = 1 << 7,
GIMP_LOG_SHADOW_TILES = 1 << 8,
GIMP_LOG_SCALE = 1 << 9
} GimpLogFlags;
gimp_log_flags
extern GimpLogFlags gimp_log_flags;
gimp_log_init ()
void gimp_log_init (void);
gimp_log ()
void gimp_log (const gchar *function,
gint line,
const gchar *domain,
const gchar *format,
...);
function :
|
|
line :
|
|
domain :
|
|
format :
|
|
... :
|
|
gimp_logv ()
void gimp_logv (const gchar *function,
gint line,
const gchar *domain,
const gchar *format,
va_list args);
function :
|
|
line :
|
|
domain :
|
|
format :
|
|
args :
|
|
GIMP_LOG()
#define GIMP_LOG(type, ...)
TOOL_EVENTS
#define TOOL_EVENTS GIMP_LOG_TOOL_EVENTS
TOOL_FOCUS
#define TOOL_FOCUS GIMP_LOG_TOOL_FOCUS
DND
#define DND GIMP_LOG_DND
HELP
#define HELP GIMP_LOG_HELP
DIALOG_FACTORY
#define DIALOG_FACTORY GIMP_LOG_DIALOG_FACTORY
MENUS
#define MENUS GIMP_LOG_MENUS
SAVE_DIALOG
#define SAVE_DIALOG GIMP_LOG_SAVE_DIALOG
IMAGE_SCALE
#define IMAGE_SCALE GIMP_LOG_IMAGE_SCALE
SHADOW_TILES
#define SHADOW_TILES GIMP_LOG_SHADOW_TILES