~dani.behzi/saghar/trunk

« back to all changes in this revision

Viewing changes to src/progressmanager/progressmanager_x11.cpp

  • Committer: Danial Behzadi
  • Date: 2019-11-26 13:15:32 UTC
  • Revision ID: dani.behzi@ubuntu.com-20191126131532-smfm3r9vk80dftiw
update to version 3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *  This file is part of Saaghar, a Persian poetry software                *
 
3
 *                                                                         *
 
4
 *  Copyright (C) 2015-2016 by S. Razi Alavizadeh                          *
 
5
 *  E-Mail: <s.r.alavizadeh@gmail.com>, WWW: <http://pozh.org>             *
 
6
 *                                                                         *
 
7
 *  This program is free software; you can redistribute it and/or modify   *
 
8
 *  it under the terms of the GNU General Public License as published by   *
 
9
 *  the Free Software Foundation; either version 3 of the License,         *
 
10
 *  (at your option) any later version                                     *
 
11
 *                                                                         *
 
12
 *  This program is distributed in the hope that it will be useful,        *
 
13
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of         *
 
14
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the          *
 
15
 *  GNU General Public License for more details                            *
 
16
 *                                                                         *
 
17
 *  You should have received a copy of the GNU General Public License      *
 
18
 *  along with this program; if not, see http://www.gnu.org/licenses/      *
 
19
 *                                                                         *
 
20
 ***************************************************************************/
 
21
 
 
22
/****************************************************************************
 
23
**
 
24
** Copyright (C) 2015 The Qt Company Ltd.
 
25
** Contact: http://www.qt.io/licensing
 
26
**
 
27
** This file is part of Qt Creator.
 
28
**
 
29
** Commercial License Usage
 
30
** Licensees holding valid commercial Qt licenses may use this file in
 
31
** accordance with the commercial license agreement provided with the
 
32
** Software or, alternatively, in accordance with the terms contained in
 
33
** a written agreement between you and The Qt Company.  For licensing terms and
 
34
** conditions see http://www.qt.io/terms-conditions.  For further information
 
35
** use the contact form at http://www.qt.io/contact-us.
 
36
**
 
37
** GNU Lesser General Public License Usage
 
38
** Alternatively, this file may be used under the terms of the GNU Lesser
 
39
** General Public License version 2.1 or version 3 as published by the Free
 
40
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
 
41
** LICENSE.LGPLv3 included in the packaging of this file.  Please review the
 
42
** following information to ensure the GNU Lesser General Public License
 
43
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
 
44
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 
45
**
 
46
** In addition, as a special exception, The Qt Company gives you certain additional
 
47
** rights.  These rights are described in The Qt Company LGPL Exception
 
48
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 
49
**
 
50
****************************************************************************/
 
51
 
 
52
#include "progressmanager_p.h"
 
53
 
 
54
void ProgressManagerPrivate::initInternal()
 
55
{
 
56
}
 
57
 
 
58
void ProgressManagerPrivate::cleanup()
 
59
{
 
60
}
 
61
 
 
62
void ProgressManagerPrivate::doSetApplicationLabel(const QString &text)
 
63
{
 
64
    Q_UNUSED(text)
 
65
}
 
66
 
 
67
void ProgressManagerPrivate::setApplicationProgressRange(int min, int max)
 
68
{
 
69
    Q_UNUSED(min)
 
70
    Q_UNUSED(max)
 
71
}
 
72
 
 
73
void ProgressManagerPrivate::setApplicationProgressValue(int value)
 
74
{
 
75
    Q_UNUSED(value)
 
76
}
 
77
 
 
78
void ProgressManagerPrivate::setApplicationProgressVisible(bool visible)
 
79
{
 
80
    Q_UNUSED(visible)
 
81
}