aboutsummaryrefslogtreecommitdiffstats
path: root/src/winextras/qwinjumplistitem.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/winextras/qwinjumplistitem.cpp')
-rw-r--r--src/winextras/qwinjumplistitem.cpp293
1 files changed, 0 insertions, 293 deletions
diff --git a/src/winextras/qwinjumplistitem.cpp b/src/winextras/qwinjumplistitem.cpp
deleted file mode 100644
index ee117bc..0000000
--- a/src/winextras/qwinjumplistitem.cpp
+++ /dev/null
@@ -1,293 +0,0 @@
-/****************************************************************************
- **
- ** Copyright (C) 2016 Ivan Vizir <define-true-false@yandex.com>
- ** Copyright (C) 2016 The Qt Company Ltd.
- ** Contact: https://www.qt.io/licensing/
- **
- ** This file is part of the QtWinExtras module of the Qt Toolkit.
- **
- ** $QT_BEGIN_LICENSE:LGPL$
- ** Commercial License Usage
- ** Licensees holding valid commercial Qt licenses may use this file in
- ** accordance with the commercial license agreement provided with the
- ** Software or, alternatively, in accordance with the terms contained in
- ** a written agreement between you and The Qt Company. For licensing terms
- ** and conditions see https://www.qt.io/terms-conditions. For further
- ** information use the contact form at https://www.qt.io/contact-us.
- **
- ** GNU Lesser General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU Lesser
- ** General Public License version 3 as published by the Free Software
- ** Foundation and appearing in the file LICENSE.LGPL3 included in the
- ** packaging of this file. Please review the following information to
- ** ensure the GNU Lesser General Public License version 3 requirements
- ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
- **
- ** GNU General Public License Usage
- ** Alternatively, this file may be used under the terms of the GNU
- ** General Public License version 2.0 or (at your option) the GNU General
- ** Public license version 3 or any later version approved by the KDE Free
- ** Qt Foundation. The licenses are as published by the Free Software
- ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
- ** included in the packaging of this file. Please review the following
- ** information to ensure the GNU General Public License requirements will
- ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
- ** https://www.gnu.org/licenses/gpl-3.0.html.
- **
- ** $QT_END_LICENSE$
- **
- ****************************************************************************/
-
-#include "qwinjumplistitem.h"
-#include "qwinjumplistitem_p.h"
-#include "qwinjumplistcategory_p.h"
-
-#include <QtCore/qdebug.h>
-#include <QtCore/qdir.h>
-
-QT_BEGIN_NAMESPACE
-
-/*!
- \class QWinJumpListItem
- \inmodule QtWinExtras
- \since 5.2
- \brief The QWinJumpListItem class represents a jump list item.
- */
-
-/*!
- \enum QWinJumpListItem::Type
-
- This enum describes the available QWinJumpListItem types.
-
- \value Destination
- Item acts as a link to a file that the application can open.
- \value Link
- Item represents a link to an application.
- \value Separator
- Item is a separator. Only tasks category supports separators.
- */
-
-void QWinJumpListItemPrivate::invalidate()
-{
- if (category)
- QWinJumpListCategoryPrivate::get(category)->invalidate();
-}
-
-/*!
- Constructs a QWinJumpListItem with the specified \a type.
- */
-QWinJumpListItem::QWinJumpListItem(QWinJumpListItem::Type type) :
- d_ptr(new QWinJumpListItemPrivate)
-{
- d_ptr->type = type;
- d_ptr->category = nullptr;
-}
-
-/*!
- Destroys the QWinJumpListItem.
- */
-QWinJumpListItem::~QWinJumpListItem() = default;
-
-/*!
- Sets the item \a type.
- */
-void QWinJumpListItem::setType(QWinJumpListItem::Type type)
-{
- Q_D(QWinJumpListItem);
- if (d->type != type) {
- d->type = type;
- d->invalidate();
- }
-}
-
-/*!
- Returns the item type.
- */
-QWinJumpListItem::Type QWinJumpListItem::type() const
-{
- Q_D(const QWinJumpListItem);
- return d->type;
-}
-
-/*!
- Sets the item \a filePath, the meaning of which depends on the type of this
- item:
-
- \list
-
- \li If the item type is QWinJumpListItem::Destination, \a filePath is the
- path to a file that can be opened by an application.
-
- \li If the item type is QWinJumpListItem::Link, \a filePath is the path to
- an executable that is executed when this item is clicked by the
- user.
-
- \endlist
-
- \sa setWorkingDirectory(), setArguments()
- */
-void QWinJumpListItem::setFilePath(const QString &filePath)
-{
- Q_D(QWinJumpListItem);
- if (d->filePath != filePath) {
- d->filePath = filePath;
- d->invalidate();
- }
-}
-
-/*!
- Returns the file path set by setFilePath().
- */
-QString QWinJumpListItem::filePath() const
-{
- Q_D(const QWinJumpListItem);
- return d->filePath;
-}
-
-/*!
- Sets the path to the working directory of this item to \a workingDirectory.
-
- This value is used only if the type of this item is QWinJumpListItem::Link.
-
- \sa setFilePath()
- */
-void QWinJumpListItem::setWorkingDirectory(const QString &workingDirectory)
-{
- Q_D(QWinJumpListItem);
- if (d->workingDirectory != workingDirectory) {
- d->workingDirectory = workingDirectory;
- d->invalidate();
- }
-}
-
-/*!
- Returns the working directory path.
- */
-QString QWinJumpListItem::workingDirectory() const
-{
- Q_D(const QWinJumpListItem);
- return d->workingDirectory;
-}
-
-/*!
- Sets the \a icon of this item.
-
- This value is used only if the type of this item is QWinJumpListItem::Link.
- */
-void QWinJumpListItem::setIcon(const QIcon &icon)
-{
- Q_D(QWinJumpListItem);
- if (d->icon.cacheKey() != icon.cacheKey()) {
- d->icon = icon;
- d->invalidate();
- }
-}
-
-/*!
- Returns the icon set for this item.
- */
-QIcon QWinJumpListItem::icon() const
-{
- Q_D(const QWinJumpListItem);
- return d->icon;
-}
-
-/*!
- Sets the \a title of this item.
-
- This value is used only if the type of this item is QWinJumpListItem::Link.
- */
-void QWinJumpListItem::setTitle(const QString &title)
-{
- Q_D(QWinJumpListItem);
- if (d->title != title) {
- d->title = title;
- d->invalidate();
- }
-}
-
-/*!
- Returns the title of this item.
- */
-QString QWinJumpListItem::title() const
-{
- Q_D(const QWinJumpListItem);
- return d->title;
-}
-
-/*!
- Sets a \a description for this item.
-
- This value is used only if the type of this item is QWinJumpListItem::Link.
- */
-void QWinJumpListItem::setDescription(const QString &description)
-{
- Q_D(QWinJumpListItem);
- if (d->description != description) {
- d->description = description;
- d->invalidate();
- }
-}
-
-/*!
- Returns the description of this item.
- */
-QString QWinJumpListItem::description() const
-{
- Q_D(const QWinJumpListItem);
- return d->description;
-}
-
-/*!
- Sets command-line \a arguments for this item.
-
- This value is used only if the type of this item is QWinJumpListItem::Link.
-
- \sa setFilePath()
- */
-void QWinJumpListItem::setArguments(const QStringList &arguments)
-{
- Q_D(QWinJumpListItem);
- if (d->arguments != arguments) {
- d->arguments = arguments;
- d->invalidate();
- }
-}
-
-/*!
- Returns the command-line arguments of this item.
- */
-QStringList QWinJumpListItem::arguments() const
-{
- Q_D(const QWinJumpListItem);
- return d->arguments;
-}
-
-#ifndef QT_NO_DEBUG_STREAM
-
-QDebug operator<<(QDebug debug, const QWinJumpListItem *item)
-{
- QDebugStateSaver saver(debug);
- debug.nospace();
- debug.noquote();
- debug << "QWinJumpListItem(";
- if (item) {
- debug << "type=" << item->type() << ", title=\"" << item->title()
- << "\", description=\"" << item->description()
- << "\", filePath=\"" << QDir::toNativeSeparators(item->filePath())
- << "\", arguments=";
- debug.quote();
- debug << item->arguments();
- debug.noquote();
- debug << ", workingDirectory=\"" << QDir::toNativeSeparators(item->workingDirectory())
- << "\", icon=" << item->icon();
- } else {
- debug << '0';
- }
- debug << ')';
- return debug;
-}
-
-#endif // !QT_NO_DEBUG_STREAM
-
-QT_END_NAMESPACE