/* * Copyright(C) 2018-2020, Franco Conidi * * This file is part of the Systemback. * * The Systemback 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 3 of the License, or (at your option) any later * version. * * The Systemback 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 the * Systemback. If not, see . */ #ifndef SBTYPEDEF_HPP #define SBTYPEDEF_HPP #include #include #include #include #include #include #include #include #include #include #include #include class bstr; typedef QTranslator QTrn; typedef QCursor *QCr; typedef QDesktopWidget *QDW; typedef QWidget *QWdt; typedef QTableWidget *QTblW; typedef QListWidget *QLW; typedef QPushButton *QPB; typedef QLineEdit *QLE; typedef QComboBox *QCbB; typedef QRadioButton *QRB; typedef QCheckBox *QCB; typedef QLabel *QLbl; typedef QTextStream QTS; typedef QList QWL; typedef QList QCbBL; typedef QList QLbL; typedef const QStringList cQSL; typedef QStringList QSL; typedef QList QBAL; typedef QList> QUCLL; typedef QList QLIL; typedef const QList cQUCL; typedef QList QUCL; typedef const std::initializer_list cSIL; typedef const QString cQStr; typedef QString QStr; typedef const QByteArray cQBA; typedef QByteArray QBA; typedef const QChar cQChar; typedef const QRect cQRect; typedef const QSize cQSize; typedef const QPoint cQPoint; typedef const bstr cbstr; typedef unsigned long long ullong; typedef long long llong; typedef const char cchar; typedef signed char schar; #endif