Lines Matching defs:ic_values

3113 _XimGetCurrentICValues(Xic ic, XimDefICValues *ic_values)
3115 bzero((char *)ic_values, sizeof(XimDefICValues));
3117 ic_values->input_style = ic->core.input_style;
3118 ic_values->client_window = ic->core.client_window;
3119 ic_values->focus_window = ic->core.focus_window;
3120 ic_values->filter_events = ic->core.filter_events;
3121 ic_values->geometry_callback = ic->core.geometry_callback;
3122 ic_values->res_name = ic->core.res_name;
3123 ic_values->res_class = ic->core.res_class;
3124 ic_values->destroy_callback = ic->core.destroy_callback;
3125 ic_values->string_conversion_callback
3127 ic_values->string_conversion = ic->core.string_conversion;
3128 ic_values->reset_state = ic->core.reset_state;
3129 ic_values->hotkey = ic->core.hotkey;
3130 ic_values->hotkey_state = ic->core.hotkey_state;
3131 ic_values->preedit_attr = ic->core.preedit_attr;
3132 ic_values->status_attr = ic->core.status_attr;
3138 XimDefICValues *ic_values)
3140 ic->core.input_style = ic_values->input_style;
3141 ic->core.client_window = ic_values->client_window;
3142 if (ic_values->focus_window)
3143 ic->core.focus_window = ic_values->focus_window;
3144 ic->core.filter_events = ic_values->filter_events;
3145 ic->core.geometry_callback = ic_values->geometry_callback;
3146 ic->core.res_name = ic_values->res_name;
3147 ic->core.res_class = ic_values->res_class;
3148 ic->core.destroy_callback = ic_values->destroy_callback;
3150 = ic_values->string_conversion_callback;
3151 ic->core.string_conversion = ic_values->string_conversion;
3152 ic->core.reset_state = ic_values->reset_state;
3153 ic->core.hotkey = ic_values->hotkey;
3154 ic->core.hotkey_state = ic_values->hotkey_state;
3155 ic->core.preedit_attr = ic_values->preedit_attr;
3156 ic->core.status_attr = ic_values->status_attr;