69 lines
2.2 KiB
C++
69 lines
2.2 KiB
C++
/*
|
|
* Copyright (C) 2020, Tianjin KYLIN Information Technology Co., Ltd.
|
|
*
|
|
* This program 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, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This program 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 this program; if not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
#ifndef SELECTBTNUTIL_H
|
|
#define SELECTBTNUTIL_H
|
|
|
|
#include <QObject>
|
|
#include <QList>
|
|
#include <QSqlTableModel>
|
|
#include <QMap>
|
|
#include "kylinqfiledialog.h"
|
|
class SelectBtnUtil : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit SelectBtnUtil(QObject *parent = nullptr);
|
|
int getBellListSize();
|
|
int getBellIndexById(QString id);
|
|
QString getBellIdByIndex(int index);
|
|
QString getBellNameById(QString id);
|
|
QString getBellPathById(QString id);
|
|
QString getDefaultBellId();
|
|
QString getBellIdByNameEn(QString nameEn);
|
|
void refreshBellData();
|
|
static QString getDefaultBellStr();
|
|
static QString getDefaultBellEn();
|
|
static QList<QString> * getDefaultBellList();
|
|
static QList<QString> * getDefaultBellTrList();
|
|
QString copyAudioFile(QString from);
|
|
bool copyFile(QString from ,QString to);
|
|
QString getFileNameFromPath(QString path);
|
|
QString getFileNameWithoutSuffix(QString FileName);
|
|
QString saveToBellTable(QString filePath);
|
|
|
|
QString openAudioFileDialog(QWidget * parent);
|
|
|
|
QSqlQuery getBellkByPK(QString id);
|
|
QSqlQuery getBellkBynameEn(QString nameEn);
|
|
QList<QString> *getAllBellItem() const;
|
|
|
|
int getCurrentLocale() const;
|
|
|
|
bool mkdir(QString path);
|
|
signals:
|
|
|
|
private:
|
|
QSqlTableModel * m_bellQueryModel = nullptr;
|
|
QMap<QString,int> * idIndexMap = nullptr;
|
|
QMap<int,QString> * indexIdMap = nullptr;
|
|
QString m_defaultBellId = "";
|
|
QList<QString> * allBellItem = nullptr;
|
|
};
|
|
|
|
#endif // SELECTBTNUTIL_H
|