Lines Matching refs:item

1186     flow_item *item;  in CheckEmptyScreenFlow()  local
1206 item = flow->GetFlowItem(index); in CheckEmptyScreenFlow()
1207 if (item->trigger_list) in CheckEmptyScreenFlow()
3118 flow_item *item; in WriteScreenFlow() local
3124 item = screen_flow->GetFlowItem(index); in WriteScreenFlow()
3125 WriteFlowItem(writer, item); in WriteScreenFlow()
3132 void studiox_project::WriteFlowItem(xml_writer &writer, flow_item *item) in WriteFlowItem() argument
3134 if (item) in WriteFlowItem()
3137 rect.gx_rectangle_left = (GX_VALUE)item->rect.left; in WriteFlowItem()
3138 rect.gx_rectangle_top = (GX_VALUE)item->rect.top; in WriteFlowItem()
3139 rect.gx_rectangle_right = (GX_VALUE)item->rect.right; in WriteFlowItem()
3140 rect.gx_rectangle_bottom = (GX_VALUE)item->rect.bottom; in WriteFlowItem()
3143 writer.WriteString("screen_name", item->screen_name); in WriteFlowItem()
3145 writer.WriteBool("enabled", item->enabled); in WriteFlowItem()
3147 trigger_info *trigger = item->trigger_list; in WriteFlowItem()
4119 flow_item *item; in ReadFlowItem() local
4123 item = new flow_item; in ReadFlowItem()
4124 reader.ReadString("screen_name", item->screen_name); in ReadFlowItem()
4126 item->rect.left = rect.gx_rectangle_left; in ReadFlowItem()
4127 item->rect.top = rect.gx_rectangle_top; in ReadFlowItem()
4128 item->rect.right = rect.gx_rectangle_right; in ReadFlowItem()
4129 item->rect.bottom = rect.gx_rectangle_bottom; in ReadFlowItem()
4130 if (!reader.ReadBool("enabled", item->enabled)) in ReadFlowItem()
4132 item->enabled = TRUE; in ReadFlowItem()
4134 ReadTriggerInfo(reader, display_index, item); in ReadFlowItem()
4136 flow->AddFlowItem(item); in ReadFlowItem()
4143 void studiox_project::ReadTriggerInfo(xml_reader &reader, int display_index, flow_item *item) in ReadTriggerInfo() argument
4267 item->trigger_list = head; in ReadTriggerInfo()