学UG就上UG网:
按类别选择对话框函数在选择对象时提供了过滤功能,:UF_UI_select_with_class_dialog创建,用户只能选取某些规定的类别对象,对于选择的类型,用户是可以多重定义的。
按类别选择对话框C++源代码
按类别选择对象对话框C++源码:
- 头文件:
- #include <uf_modl.h>
- #include <uf_obj.h>
- /*选择子函数*/
- static int select_filter_proc_fn(tag_t object, int type[3], void * user_data,
- UF_UI_selection_p_t select)
- {
- if (object == NULL_TAG) return UF_UI_SEL_REJECT;
- else return UF_UI_SEL_ACCEPT;
- }
- static int select_init_proc(UF_UI_selection_p_t select, void * user_data)
- {
- int num_triples = 3;
- UF_UI_mask_t mask_triples[] = { UF_point_type, UF_point_subtype, UF_UI_SEL_NOT_A_FEATURE,
- UF_line_type, UF_line_normal_subtype, UF_UI_SEL_NOT_A_FEATURE,
- UF_solid_type, UF_solid_body_subtype, UF_UI_SEL_FEATURE_BODY };
- UF_UI_set_sel_mask(select, UF_UI_SEL_MASK_CLEAR_AND_ENABLE_SPECIFIC, num_triples, mask_triples);
- if ((UF_UI_set_sel_procs(select, select_filter_proc_fn, NULL, user_data)) == 0)
- return UF_UI_SEL_SUCCESS;
- else return UF_UI_SEL_FAILURE;
- }
复制代码 按类别选择对话框函数:
- /* TODO: Add your application code here */
-
- /*按类别选择对话框*/
- char Cue[] = "孔子培训_按类别选择对话框";
- char Title[] = "就上UG网学UG-www.9sug.com";
- int Scope = UF_UI_SEL_SCOPE_NO_CHANGE;
- int Response;
- int count;
- tag_t * Object;
复制代码 关键函数书写部分:
|