palette_aux.c:    property_data->pos_x_palette = palette_window->pos_x;
palette_aux.c:    property_data->pos_y_palette = palette_window->pos_y;
palette_aux.c:    property_data->show_with_vertical = FALSE;
palette_aux.c:        property_data->show_with_vertical = TRUE;
palette_aux.c:    palette_window->pos_x = property_data->pos_x_palette;
palette_aux.c:    palette_window->pos_y = property_data->pos_y_palette;
palette_aux.c:    if (property_data->show_ime_button == FALSE)
palette_aux.c:    if (property_data->show_hanja_button == FALSE)
palette_aux.c:    if (property_data->show_qjbj_button == FALSE)
palette_aux.c:    if (property_data->show_vkb_button == FALSE)
palette_aux.c:    if (property_data->show_utility_button == FALSE)
palette_aux.c:    if (property_data->show_with_vertical)
palette_menu.c:    for (i = 0; i < property_data->num_ime_modules; i++) {
palette_menu.c:	ime_module_t *ime_module = property_data->ime_modules[i];
palette_menu.c:    for (i = 0; i < property_data->num_ime_modules; i++) {
palette_menu.c:	ime_module_t *ime_module = property_data->ime_modules[i];
palette_methods.c:    if (property_data != NULL && property_data->beep_enabled == 0)
property_data.c:    property_data->time_stamp = 0;
property_data.c:    property_data->fkey_vkb = 'K';
property_data.c:    property_data->show_ime_button = 1;
property_data.c:    property_data->show_hanja_button = 1;
property_data.c:    property_data->show_qjbj_button = 1;
property_data.c:    property_data->show_vkb_button = 1;
property_data.c:    property_data->show_utility_button = 1;
property_data.c:    property_data->show_with_vertical = 0;
property_data.c:    property_data->pos_x_palette = -1;
property_data.c:    property_data->pos_y_palette = -1;
property_data.c:    property_data->tooltips_enabled = 1;
property_data.c:    property_data->beep_enabled = 1;
property_data.c:    property_data->composite_style = 1;
property_data.c:    property_data->num_ime_modules = 0;
property_data.c:    property_data->ime_modules = NULL;
property_data.c:    if (property_data->ime_modules)  {
property_data.c:	for (i = 0; i < property_data->num_ime_modules; i++) {
property_data.c:	    ime_module_destroy(property_data->ime_modules[i]);
property_data.c:	free ((char *)property_data->ime_modules);
property_data.c:    printf(" show_ime_button:      %d\n", property_data->show_ime_button);
property_data.c:    printf(" show_hanja_button:     %d\n", property_data->show_hanja_button);
property_data.c:    printf(" show_qjbj_button:    %d\n", property_data->show_qjbj_button);
property_data.c:    printf(" show_vkb_button:      %d\n", property_data->show_vkb_button);
property_data.c:    printf(" show_utility_button:  %d\n", property_data->show_utility_button);
property_data.c:    printf(" show_with_vertical:   %d\n", property_data->show_with_vertical);
property_data.c:    printf(" pos_x_palette:        %d\n", property_data->pos_x_palette);
property_data.c:    printf(" pos_y_palette:        %d\n", property_data->pos_y_palette);
property_data.c:    printf(" beep_enabled:         %d\n", property_data->beep_enabled);
property_data.c:    printf(" composite_style:      %d\n", property_data->composite_style);
property_data.c:    if (property_data->ime_modules)  {
property_data.c:	for (i = 0; i < property_data->num_ime_modules; i++) {
property_data.c:	    ime_module_print(property_data->ime_modules[i]);
property_data.c:    for (i = 0; i < property_data->num_ime_modules; i++) {
property_data.c:	ime_module = property_data->ime_modules[i];
property_data.c:    for (i = 0; i < property_data->num_ime_modules; i++) {
property_data.c:	ime_module = property_data->ime_modules[i];
property_data.c:    if (property_data->ime_modules == NULL) {
property_data.c:        property_data->ime_modules = (ime_module_t **)
property_data.c:        if (property_data->ime_modules == NULL)
property_data.c:    num_ime_modules = property_data->num_ime_modules;
property_data.c:        property_data->ime_modules = (ime_module_t **)realloc(property_data->ime_modules,
property_data.c:        if (property_data->ime_modules == NULL)
property_data.c:            property_data->ime_modules[i] = NULL;
property_data.c:    property_data->ime_modules[num_ime_modules] = ime_module;
property_data.c:    property_data->num_ime_modules ++;
property_data.c:	property_data->time_stamp = atol(value);
property_data.c:	property_data->fkey_vkb = value[0];
property_data.c:	property_data->show_ime_button = 1;
property_data.c:	    property_data->show_ime_button = 0;
property_data.c:	property_data->show_hanja_button = 1;
property_data.c:	    property_data->show_hanja_button = 0;
property_data.c:	property_data->show_qjbj_button = 1;
property_data.c:	    property_data->show_qjbj_button = 0;
property_data.c:	property_data->show_vkb_button = 1;
property_data.c:	    property_data->show_vkb_button = 0;
property_data.c:	property_data->show_utility_button = 1;
property_data.c:	    property_data->show_utility_button = 0;
property_data.c:	property_data->show_with_vertical = 0;
property_data.c:	    property_data->show_with_vertical = 1;
property_data.c:	property_data->beep_enabled = 1;
property_data.c:	    property_data->beep_enabled = 0;
property_data.c:	property_data->pos_x_palette = atoi(value);
property_data.c:	property_data->pos_y_palette = atoi(value);
property_data.c:    if (property_data->ime_modules)  {
property_data.c:	for (i = 0; i < property_data->num_ime_modules; i++) {
property_data.c:	    ime_module_destroy(property_data->ime_modules[i]);
property_data.c:	free ((char *)property_data->ime_modules);
property_data.c:        property_data->ime_modules = NULL;
property_data.c:        property_data->num_ime_modules = 0;
property_data.c:    snprintf(tmp_str, sizeof(tmp_str), "%d", property_data->pos_x_palette); 
property_data.c:    snprintf(tmp_str, sizeof(tmp_str), "%d", property_data->pos_y_palette); 
property_data.c:    if (property_data->show_ime_button == 0)
property_data.c:    if (property_data->show_hanja_button == 0)
property_data.c:    if (property_data->show_qjbj_button == 0)
property_data.c:    if (property_data->show_vkb_button == 0)
property_data.c:    if (property_data->show_utility_button == 0)
property_data.c:    if (property_data->show_with_vertical == 0)
property_data.c:    if (property_data->beep_enabled == 0)
property_data.c:    snprintf(tmp_buf, 256, "%d", property_data->time_stamp);
property_data.c:    snprintf(tmp_buf, 256, "%c", property_data->fkey_vkb);
property_data.c:    for (i = 0; i < property_data->num_ime_modules; i++) {
property_data.c:	ime_module = (ime_module_t *) property_data->ime_modules[i];
property_window.c:				 property_data->show_ime_button);
property_window.c:				 property_data->show_hanja_button);
property_window.c:				 property_data->show_qjbj_button);
property_window.c:				 property_data->show_vkb_button);
property_window.c:				 property_data->show_utility_button);
property_window.c:    if (property_data->show_with_vertical) {
property_window.c:    if (property_data->beep_enabled) {
property_window.c:    fkey_vkb_id = property_data->fkey_vkb - 'A';
property_window.c:    property_data->show_ime_button =
property_window.c:    property_data->show_hanja_button =
property_window.c:    property_data->show_qjbj_button =
property_window.c:    property_data->show_vkb_button =
property_window.c:    property_data->show_utility_button =
property_window.c:    property_data->show_with_vertical =
property_window.c:    property_data->beep_enabled =
property_window.c:    property_data->fkey_vkb = fkey_vkb_id + 'A';
property_window.c:		for (i = current_ime_module_id; i < property_data->num_ime_modules; i++) {
property_window.c:		    ime_module_t *ime_module = property_data->ime_modules[i];
property_window.c:			    property_data->ime_modules[j] = property_data->ime_modules[j - 1];
property_window.c:			property_data->ime_modules[current_ime_module_id] = ime_module;
property_window.c:    property_data->show_ime_button = show_ime_button;
property_window.c:    for (i = 0; i < property_data->num_ime_modules; i++) {
property_window.c:        ime_module_t *ime_module = property_data->ime_modules[i];
property_window.c:    num_ime_modules = property_data->num_ime_modules;
property_window.c:	ime_module_t *ime_module = property_data->ime_modules[i];
