Plasma-workspace

tasksmodel.h
1/*
2 SPDX-FileCopyrightText: 2016 Eike Hein <hein@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
5*/
6
7#pragma once
8
9#include <QQmlParserStatus>
10#include <QSortFilterProxyModel>
11
12#include <memory>
13
14#include "abstracttasksmodeliface.h"
15#include "regionfiltermode.h"
16
17#include "taskmanager_export.h"
18
19namespace TaskManager
20{
21class ActivityInfo;
23
24/**
25 * @short A unified tasks model.
26 *
27 * This model presents tasks sourced from supplied launcher URLs, startup
28 * notification data and window data retrieved from the windowing server
29 * the host process is connected to. The underlying windowing system is
30 * abstracted away.
31 *
32 * The source data is abstracted into a unified lifecycle for tasks
33 * suitable for presentation in a user interface.
34 *
35 * Matching startup and window tasks replace launcher tasks. Startup
36 * tasks are omitted when matching window tasks exist. Tasks that desire
37 * not to be shown in a user interface are omitted.
38 *
39 * Tasks may be filtered, sorted or grouped by setting properties on the
40 * model.
41 *
42 * Tasks may be interacted with by calling methods on the model.
43 *
44 * @author Eike Hein <hein@kde.org>
45 **/
46
47class TASKMANAGER_EXPORT TasksModel : public QSortFilterProxyModel, public AbstractTasksModelIface, public QQmlParserStatus
48{
50 QML_ELEMENT
52
53 Q_PROPERTY(int count READ rowCount NOTIFY countChanged)
54 Q_PROPERTY(int launcherCount READ launcherCount NOTIFY launcherCountChanged)
55
56 Q_PROPERTY(QStringList launcherList READ launcherList WRITE setLauncherList NOTIFY launcherListChanged)
57
58 Q_PROPERTY(bool anyTaskDemandsAttention READ anyTaskDemandsAttention NOTIFY anyTaskDemandsAttentionChanged)
59
60 Q_PROPERTY(QVariant virtualDesktop READ virtualDesktop WRITE setVirtualDesktop NOTIFY virtualDesktopChanged)
61 Q_PROPERTY(QRect screenGeometry READ screenGeometry WRITE setScreenGeometry NOTIFY screenGeometryChanged)
62 Q_PROPERTY(QRect regionGeometry READ regionGeometry WRITE setRegionGeometry NOTIFY regionGeometryChanged)
63 Q_PROPERTY(QString activity READ activity WRITE setActivity NOTIFY activityChanged)
64
65 Q_PROPERTY(bool filterByVirtualDesktop READ filterByVirtualDesktop WRITE setFilterByVirtualDesktop NOTIFY filterByVirtualDesktopChanged)
66 Q_PROPERTY(bool filterByScreen READ filterByScreen WRITE setFilterByScreen NOTIFY filterByScreenChanged)
67 Q_PROPERTY(bool filterByActivity READ filterByActivity WRITE setFilterByActivity NOTIFY filterByActivityChanged)
68 Q_PROPERTY(RegionFilterMode::Mode filterByRegion READ filterByRegion WRITE setFilterByRegion NOTIFY filterByRegionChanged)
69 Q_PROPERTY(bool filterMinimized READ filterMinimized WRITE setFilterMinimized NOTIFY filterMinimizedChanged)
70 Q_PROPERTY(bool filterNotMinimized READ filterNotMinimized WRITE setFilterNotMinimized NOTIFY filterNotMinimizedChanged)
71 Q_PROPERTY(bool filterNotMaximized READ filterNotMaximized WRITE setFilterNotMaximized NOTIFY filterNotMaximizedChanged)
72 Q_PROPERTY(bool filterHidden READ filterHidden WRITE setFilterHidden NOTIFY filterHiddenChanged)
73
74 Q_PROPERTY(SortMode sortMode READ sortMode WRITE setSortMode NOTIFY sortModeChanged)
75 Q_PROPERTY(bool separateLaunchers READ separateLaunchers WRITE setSeparateLaunchers NOTIFY separateLaunchersChanged)
76 Q_PROPERTY(bool launchInPlace READ launchInPlace WRITE setLaunchInPlace NOTIFY launchInPlaceChanged)
77 Q_PROPERTY(bool hideActivatedLaunchers READ hideActivatedLaunchers WRITE setHideActivatedLaunchers NOTIFY hideActivatedLaunchersChanged)
78
79 Q_PROPERTY(GroupMode groupMode READ groupMode WRITE setGroupMode NOTIFY groupModeChanged)
80 Q_PROPERTY(bool groupInline READ groupInline WRITE setGroupInline NOTIFY groupInlineChanged)
82 int groupingWindowTasksThreshold READ groupingWindowTasksThreshold WRITE setGroupingWindowTasksThreshold NOTIFY groupingWindowTasksThresholdChanged)
83 Q_PROPERTY(QStringList groupingAppIdBlacklist READ groupingAppIdBlacklist WRITE setGroupingAppIdBlacklist NOTIFY groupingAppIdBlacklistChanged)
84 Q_PROPERTY(QStringList groupingLauncherUrlBlacklist READ groupingLauncherUrlBlacklist WRITE setGroupingLauncherUrlBlacklist NOTIFY
85 groupingLauncherUrlBlacklistChanged)
86 Q_PROPERTY(bool taskReorderingEnabled READ taskReorderingEnabled WRITE setTaskReorderingEnabled NOTIFY taskReorderingEnabledChanged)
87 Q_PROPERTY(QModelIndex activeTask READ activeTask NOTIFY activeTaskChanged)
88
89public:
90 enum SortMode {
91 SortDisabled = 0, /**< No sorting is done. */
92 SortManual, /**< Tasks can be moved with move() and syncLaunchers(). */
93 SortAlpha, /**< Tasks are sorted alphabetically, by AbstractTasksModel::AppName and Qt::DisplayRole. */
94 SortVirtualDesktop, /**< Tasks are sorted by the virtual desktop they are on. */
95 SortActivity, /**< Tasks are sorted by the number of tasks on the activities they're on. */
96 SortLastActivated, /**< Tasks are sorted by the last time they were active. */
97 SortWindowPositionHorizontal, /**< Tasks are sorted by the virtual desktop they are on, then by window coordinates. */
98 };
99 Q_ENUM(SortMode)
100
102 GroupDisabled = 0, /**< No grouping is done. */
103 GroupApplications, /**< Tasks are grouped by the application backing them. */
104 };
105 Q_ENUM(GroupMode)
106
107 explicit TasksModel(QObject *parent = nullptr);
108 ~TasksModel() override;
109
110 QHash<int, QByteArray> roleNames() const override;
111
112 Q_INVOKABLE int rowCount(const QModelIndex &parent = QModelIndex()) const override; // Invokable.
113
114 QVariant data(const QModelIndex &proxyIndex, int role) const override;
115
116 /**
117 * The number of launcher tasks in the tast list.
118 *
119 * @returns the number of launcher tasks in the task list.
120 **/
121 int launcherCount() const;
122
123 /**
124 * The list of launcher URLs serialized to strings along with
125 * the activities they belong to.
126 *
127 * @see setLauncherList
128 * @returns the list of launcher URLs serialized to strings.
129 **/
130 QStringList launcherList() const;
131
132 /**
133 * Replace the list of launcher URL strings.
134 *
135 * Invalid or empty URLs will be rejected. Duplicate URLs will be
136 * collapsed.
137 *
138 * @see launcherList
139 * @param launchers A list of launcher URL strings.
140 **/
141 void setLauncherList(const QStringList &launchers);
142
143 /**
144 * Returns whether any task in the model currently demands attention
145 * (AbstractTasksModel::IsDemandingAttention).
146 *
147 * @returns whether any task in the model currently demands attention.
148 **/
149 bool anyTaskDemandsAttention() const;
150
151 /**
152 * The id of the virtual desktop used in filtering by virtual
153 * desktop. Usually set to the id of the current virtual desktop.
154 * Defaults to empty.
155 *
156 * @see setVirtualDesktop
157 * @returns the number of the virtual desktop used in filtering.
158 **/
159 QVariant virtualDesktop() const;
160
161 /**
162 * Set the id of the virtual desktop to use in filtering by virtual
163 * desktop.
164 *
165 * If set to an empty id, filtering by virtual desktop is disabled.
166 *
167 * @see virtualDesktop
168 * @param desktop A virtual desktop id (QString on Wayland; uint >0 on X11).
169 **/
170 void setVirtualDesktop(const QVariant &desktop = QVariant());
171
172 /**
173 * The geometry of the screen used in filtering by screen. Defaults
174 * to a null QRect.
175 *
176 * @see setGeometryScreen
177 * @returns the geometry of the screen used in filtering.
178 **/
179 QRect screenGeometry() const;
180
181 /**
182 * Set the geometry of the screen to use in filtering by screen.
183 *
184 * If set to an invalid QRect, filtering by screen is disabled.
185 *
186 * @see screenGeometry
187 * @param geometry A screen geometry.
188 **/
189 void setScreenGeometry(const QRect &geometry);
190
191 /**
192 * The geometry of the region used in filtering by region. Defaults
193 * to a null QRect.
194 *
195 * @see setRegionGeometry
196 * @since 6.0
197 * @returns the geometry of the region used in filtering.
198 **/
199 QRect regionGeometry() const;
200
201 /**
202 * Set the geometry of the screen to use in filtering by region.
203 *
204 * If set to an invalid QRect, filtering by region is disabled.
205 *
206 * @see regionGeometry
207 * @since 6.0
208 * @param geometry A region geometry.
209 **/
210 void setRegionGeometry(const QRect &geometry);
211
212 /**
213 * The id of the activity used in filtering by activity. Usually
214 * set to the id of the current activity. Defaults to an empty id.
215 *
216 * @see setActivity
217 * @returns the id of the activity used in filtering.
218 **/
219 QString activity() const;
220
221 /**
222 * Set the id of the activity to use in filtering by activity.
223 *
224 * @see activity
225 * @param activity An activity id.
226 **/
227 void setActivity(const QString &activity);
228
229 /**
230 * Whether tasks should be filtered by virtual desktop. Defaults to
231 * @c false.
232 *
233 * Filtering by virtual desktop only happens if a virtual desktop
234 * number is set, even if this returns @c true.
235 *
236 * @see setFilterByVirtualDesktop
237 * @see setVirtualDesktop
238 * @returns @c true if tasks should be filtered by virtual desktop.
239 **/
240 bool filterByVirtualDesktop() const;
241
242 /**
243 * Set whether tasks should be filtered by virtual desktop.
244 *
245 * Filtering by virtual desktop only happens if a virtual desktop
246 * number is set, even if this is set to @c true.
247 *
248 * @see filterByVirtualDesktop
249 * @see setVirtualDesktop
250 * @param filter Whether tasks should be filtered by virtual desktop.
251 **/
252 void setFilterByVirtualDesktop(bool filter);
253
254 /**
255 * Whether tasks should be filtered by screen. Defaults to @c false.
256 *
257 * Filtering by screen only happens if a screen number is set, even
258 * if this returns @c true.
259 *
260 * @see setFilterByScreen
261 * @see setScreenGeometry
262 * @returns @c true if tasks should be filtered by screen.
263 **/
264 bool filterByScreen() const;
265
266 /**
267 * Set whether tasks should be filtered by screen.
268 *
269 * Filtering by screen only happens if a screen number is set, even
270 * if this is set to @c true.
271 *
272 * @see filterByScreen
273 * @see setScreenGeometry
274 * @param filter Whether tasks should be filtered by screen.
275 **/
276 void setFilterByScreen(bool filter);
277
278 /**
279 * Whether tasks should be filtered by activity. Defaults to @c false.
280 *
281 * Filtering by activity only happens if an activity id is set, even
282 * if this returns @c true.
283 *
284 * @see setFilterByActivity
285 * @see setActivity
286 * @returns @c true if tasks should be filtered by activity.
287 **/
288 bool filterByActivity() const;
289
290 /**
291 * Set whether tasks should be filtered by activity. Defaults to
292 * @c false.
293 *
294 * Filtering by activity only happens if an activity id is set,
295 * even if this is set to @c true.
296 *
297 * @see filterByActivity
298 * @see setActivity
299 * @param filter Whether tasks should be filtered by activity.
300 **/
301 void setFilterByActivity(bool filter);
302
303 /**
304 * Whether tasks should be filtered by region. Defaults to @c RegionFilterMode::Disabled.
305 *
306 * Filtering by region only happens if a region is set, even
307 * if the filter is enabled.
308 *
309 * @see RegionFilterMode
310 * @see setFilterByRegion
311 * @see setRegionGeometry
312 * @since 6.0
313 * @returns Region filter mode.
314 **/
315 RegionFilterMode::Mode filterByRegion() const;
316
317 /**
318 * Set whether tasks should be filtered by region. Defaults to
319 * @c RegionFilterMode::Disabled.
320 *
321 * Filtering by region only happens if a region is set,
322 * even if the filter is enabled.
323 *
324 * @see RegionFilterMode
325 * @see filterByRegion
326 * @see setRegionGeometry
327 * @since 6.0
328 * @param mode Region filter mode.
329 **/
330 void setFilterByRegion(RegionFilterMode::Mode mode);
331
332 /**
333 * Whether minimized tasks should be filtered out. Defaults to
334 * @c false.
335 *
336 * @returns @c true if minimized tasks should be filtered out.
337 * @see setFilterMinimized
338 * @since 5.27
339 **/
340 bool filterMinimized() const;
341
342 /**
343 * Sets whether non-minimized tasks should be filtered out.
344 *
345 * @param filter Whether minimized tasks should be filtered out.
346 * @see filterMinimized
347 * @since 5.27
348 **/
349 void setFilterMinimized(bool filter);
350
351 /**
352 * Whether non-minimized tasks should be filtered. Defaults to
353 * @c false.
354 *
355 * @see setFilterNotMinimized
356 * @returns @c true if non-minimized tasks should be filtered.
357 **/
358 bool filterNotMinimized() const;
359
360 /**
361 * Set whether non-minimized tasks should be filtered.
362 *
363 * @see filterNotMinimized
364 * @param filter Whether non-minimized tasks should be filtered.
365 **/
366 void setFilterNotMinimized(bool filter);
367
368 /**
369 * Whether non-maximized tasks should be filtered. Defaults to
370 * @c false.
371 *
372 * @see setFilterNotMaximized
373 * @returns @c true if non-maximized tasks should be filtered.
374 **/
375 bool filterNotMaximized() const;
376
377 /**
378 * Set whether non-maximized tasks should be filtered.
379 *
380 * @see filterNotMaximized
381 * @param filter Whether non-maximized tasks should be filtered.
382 **/
383 void setFilterNotMaximized(bool filter);
384
385 /**
386 * Whether hidden tasks should be filtered. Defaults to
387 * @c false.
388 *
389 * @see setFilterHidden
390 * @returns @c true if hidden tasks should be filtered.
391 **/
392 bool filterHidden() const;
393
394 /**
395 * Set whether hidden tasks should be filtered.
396 *
397 * @see filterHidden
398 * @param filter Whether hidden tasks should be filtered.
399 **/
400 void setFilterHidden(bool filter);
401
402 /**
403 * The sort mode used in sorting tasks. Defaults to SortAlpha.
404 *
405 * @see setSortMode
406 * @returns the current sort mode.
407 **/
408 SortMode sortMode() const;
409
410 /**
411 * Sets the sort mode used in sorting tasks.
412 *
413 * @see sortMode
414 * @param mode A sort mode.
415 **/
416 void setSortMode(SortMode mode);
417
418 /**
419 * Whether launchers are kept separate from other kinds of tasks.
420 * Defaults to @c true.
421 *
422 * When enabled, launcher tasks are sorted first in the tasks model
423 * and move() disallows moving them below the last launcher task,
424 * or moving a different kind of task above the first launcher. New
425 * launcher tasks are inserted after the last launcher task. When
426 * disabled, move() allows mixing, and new launcher tasks are
427 * appended to the model.
428 *
429 * Further, when disabled, the model always behaves as if
430 * launchInPlace is enabled: A window task takes the place of the
431 * first matching launcher task.
432 *
433 * @see LauncherTasksModel
434 * @see move
435 * @see launchInPlace
436 * @see setSeparateLaunchers
437 * @return whether launcher tasks are kept separate.
438 */
439 bool separateLaunchers() const;
440
441 /**
442 * Sets whether launchers are kept separate from other kinds of tasks.
443 *
444 * When enabled, launcher tasks are sorted first in the tasks model
445 * and move() disallows moving them below the last launcher task,
446 * or moving a different kind of task above the first launcher. New
447 * launcher tasks are inserted after the last launcher task. When
448 * disabled, move() allows mixing, and new launcher tasks are
449 * appended to the model.
450 *
451 * Further, when disabled, the model always behaves as if
452 * launchInPlace is enabled: A window task takes the place of the
453 * first matching launcher task.
454 *
455 * @see LauncherTasksModel
456 * @see move
457 * @see launchInPlace
458 * @see separateLaunchers
459 * @param separate Whether to keep launcher tasks separate.
460 */
461 void setSeparateLaunchers(bool separate);
462
463 /**
464 * Whether window tasks should be sorted as their associated launcher
465 * tasks or separately. Defaults to @c false.
466 *
467 * @see setLaunchInPlace
468 * @returns whether window tasks should be sorted as their associated
469 * launcher tasks.
470 **/
471 bool launchInPlace() const;
472
473 /**
474 * Sets whether window tasks should be sorted as their associated launcher
475 * tasks or separately.
476 *
477 * @see launchInPlace
478 * @param launchInPlace Whether window tasks should be sorted as their
479 * associated launcher tasks.
480 **/
481 void setLaunchInPlace(bool launchInPlace);
482
483 /**
484 * Whether launchers should be hidden after they have been
485 * activated. Defaults to @c true.
486 *
487 * @see hideActivatedLaunchers
488 * @returns whether launchers will be hidden after they have been
489 * activated.
490 **/
491 bool hideActivatedLaunchers() const;
492
493 /**
494 * Sets whether launchers should be hidden after they have been
495 * activated. Defaults to @c true.
496 *
497 * @see hideActivatedLaunchers
498 * @param hideActivatedLaunchers Whether launchers should be hidden
499 * after they have been activated.
500 **/
501 void setHideActivatedLaunchers(bool hideActivatedLaunchers);
502
503 /**
504 * Returns the current group mode, i.e. the criteria by which tasks should
505 * be grouped.
506 *
507 * Defaults to TasksModel::GroupApplication, which groups tasks backed by
508 * the same application.
509 *
510 * If the group mode is TasksModel::GroupDisabled, no grouping is done.
511 *
512 * @see setGroupMode
513 * @returns the current group mode.
514 **/
515 TasksModel::GroupMode groupMode() const;
516
517 /**
518 * Sets the group mode, i.e. the criteria by which tasks should be grouped.
519 *
520 * The group mode can be set to TasksModel::GroupDisabled to disable grouping
521 * entirely, breaking apart any existing groups.
522 *
523 * @see groupMode
524 * @param mode A group mode.
525 **/
526 void setGroupMode(TasksModel::GroupMode mode);
527
528 /**
529 * Returns whether grouping is done "inline" or not, i.e. whether groups
530 * are maintained inside the flat, top-level list, or by forming a tree.
531 * In inline grouping mode, move() on a group member will move all siblings
532 * as well, and sorting is first done among groups, then group members.
533 *
534 * Further, in inline grouping mode, the groupingWindowTasksThreshold
535 * setting is ignored: Grouping is always done.
536 *
537 * @see setGroupInline
538 * @see move
539 * @see groupingWindowTasksThreshold
540 * @returns whether grouping is done inline or not.
541 **/
542 bool groupInline() const;
543
544 /**
545 * Sets whether grouping is done "inline" or not, i.e. whether groups
546 * are maintained inside the flat, top-level list, or by forming a tree.
547 * In inline grouping mode, move() on a group member will move all siblings
548 * as well, and sorting is first done among groups, then group members.
549 *
550 * @see groupInline
551 * @see move
552 * @see groupingWindowTasksThreshold
553 * @param inline Whether to do grouping inline or not.
554 **/
555 void setGroupInline(bool groupInline);
556
557 /**
558 * As window tasks (AbstractTasksModel::IsWindow) come and go, groups will
559 * be formed when this threshold value is exceeded, and broken apart when
560 * it matches or falls below.
561 *
562 * Defaults to @c -1, which means grouping is done regardless of the number
563 * of window tasks.
564 *
565 * When the groupInline property is set to @c true, the threshold is ignored:
566 * Grouping is always done.
567 *
568 * @see setGroupingWindowTasksThreshold
569 * @see groupInline
570 * @return the threshold number of window tasks used in grouping decisions.
571 **/
572 int groupingWindowTasksThreshold() const;
573
574 /**
575 * Sets the number of window tasks (AbstractTasksModel::IsWindow) above which
576 * groups will be formed, and at or below which groups will be broken apart.
577 *
578 * If set to -1, grouping will be done regardless of the number of window tasks
579 * in the source model.
580 *
581 * When the groupInline property is set to @c true, the threshold is ignored:
582 * Grouping is always done.
583 *
584 * @see groupingWindowTasksThreshold
585 * @see groupInline
586 * @param threshold A threshold number of window tasks used in grouping
587 * decisions.
588 **/
589 void setGroupingWindowTasksThreshold(int threshold);
590
591 /**
592 * A blacklist of app ids (AbstractTasksModel::AppId) that is consulted before
593 * grouping a task. If a task's app id is found on the blacklist, it is not
594 * grouped.
595 *
596 * The default app id blacklist is empty.
597 *
598 * @see setGroupingAppIdBlacklist
599 * @returns the blacklist of app ids consulted before grouping a task.
600 **/
601 QStringList groupingAppIdBlacklist() const;
602
603 /**
604 * Sets the blacklist of app ids (AbstractTasksModel::AppId) that is consulted
605 * before grouping a task. If a task's app id is found on the blacklist, it is
606 * not grouped.
607 *
608 * When set, groups will be formed and broken apart as necessary.
609 *
610 * @see groupingAppIdBlacklist
611 * @param list a blacklist of app ids to be consulted before grouping a task.
612 **/
613 void setGroupingAppIdBlacklist(const QStringList &list);
614
615 /**
616 * A blacklist of launcher URLs (AbstractTasksModel::LauncherUrl) that is
617 * consulted before grouping a task. If a task's launcher URL is found on the
618 * blacklist, it is not grouped.
619 *
620 * The default launcher URL blacklist is empty.
621 *
622 * @see setGroupingLauncherUrlBlacklist
623 * @returns the blacklist of launcher URLs consulted before grouping a task.
624 **/
625 QStringList groupingLauncherUrlBlacklist() const;
626
627 /**
628 * Sets the blacklist of launcher URLs (AbstractTasksModel::LauncherUrl) that
629 * is consulted before grouping a task. If a task's launcher URL is found on
630 * the blacklist, it is not grouped.
631 *
632 * When set, groups will be formed and broken apart as necessary.
633 *
634 * @see groupingLauncherUrlBlacklist
635 * @param list a blacklist of launcher URLs to be consulted before grouping a task.
636 **/
637 void setGroupingLauncherUrlBlacklist(const QStringList &list);
638
639 /**
640 * Enables or disables tasks reordering.
641 *
642 * @param enabled enables tasks reordering if @c true; disables it otherwise.
643 */
644 void setTaskReorderingEnabled(bool enabled);
645
646 /**
647 * Returns whether tasks reordering is enabled or not.
648 *
649 * @returns whether tasks reordering is enabled or not.
650 */
651 bool taskReorderingEnabled() const;
652
653 /**
654 * Finds the first active (AbstractTasksModel::IsActive) task in the model
655 * and returns its QModelIndex, or a null QModelIndex if no active task is
656 * found.
657 *
658 * @returns the model index for the first active task, if any.
659 */
660 QModelIndex activeTask() const;
661
662 /**
663 * Request adding a launcher with the given URL.
664 *
665 * If this URL is already in the list, the request will fail. URLs are
666 * compared for equality after removing the query string used to hold
667 * metadata.
668 *
669 * @see launcherUrlsMatch
670 * @param url A launcher URL.
671 * @returns @c true if a launcher was added.
672 */
673 Q_INVOKABLE bool requestAddLauncher(const QUrl &url);
674
675 /**
676 * Request removing the launcher with the given URL.
677 *
678 * If this URL is already in the list, the request will fail. URLs are
679 * compared for equality after removing the query string used to hold
680 * metadata.
681 *
682 * @see launcherUrlsMatch
683 * @param url A launcher URL.
684 * @returns @c true if the launcher was removed.
685 */
686 Q_INVOKABLE bool requestRemoveLauncher(const QUrl &url);
687
688 /**
689 * Request adding a launcher with the given URL to current activity.
690 *
691 * If this URL is already in the list, the request will fail. URLs are
692 * compared for equality after removing the query string used to hold
693 * metadata.
694 *
695 * @see launcherUrlsMatch
696 * @param url A launcher URL.
697 * @returns @c true if a launcher was added.
698 */
699 Q_INVOKABLE bool requestAddLauncherToActivity(const QUrl &url, const QString &activity);
700
701 /**
702 * Request removing the launcher with the given URL from the current activity.
703 *
704 * If this URL is already in the list, the request will fail. URLs are
705 * compared for equality after removing the query string used to hold
706 * metadata.
707 *
708 * @see launcherUrlsMatch
709 * @param url A launcher URL.
710 * @returns @c true if the launcher was removed.
711 */
712 Q_INVOKABLE bool requestRemoveLauncherFromActivity(const QUrl &url, const QString &activity);
713
714 /**
715 * Return the list of activities the launcher belongs to.
716 * If there is no launcher with that url, the list will be empty,
717 * while if the launcher is on all activities, it will contain a
718 * null uuid.
719 *
720 * URLs are compared for equality after removing the query string used
721 * to hold metadata.
722 */
723 Q_INVOKABLE QStringList launcherActivities(const QUrl &url);
724
725 /**
726 * Return the position of the launcher with the given URL.
727 *
728 * URLs are compared for equality after removing the query string used
729 * to hold metadata.
730 *
731 * @see launcherUrlsMatch
732 * @param url A launcher URL.
733 * @returns @c -1 if no launcher exists for the given URL.
734 */
735 Q_INVOKABLE int launcherPosition(const QUrl &url) const;
736
737 /**
738 * Request activation of the task at the given index. Derived classes are
739 * free to interpret the meaning of "activate" themselves depending on
740 * the nature and state of the task, e.g. launch or raise a window task.
741 *
742 * @param index An index in this tasks model.
743 **/
744 Q_INVOKABLE void requestActivate(const QModelIndex &index) override;
745
746 /**
747 * Request an additional instance of the application backing the task
748 * at the given index.
749 *
750 * @param index An index in this tasks model.
751 **/
752 Q_INVOKABLE void requestNewInstance(const QModelIndex &index) override;
753
754 /**
755 * Requests to open the given URLs with the application backing the task
756 * at the given index.
757 *
758 * @param index An index in this tasks model.
759 * @param urls The URLs to be passed to the application.
760 **/
761 Q_INVOKABLE void requestOpenUrls(const QModelIndex &index, const QList<QUrl> &urls) override;
762
763 /**
764 * Request the task at the given index be closed.
765 *
766 * @param index An index in this tasks model.
767 **/
768 Q_INVOKABLE void requestClose(const QModelIndex &index) override;
769
770 /**
771 * Request starting an interactive move for the task at the given index.
772 *
773 * This is meant for tasks that have an associated window, and may be
774 * a no-op when there is no window.
775 *
776 * @param index An index in this tasks model.
777 **/
778 Q_INVOKABLE void requestMove(const QModelIndex &index) override;
779
780 /**
781 * Request starting an interactive resize for the task at the given index.
782 *
783 * This is meant for tasks that have an associated window, and may be a
784 * no-op when there is no window.
785 *
786 * @param index An index in this tasks model.
787 **/
788 Q_INVOKABLE void requestResize(const QModelIndex &index) override;
789
790 /**
791 * Request toggling the minimized state of the task at the given index.
792 *
793 * This is meant for tasks that have an associated window, and may be
794 * a no-op when there is no window.
795 *
796 * @param index An index in this tasks model.
797 **/
798 Q_INVOKABLE void requestToggleMinimized(const QModelIndex &index) override;
799
800 /**
801 * Request toggling the maximized state of the task at the given index.
802 *
803 * This is meant for tasks that have an associated window, and may be
804 * a no-op when there is no window.
805 *
806 * @param index An index in this tasks model.
807 **/
808 Q_INVOKABLE void requestToggleMaximized(const QModelIndex &index) override;
809
810 /**
811 * Request toggling the keep-above state of the task at the given index.
812 *
813 * This is meant for tasks that have an associated window, and may be
814 * a no-op when there is no window.
815 *
816 * @param index An index in this tasks model.
817 **/
818 Q_INVOKABLE void requestToggleKeepAbove(const QModelIndex &index) override;
819
820 /**
821 * Request toggling the keep-below state of the task at the given index.
822 *
823 * This is meant for tasks that have an associated window, and may be
824 * a no-op when there is no window.
825 *
826 * @param index An index in this tasks model.
827 **/
828 Q_INVOKABLE void requestToggleKeepBelow(const QModelIndex &index) override;
829
830 /**
831 * Request toggling the fullscreen state of the task at the given index.
832 *
833 * This is meant for tasks that have an associated window, and may be
834 * a no-op when there is no window.
835 *
836 * @param index An index in this tasks model.
837 **/
838 Q_INVOKABLE void requestToggleFullScreen(const QModelIndex &index) override;
839
840 /**
841 * Request toggling the shaded state of the task at the given index.
842 *
843 * This is meant for tasks that have an associated window, and may be
844 * a no-op when there is no window.
845 *
846 * @param index An index in this tasks model.
847 **/
848 Q_INVOKABLE void requestToggleShaded(const QModelIndex &index) override;
849
850 /**
851 * Request toggling the no border state of the task at given index.
852 *
853 * This is meant for tasks that have an associated window, and may be
854 * a no-op when there is no window.
855 *
856 * @param index An index in this tasks model.
857 * @since 6.4
858 */
859 Q_INVOKABLE void requestToggleNoBorder(const QModelIndex &index) override;
860
861 /**
862 * Request entering the window at the given index on the specified virtual desktops.
863 *
864 * On Wayland, virtual desktop ids are QStrings. On X11, they are uint >0.
865 *
866 * An empty list has a special meaning: The window is entered on all virtual desktops
867 * in the session.
868 *
869 * On X11, a window can only be on one or all virtual desktops. Therefore, only the
870 * first list entry is actually used.
871 *
872 * On X11, the id 0 has a special meaning: The window is entered on all virtual
873 * desktops in the session.
874 *
875 * @param index An index in this window tasks model.
876 * @param desktops A list of virtual desktop ids.
877 **/
878 Q_INVOKABLE void requestVirtualDesktops(const QModelIndex &index, const QVariantList &desktops) override;
879
880 /**
881 * Request entering the window at the given index on a new virtual desktop,
882 * which is created in response to this request.
883 *
884 * @param index An index in this window tasks model.
885 **/
886 Q_INVOKABLE void requestNewVirtualDesktop(const QModelIndex &index) override;
887
888 /**
889 * Request moving the task at the given index to the specified activities.
890 *
891 * This is meant for tasks that have an associated window, and may be
892 * a no-op when there is no window.
893 *
894 * This base implementation does nothing.
895 *
896 * @param index An index in this tasks model.
897 * @param activities The new list of activities.
898 **/
899 Q_INVOKABLE void requestActivities(const QModelIndex &index, const QStringList &activities) override;
900
901 /**
902 * Request informing the window manager of new geometry for a visual
903 * delegate for the task at the given index. The geometry should be in
904 * screen coordinates.
905 *
906 * If the task at the given index is a group parent, the geometry is
907 * set for all of its children. If the task at the given index is a
908 * group member, the geometry is set for all of its siblings.
909 *
910 * @param index An index in this tasks model.
911 * @param geometry Visual delegate geometry in screen coordinates.
912 * @param delegate The delegate. Implementations are on their own with
913 * regard to extracting information from this, and should take care to
914 * reject invalid objects.
915 **/
916 Q_INVOKABLE void requestPublishDelegateGeometry(const QModelIndex &index, const QRect &geometry, QObject *delegate = nullptr) override;
917
918 /**
919 * Request toggling whether the task at the given index, along with any
920 * tasks matching its kind, should be grouped or not. Task groups will be
921 * formed or broken apart as needed, along with affecting future grouping
922 * decisions as new tasks appear.
923 *
924 * As grouping is toggled for a task, updates are made to the
925 * grouping*Blacklist properties of the model instance.
926 *
927 * @see groupingAppIdBlacklist
928 * @see groupingLauncherUrlBlacklist
929 *
930 * @param index An index in this tasks model.
931 **/
932 Q_INVOKABLE void requestToggleGrouping(const QModelIndex &index);
933
934 /**
935 * Moves a task to a new position in the list. The insert position is
936 * is bounded to the list start and end.
937 *
938 * syncLaunchers() should be called after a set of move operations to
939 * update the launcherList property to reflect the new order.
940 *
941 * When the groupInline property is set to @c true, a move request
942 * for a group member will bring all siblings along.
943 *
944 * @see syncLaunchers
945 * @see launcherList
946 * @see setGroupInline
947 * @param index An index in this tasks model.
948 * @param newPos The new list position to move the task to.
949 */
950 Q_INVOKABLE bool move(int row, int newPos, const QModelIndex &parent = QModelIndex());
951
952 /**
953 * Updates the launcher list to reflect the new order after calls to
954 * move(), if needed.
955 *
956 * @see move
957 * @see launcherList
958 */
959 Q_INVOKABLE void syncLaunchers();
960
961 /**
962 * Given a row in the model, returns a QModelIndex for it. To get an index
963 * for a child in a task group, an optional child row may be passed as well.
964 *
965 * This easier to use from Qt Quick views than QAbstractItemModel::index is.
966 *
967 * @param row A row index in the model.
968 * @param childRow A row index for a child of the task group at the given row.
969 * @returns a model index for the task at the given row, or for one of its
970 * child tasks.
971 */
972 Q_INVOKABLE QModelIndex makeModelIndex(int row, int childRow = -1) const;
973
974 /**
975 * Given a row in the model, returns a QPersistentModelIndex for it. To get an index
976 * for a child in a task group, an optional child row may be passed as well.
977 *
978 * @param row A row index in the model.
979 * @param childRow A row index for a child of the task group at the given row.
980 * @returns a model index for the task at the given row, or for one of its
981 * child tasks.
982 */
983 Q_INVOKABLE QPersistentModelIndex makePersistentModelIndex(int row, int childRow = -1) const;
984
985 void classBegin() override;
986 void componentComplete() override;
987
988Q_SIGNALS:
989 void countChanged() const;
990 void launcherCountChanged() const;
991 void launcherListChanged() const;
992 void anyTaskDemandsAttentionChanged() const;
993 void virtualDesktopChanged() const;
994 void screenGeometryChanged() const;
995 void regionGeometryChanged();
996 void activityChanged() const;
997 void filterByVirtualDesktopChanged() const;
998 void filterByScreenChanged() const;
999 void filterByActivityChanged() const;
1000 void filterByRegionChanged();
1001 void filterMinimizedChanged();
1002 void filterNotMinimizedChanged() const;
1003 void filterNotMaximizedChanged() const;
1004 void filterHiddenChanged() const;
1005 void sortModeChanged() const;
1006 void separateLaunchersChanged() const;
1007 void launchInPlaceChanged() const;
1008 void hideActivatedLaunchersChanged() const;
1009 void groupModeChanged() const;
1010 void groupInlineChanged() const;
1011 void groupingWindowTasksThresholdChanged() const;
1012 void groupingAppIdBlacklistChanged() const;
1013 void groupingLauncherUrlBlacklistChanged() const;
1014 void taskReorderingEnabledChanged() const;
1015 void activeTaskChanged() const;
1016
1017protected:
1018 bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override;
1019 bool lessThan(const QModelIndex &left, const QModelIndex &right) const override;
1020
1021 /**
1022 * @return a shared pointer to VirtualDesktopInfo to access virtual desktop information
1023 */
1024 std::shared_ptr<VirtualDesktopInfo> virtualDesktopInfo() const;
1025
1026 /**
1027 * @return a shared pointer to ActivityInfo to access activity information
1028 */
1029 std::shared_ptr<ActivityInfo> activityInfo() const;
1030
1031private:
1032 Q_INVOKABLE void updateLauncherCount();
1033
1034 class Private;
1035 class TasksModelLessThan;
1036 friend class TasksModelLessThan;
1037 std::unique_ptr<Private> d;
1038};
1039
1040}
Pure virtual method interface for tasks model implementations.
Provides basic activity information.
A unified tasks model.
Definition tasksmodel.h:48
void setFilterNotMinimized(bool filter)
Set whether non-minimized tasks should be filtered.
void setLaunchInPlace(bool launchInPlace)
Sets whether window tasks should be sorted as their associated launcher tasks or separately.
void setFilterByVirtualDesktop(bool filter)
Set whether tasks should be filtered by virtual desktop.
void setFilterByActivity(bool filter)
Set whether tasks should be filtered by activity.
void setFilterByRegion(RegionFilterMode::Mode mode)
Set whether tasks should be filtered by region.
void setRegionGeometry(const QRect &geometry)
Set the geometry of the screen to use in filtering by region.
@ GroupDisabled
No grouping is done.
Definition tasksmodel.h:102
@ GroupApplications
Tasks are grouped by the application backing them.
Definition tasksmodel.h:103
void setGroupingWindowTasksThreshold(int threshold)
Sets the number of window tasks (AbstractTasksModel::IsWindow) above which groups will be formed,...
void setGroupingAppIdBlacklist(const QStringList &list)
Sets the blacklist of app ids (AbstractTasksModel::AppId) that is consulted before grouping a task.
void setGroupingLauncherUrlBlacklist(const QStringList &list)
Sets the blacklist of launcher URLs (AbstractTasksModel::LauncherUrl) that is consulted before groupi...
void setLauncherList(const QStringList &launchers)
Replace the list of launcher URL strings.
void setFilterNotMaximized(bool filter)
Set whether non-maximized tasks should be filtered.
void setFilterMinimized(bool filter)
Sets whether non-minimized tasks should be filtered out.
void setTaskReorderingEnabled(bool enabled)
Enables or disables tasks reordering.
void setGroupInline(bool groupInline)
Sets whether grouping is done "inline" or not, i.e.
void setFilterHidden(bool filter)
Set whether hidden tasks should be filtered.
@ SortDisabled
No sorting is done.
Definition tasksmodel.h:91
@ SortLastActivated
Tasks are sorted by the last time they were active.
Definition tasksmodel.h:96
@ SortManual
Tasks can be moved with move() and syncLaunchers().
Definition tasksmodel.h:92
@ SortActivity
Tasks are sorted by the number of tasks on the activities they're on.
Definition tasksmodel.h:95
@ SortAlpha
Tasks are sorted alphabetically, by AbstractTasksModel::AppName and Qt::DisplayRole.
Definition tasksmodel.h:93
@ SortWindowPositionHorizontal
Tasks are sorted by the virtual desktop they are on, then by window coordinates.
Definition tasksmodel.h:97
@ SortVirtualDesktop
Tasks are sorted by the virtual desktop they are on.
Definition tasksmodel.h:94
void setVirtualDesktop(const QVariant &desktop=QVariant())
Set the id of the virtual desktop to use in filtering by virtual desktop.
void setSeparateLaunchers(bool separate)
Sets whether launchers are kept separate from other kinds of tasks.
void setHideActivatedLaunchers(bool hideActivatedLaunchers)
Sets whether launchers should be hidden after they have been activated.
void setActivity(const QString &activity)
Set the id of the activity to use in filtering by activity.
void setGroupMode(TasksModel::GroupMode mode)
Sets the group mode, i.e.
void setSortMode(SortMode mode)
Sets the sort mode used in sorting tasks.
void setFilterByScreen(bool filter)
Set whether tasks should be filtered by screen.
void setScreenGeometry(const QRect &geometry)
Set the geometry of the screen to use in filtering by screen.
Provides basic virtual desktop information.
Q_INTERFACES(...)
Q_OBJECTQ_OBJECT
Q_PROPERTY(...)
QSortFilterProxyModel(QObject *parent)
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Mar 28 2025 11:53:53 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.