File indexing completed on 2024-04-14 15:48:55

0001 /***************************************************************************
0002  *   Copyright (C) 2008-2012 by Daniel Nicoletti                           *
0003  *   dantti12@gmail.com                                                    *
0004  *                                                                         *
0005  *   This program is free software; you can redistribute it and/or modify  *
0006  *   it under the terms of the GNU General Public License as published by  *
0007  *   the Free Software Foundation; either version 2 of the License, or     *
0008  *   (at your option) any later version.                                   *
0009  *                                                                         *
0010  *   This program is distributed in the hope that it will be useful,       *
0011  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
0012  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
0013  *   GNU General Public License for more details.                          *
0014  *                                                                         *
0015  *   You should have received a copy of the GNU General Public License     *
0016  *   along with this program; see the file COPYING. If not, write to       *
0017  *   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,  *
0018  *   Boston, MA 02110-1301, USA.                                           *
0019  ***************************************************************************/
0020 
0021 #ifndef PK_STRINGS_H
0022 #define PK_STRINGS_H
0023 
0024 //#include <kdemacros.h>
0025 
0026 #include <Transaction>
0027 
0028 class Q_DECL_EXPORT PkStrings : public QObject
0029 {
0030     Q_OBJECT
0031 public Q_SLOTS:
0032     static QString infoPresent(PackageKit::Transaction::Info info);
0033     static QString infoPast(PackageKit::Transaction::Info info);
0034     static QString error(PackageKit::Transaction::Error error);
0035     static QString errorMessage(PackageKit::Transaction::Error error);
0036 //    static QString message(PackageKit::Transaction::Message type);
0037     static QString status(PackageKit::Transaction::Status status, uint speed = 0, qulonglong downloadRemaining = 0);
0038     static QString statusPast(PackageKit::Transaction::Status status);
0039     static QString groups(PackageKit::Transaction::Group group);
0040     static QString info(int state);
0041     static QString packageQuantity(bool updates, int packages, int selected);
0042     static QString updateState(PackageKit::Transaction::UpdateState value);
0043     static QString restartType(PackageKit::Transaction::Restart value);
0044     static QString restartTypeFuture(PackageKit::Transaction::Restart value);
0045     static QString action(PackageKit::Transaction::Role role, PackageKit::Transaction::TransactionFlags flags);
0046     static QString actionPast(PackageKit::Transaction::Role action);
0047     static QString mediaMessage(PackageKit::Transaction::MediaType value, const QString &text);
0048     static QString daemonError(int value);
0049     static QString prettyFormatDuration(unsigned long mSec);
0050     static QString lastCacheRefreshTitle(uint lastTime);
0051     static QString lastCacheRefreshSubTitle(uint lastTime);
0052 // the following are needed to be able to use the functions from QML (bug#344639)
0053     static QString status(int status, uint speed = 0, qulonglong downloadRemaining = 0);
0054     static QString action(int role, int flags);
0055 };
0056 
0057 #endif