Welcome to mirror list, hosted at ThFree Co, Russian Federation.

outliner_collections.c « space_outliner « editors « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 206cdd5734234f5720682f90e1f352fb141dcafa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
/*
 * ***** BEGIN GPL LICENSE BLOCK *****
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 *
 * Contributor(s): Blender Foundation, Dalai Felinto
 *
 * ***** END GPL LICENSE BLOCK *****
 */

/** \file blender/editors/space_outliner/outliner_collections.c
 *  \ingroup spoutliner
 */

#include <string.h>

#include "BLI_utildefines.h"
#include "BLI_listbase.h"

#include "DNA_group_types.h"
#include "DNA_object_types.h"

#include "BKE_context.h"
#include "BKE_collection.h"
#include "BKE_layer.h"
#include "BKE_main.h"
#include "BKE_report.h"

#include "DEG_depsgraph.h"
#include "DEG_depsgraph_build.h"

#include "ED_object.h"
#include "ED_screen.h"

#include "WM_api.h"
#include "WM_types.h"

#include "RNA_access.h"
#include "RNA_define.h"
#include "RNA_enum_types.h"

#include "UI_resources.h"

#include "outliner_intern.h" /* own include */

/* -------------------------------------------------------------------- */

bool outliner_is_collection_tree_element(const TreeElement *te)
{
	TreeStoreElem *tselem = TREESTORE(te);

	if (!tselem) {
		return false;
	}

	if (ELEM(tselem->type, TSE_LAYER_COLLECTION, TSE_SCENE_COLLECTION_BASE, TSE_VIEW_COLLECTION_BASE)) {
		return true;
	}
	else if (tselem->type == 0 && te->idcode == ID_GR) {
		return true;
	}

	return false;
}

Collection *outliner_collection_from_tree_element(const TreeElement *te)
{
	TreeStoreElem *tselem = TREESTORE(te);

	if (!tselem) {
		return false;
	}

	if (tselem->type == TSE_LAYER_COLLECTION) {
		LayerCollection *lc = te->directdata;
		return lc->collection;
	}
	else if (ELEM(tselem->type, TSE_SCENE_COLLECTION_BASE, TSE_VIEW_COLLECTION_BASE)) {
		Scene *scene = (Scene*)tselem->id;
		return BKE_collection_master(scene);
	}
	else if (tselem->type == 0 && te->idcode == ID_GR) {
		return (Collection*)tselem->id;
	}

	return NULL;
}

/* -------------------------------------------------------------------- */
/* Poll functions. */

static int collections_editor_poll(bContext *C)
{
	SpaceOops *so = CTX_wm_space_outliner(C);
	return (so != NULL) && ELEM(so->outlinevis, SO_VIEW_LAYER, SO_SCENES);
}


/********************************* New Collection ****************************/

struct CollectionNewData
{
	bool error;
	Collection *collection;
};

static TreeTraversalAction collection_find_selected_to_add(TreeElement *te, void *customdata)
{
	struct CollectionNewData *data = customdata;
	Collection *collection = outliner_collection_from_tree_element(te);

	if (!collection) {
		return TRAVERSE_SKIP_CHILDS;
	}

	if (data->collection != NULL) {
		data->error = true;
		return TRAVERSE_BREAK;
	}

	data->collection = collection;
	return TRAVERSE_CONTINUE;
}

static int collection_new_exec(bContext *C, wmOperator *op)
{
	SpaceOops *soops = CTX_wm_space_outliner(C);
	Main *bmain = CTX_data_main(C);
	Scene *scene = CTX_data_scene(C);

	struct CollectionNewData data = {
		.error = false,
		.collection = NULL,
	};

	if (RNA_boolean_get(op->ptr, "nested")) {
		outliner_tree_traverse(soops, &soops->tree, 0, TSE_SELECTED, collection_find_selected_to_add, &data);

		if (data.error) {
			BKE_report(op->reports, RPT_ERROR, "More than one collection is selected");
			return OPERATOR_CANCELLED;
		}
	}

	if (!data.collection && (soops->outlinevis == SO_VIEW_LAYER)) {
		data.collection = BKE_collection_master(scene);
	}

	BKE_collection_add(
	            bmain,
	            data.collection,
	            NULL);

	outliner_cleanup_tree(soops);
	DEG_relations_tag_update(bmain);
	WM_main_add_notifier(NC_SCENE | ND_LAYER, NULL);
	return OPERATOR_FINISHED;
}

void OUTLINER_OT_collection_new(wmOperatorType *ot)
{
	/* identifiers */
	ot->name = "New Collection";
	ot->idname = "OUTLINER_OT_collection_new";
	ot->description = "Add a new collection inside selected collection";

	/* api callbacks */
	ot->exec = collection_new_exec;
	ot->poll = collections_editor_poll;

	/* flags */
	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;

	/* properties */
	PropertyRNA *prop = RNA_def_boolean(ot->srna, "nested", true, "Nested", "Add as child of selected collection");;
	RNA_def_property_flag(prop, PROP_SKIP_SAVE);
}

/**************************** Delete Collection ******************************/

struct CollectionEditData {
	Scene *scene;
	SpaceOops *soops;
	GSet *collections_to_edit;
};

static TreeTraversalAction collection_find_data_to_edit(TreeElement *te, void *customdata)
{
	struct CollectionEditData *data = customdata;
	Collection *collection = outliner_collection_from_tree_element(te);

	if (!collection) {
		return TRAVERSE_SKIP_CHILDS;
	}

	if (collection == BKE_collection_master(data->scene)) {
		/* skip - showing warning/error message might be missleading
		 * when deleting multiple collections, so just do nothing */
	}
	else {
		/* Delete, duplicate and link don't edit children, those will come along
		 * with the parents. */
		BLI_gset_add(data->collections_to_edit, collection);
		return TRAVERSE_SKIP_CHILDS;
	}

	return TRAVERSE_CONTINUE;
}

static int collection_delete_exec(bContext *C, wmOperator *op)
{
	Main *bmain = CTX_data_main(C);
	Scene *scene = CTX_data_scene(C);
	SpaceOops *soops = CTX_wm_space_outliner(C);
	struct CollectionEditData data = {.scene = scene, .soops = soops};
	bool hierarchy = RNA_boolean_get(op->ptr, "hierarchy");

	data.collections_to_edit = BLI_gset_ptr_new(__func__);

	/* We first walk over and find the Collections we actually want to delete (ignoring duplicates). */
	outliner_tree_traverse(soops, &soops->tree, 0, TSE_SELECTED, collection_find_data_to_edit, &data);

	/* Effectively delete the collections. */
	GSetIterator collections_to_edit_iter;
	GSET_ITER(collections_to_edit_iter, data.collections_to_edit) {
		/* TODO: what if collection was child and got deleted in the meantime? */
		Collection *collection = BLI_gsetIterator_getKey(&collections_to_edit_iter);
		BKE_collection_delete(bmain, collection, hierarchy);
	}

	BLI_gset_free(data.collections_to_edit, NULL);

	DEG_relations_tag_update(bmain);

	/* TODO(sergey): Use proper flag for tagging here. */
	DEG_id_tag_update(&scene->id, 0);

	WM_main_add_notifier(NC_SCENE | ND_LAYER, NULL);

	return OPERATOR_FINISHED;
}

void OUTLINER_OT_collection_delete(wmOperatorType *ot)
{
	/* identifiers */
	ot->name = "Delete Collection";
	ot->idname = "OUTLINER_OT_collection_delete";
	ot->description = "Delete selected collections";

	/* api callbacks */
	ot->exec = collection_delete_exec;
	ot->poll = collections_editor_poll;

	/* flags */
	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;

	/* properties */
	PropertyRNA *prop = RNA_def_boolean(ot->srna, "hierarchy", false, "Hierarchy", "Delete child objects and collections");
	RNA_def_property_flag(prop, PROP_SKIP_SAVE);
}

/****************************** Select Objects *******************************/

struct CollectionObjectsSelectData {
	bool error;
	LayerCollection *layer_collection;
};

static TreeTraversalAction outliner_find_first_selected_layer_collection(TreeElement *te, void *customdata)
{
	struct CollectionObjectsSelectData *data = customdata;
	TreeStoreElem *tselem = TREESTORE(te);

	switch (tselem->type) {
		case TSE_LAYER_COLLECTION:
			data->layer_collection = te->directdata;
			return TRAVERSE_BREAK;
		case TSE_R_LAYER:
		case TSE_SCENE_COLLECTION_BASE:
		case TSE_VIEW_COLLECTION_BASE:
			return TRAVERSE_CONTINUE;
		default:
			return TRAVERSE_SKIP_CHILDS;
	}
}

static LayerCollection *outliner_active_layer_collection(bContext *C)
{
	SpaceOops *soops = CTX_wm_space_outliner(C);

	struct CollectionObjectsSelectData data = {
		.layer_collection = NULL,
	};

	outliner_tree_traverse(soops, &soops->tree, 0, TSE_SELECTED, outliner_find_first_selected_layer_collection, &data);
	return data.layer_collection;
}

static int collection_objects_select_exec(bContext *C, wmOperator *op)
{
	ViewLayer *view_layer = CTX_data_view_layer(C);
	LayerCollection *layer_collection = outliner_active_layer_collection(C);
	bool deselect = STREQ(op->idname, "OUTLINER_OT_collection_objects_deselect");

	if (layer_collection == NULL) {
		return OPERATOR_CANCELLED;
	}

	BKE_layer_collection_objects_select(view_layer, layer_collection, deselect);
	WM_main_add_notifier(NC_SCENE | ND_OB_SELECT, CTX_data_scene(C));

	return OPERATOR_FINISHED;
}

void OUTLINER_OT_collection_objects_select(wmOperatorType *ot)
{
	/* identifiers */
	ot->name = "Select Objects";
	ot->idname = "OUTLINER_OT_collection_objects_select";
	ot->description = "Select objects in collection";

	/* api callbacks */
	ot->exec = collection_objects_select_exec;
	ot->poll = collections_editor_poll;

	/* flags */
	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
}

void OUTLINER_OT_collection_objects_deselect(wmOperatorType *ot)
{
	/* identifiers */
	ot->name = "Deselect Objects";
	ot->idname = "OUTLINER_OT_collection_objects_deselect";
	ot->description = "Deselect objects in collection";

	/* api callbacks */
	ot->exec = collection_objects_select_exec;
	ot->poll = collections_editor_poll;

	/* flags */
	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
}

/************************** Duplicate Collection *****************************/

struct CollectionDuplicateData {
	TreeElement *te;
};

static TreeTraversalAction outliner_find_first_selected_collection(TreeElement *te, void *customdata)
{
	struct CollectionDuplicateData *data = customdata;
	TreeStoreElem *tselem = TREESTORE(te);

	switch (tselem->type) {
		case TSE_LAYER_COLLECTION:
			data->te = te;
			return TRAVERSE_BREAK;
		case TSE_R_LAYER:
		case TSE_SCENE_COLLECTION_BASE:
		case TSE_VIEW_COLLECTION_BASE:
		default:
			return TRAVERSE_CONTINUE;
	}
}

static TreeElement *outliner_active_collection(bContext *C)
{
	SpaceOops *soops = CTX_wm_space_outliner(C);

	struct CollectionDuplicateData data = {
		.te = NULL,
	};

	outliner_tree_traverse(soops, &soops->tree, 0, TSE_SELECTED, outliner_find_first_selected_collection, &data);
	return data.te;
}

static int collection_duplicate_exec(bContext *C, wmOperator *op)
{
	Main *bmain = CTX_data_main(C);
	SpaceOops *soops = CTX_wm_space_outliner(C);
	TreeElement *te = outliner_active_collection(C);
	BLI_assert(te != NULL);

	Collection *collection = outliner_collection_from_tree_element(te);
	Collection *parent = (te->parent) ? outliner_collection_from_tree_element(te->parent) : NULL;

	if (collection->flag & COLLECTION_IS_MASTER) {
		BKE_report(op->reports, RPT_ERROR, "Can't duplicate the master collection");
		return OPERATOR_CANCELLED;
	}

	switch (soops->outlinevis) {
		case SO_SCENES:
		case SO_VIEW_LAYER:
		case SO_LIBRARIES:
			BKE_collection_copy(bmain, parent, collection);
			break;
	}

	DEG_relations_tag_update(bmain);
	WM_main_add_notifier(NC_SCENE | ND_LAYER, CTX_data_scene(C));

	return OPERATOR_FINISHED;
}

void OUTLINER_OT_collection_duplicate(wmOperatorType *ot)
{
	/* identifiers */
	ot->name = "Duplicate Collection";
	ot->idname = "OUTLINER_OT_collection_duplicate";
	ot->description = "Duplicate selected collections";

	/* api callbacks */
	ot->exec = collection_duplicate_exec;
	ot->poll = collections_editor_poll;

	/* flags */
	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
}

/**************************** Link Collection ******************************/

static int collection_link_exec(bContext *C, wmOperator *UNUSED(op))
{
	Main *bmain = CTX_data_main(C);
	Scene *scene = CTX_data_scene(C);
	Collection *active_collection = CTX_data_layer_collection(C)->collection;
	SpaceOops *soops = CTX_wm_space_outliner(C);
	struct CollectionEditData data = {.scene = scene, .soops = soops};

	data.collections_to_edit = BLI_gset_ptr_new(__func__);

	/* We first walk over and find the Collections we actually want to link (ignoring duplicates). */
	outliner_tree_traverse(soops, &soops->tree, 0, TSE_SELECTED, collection_find_data_to_edit, &data);

	/* Effectively link the collections. */
	GSetIterator collections_to_edit_iter;
	GSET_ITER(collections_to_edit_iter, data.collections_to_edit) {
		Collection *collection = BLI_gsetIterator_getKey(&collections_to_edit_iter);
		BKE_collection_child_add(bmain, active_collection, collection);
		id_fake_user_clear(&collection->id);
	}

	BLI_gset_free(data.collections_to_edit, NULL);

	DEG_relations_tag_update(bmain);

	/* TODO(sergey): Use proper flag for tagging here. */
	DEG_id_tag_update(&scene->id, 0);

	WM_main_add_notifier(NC_SCENE | ND_LAYER, NULL);

	return OPERATOR_FINISHED;
}

void OUTLINER_OT_collection_link(wmOperatorType *ot)
{
	/* identifiers */
	ot->name = "Link Collection";
	ot->idname = "OUTLINER_OT_collection_link";
	ot->description = "Link selected collections to active scene";

	/* api callbacks */
	ot->exec = collection_link_exec;
	ot->poll = collections_editor_poll;

	/* flags */
	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
}

/************************** Instance Collection ******************************/

static int collection_instance_exec(bContext *C, wmOperator *UNUSED(op))
{
	Main *bmain = CTX_data_main(C);
	Scene *scene = CTX_data_scene(C);
	ViewLayer *view_layer = CTX_data_view_layer(C);
	SpaceOops *soops = CTX_wm_space_outliner(C);
	struct CollectionEditData data = {.scene = scene, .soops = soops};

	data.collections_to_edit = BLI_gset_ptr_new(__func__);

	/* We first walk over and find the Collections we actually want to instance (ignoring duplicates). */
	outliner_tree_traverse(soops, &soops->tree, 0, TSE_SELECTED, collection_find_data_to_edit, &data);

	/* Find an active collection to add to, that doesn't give dependency cycles. */
	LayerCollection *active_lc = BKE_layer_collection_get_active(view_layer);

	GSetIterator collections_to_edit_iter;
	GSET_ITER(collections_to_edit_iter, data.collections_to_edit) {
		Collection *collection = BLI_gsetIterator_getKey(&collections_to_edit_iter);

		while (BKE_collection_find_cycle(active_lc->collection, collection)) {
			active_lc = BKE_layer_collection_activate_parent(view_layer, active_lc);
		}
	}

	/* Effectively instance the collections. */
	GSET_ITER(collections_to_edit_iter, data.collections_to_edit) {
		Collection *collection = BLI_gsetIterator_getKey(&collections_to_edit_iter);
		Object *ob = ED_object_add_type(C, OB_EMPTY, collection->id.name + 2, scene->cursor.location, NULL, false, scene->layact);
		ob->dup_group = collection;
		ob->transflag |= OB_DUPLIGROUP;
		id_lib_extern(&collection->id);
	}

	BLI_gset_free(data.collections_to_edit, NULL);

	DEG_relations_tag_update(bmain);

	/* TODO(sergey): Use proper flag for tagging here. */
	DEG_id_tag_update(&scene->id, 0);

	WM_main_add_notifier(NC_SCENE | ND_LAYER, NULL);

	return OPERATOR_FINISHED;
}

void OUTLINER_OT_collection_instance(wmOperatorType *ot)
{
	/* identifiers */
	ot->name = "Instance Collection";
	ot->idname = "OUTLINER_OT_collection_instance";
	ot->description = "Instance selected collections to active scene";

	/* api callbacks */
	ot->exec = collection_instance_exec;
	ot->poll = collections_editor_poll;

	/* flags */
	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
}

/************************** Exclude Collection ******************************/

static TreeTraversalAction layer_collection_find_data_to_edit(TreeElement *te, void *customdata)
{
	struct CollectionEditData *data = customdata;
	TreeStoreElem *tselem = TREESTORE(te);

	if (!(tselem && tselem->type == TSE_LAYER_COLLECTION)) {
		return TRAVERSE_CONTINUE;
	}

	LayerCollection *lc = te->directdata;

	if (lc->collection->flag & COLLECTION_IS_MASTER) {
		/* skip - showing warning/error message might be missleading
		 * when deleting multiple collections, so just do nothing */
	}
	else {
		/* Delete, duplicate and link don't edit children, those will come along
		 * with the parents. */
		BLI_gset_add(data->collections_to_edit, lc);
	}

	return TRAVERSE_CONTINUE;
}

static int collections_view_layer_poll(bContext *C, bool include)
{
	/* Poll function so the right click menu show current state of selected collections. */
	SpaceOops *soops = CTX_wm_space_outliner(C);
	if (!(soops && soops->outlinevis == SO_VIEW_LAYER)) {
		return false;
	}

	Scene *scene = CTX_data_scene(C);
	struct CollectionEditData data = {.scene = scene, .soops = soops};
	data.collections_to_edit = BLI_gset_ptr_new(__func__);
	bool result = false;

	outliner_tree_traverse(soops, &soops->tree, 0, TSE_SELECTED, layer_collection_find_data_to_edit, &data);

	GSetIterator collections_to_edit_iter;
	GSET_ITER(collections_to_edit_iter, data.collections_to_edit) {
		LayerCollection *lc = BLI_gsetIterator_getKey(&collections_to_edit_iter);

		if (include && (lc->flag & LAYER_COLLECTION_EXCLUDE)) {
			result = true;
		}
		else if (!include && !(lc->flag & LAYER_COLLECTION_EXCLUDE)) {
			result = true;
		}
	}

	BLI_gset_free(data.collections_to_edit, NULL);
	return result;
}

static int collections_exclude_poll(bContext *C)
{
	return collections_view_layer_poll(C, false);
}

static int collections_include_poll(bContext *C)
{
	return collections_view_layer_poll(C, true);
}

static void layer_collection_exclude_recursive_set(LayerCollection *lc)
{
	for (LayerCollection *nlc = lc->layer_collections.first; nlc; nlc = nlc->next) {
		if (lc->flag & LAYER_COLLECTION_EXCLUDE) {
			nlc->flag |= LAYER_COLLECTION_EXCLUDE;
		}
		else {
			nlc->flag &= ~LAYER_COLLECTION_EXCLUDE;
		}

		layer_collection_exclude_recursive_set(nlc);
	}
}

static int collection_view_layer_exec(bContext *C, wmOperator *op)
{
	Main *bmain = CTX_data_main(C);
	Scene *scene = CTX_data_scene(C);
	ViewLayer *view_layer = CTX_data_view_layer(C);
	SpaceOops *soops = CTX_wm_space_outliner(C);
	struct CollectionEditData data = {.scene = scene, .soops = soops};
	bool include = STREQ(op->idname, "OUTLINER_OT_collection_include_set");

	data.collections_to_edit = BLI_gset_ptr_new(__func__);

	outliner_tree_traverse(soops, &soops->tree, 0, TSE_SELECTED, layer_collection_find_data_to_edit, &data);

	GSetIterator collections_to_edit_iter;
	GSET_ITER(collections_to_edit_iter, data.collections_to_edit) {
		LayerCollection *lc = BLI_gsetIterator_getKey(&collections_to_edit_iter);

		if (!(lc->collection->flag & COLLECTION_IS_MASTER)) {
			if (include) {
				lc->flag &= ~LAYER_COLLECTION_EXCLUDE;
			}
			else {
				lc->flag |= LAYER_COLLECTION_EXCLUDE;
			}

			layer_collection_exclude_recursive_set(lc);
		}
	}

	BLI_gset_free(data.collections_to_edit, NULL);

	BKE_layer_collection_sync(scene, view_layer);
	DEG_relations_tag_update(bmain);

	WM_main_add_notifier(NC_SCENE | ND_LAYER, NULL);

	return OPERATOR_FINISHED;
}

void OUTLINER_OT_collection_exclude_set(wmOperatorType *ot)
{
	/* identifiers */
	ot->name = "Exclude from View Layer";
	ot->idname = "OUTLINER_OT_collection_exclude_set";
	ot->description = "Exclude collection from the active view layer";

	/* api callbacks */
	ot->exec = collection_view_layer_exec;
	ot->poll = collections_exclude_poll;

	/* flags */
	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
}

void OUTLINER_OT_collection_include_set(wmOperatorType *ot)
{
	/* identifiers */
	ot->name = "Include in View Layer";
	ot->idname = "OUTLINER_OT_collection_include_set";
	ot->description = "Include collection in the active view layer";

	/* api callbacks */
	ot->exec = collection_view_layer_exec;
	ot->poll = collections_include_poll;

	/* flags */
	ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
}