mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Cleanup headers
Code formatting
This commit is contained in:
parent
6ead0ae9ee
commit
c907a2f857
2 changed files with 9 additions and 15 deletions
|
@ -28,20 +28,17 @@
|
||||||
* Contact : chris@qbittorrent.org
|
* Contact : chris@qbittorrent.org
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include "scanfoldersmodel.h"
|
||||||
|
|
||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
#include <QString>
|
|
||||||
#include <QStringList>
|
#include <QStringList>
|
||||||
#include <QTemporaryFile>
|
|
||||||
#include <QTextStream>
|
#include <QTextStream>
|
||||||
|
|
||||||
#include "utils/misc.h"
|
|
||||||
#include "utils/fs.h"
|
|
||||||
#include "preferences.h"
|
|
||||||
#include "logger.h"
|
|
||||||
#include "filesystemwatcher.h"
|
|
||||||
#include "bittorrent/session.h"
|
#include "bittorrent/session.h"
|
||||||
#include "scanfoldersmodel.h"
|
#include "filesystemwatcher.h"
|
||||||
|
#include "preferences.h"
|
||||||
|
#include "utils/fs.h"
|
||||||
|
|
||||||
struct ScanFoldersModel::PathData
|
struct ScanFoldersModel::PathData
|
||||||
{
|
{
|
||||||
|
|
|
@ -34,13 +34,10 @@
|
||||||
#include <QAbstractListModel>
|
#include <QAbstractListModel>
|
||||||
#include <QList>
|
#include <QList>
|
||||||
|
|
||||||
QT_BEGIN_NAMESPACE
|
|
||||||
class QStringList;
|
class QStringList;
|
||||||
QT_END_NAMESPACE
|
|
||||||
|
|
||||||
class FileSystemWatcher;
|
class FileSystemWatcher;
|
||||||
|
|
||||||
class ScanFoldersModel : public QAbstractListModel
|
class ScanFoldersModel: public QAbstractListModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
Q_DISABLE_COPY(ScanFoldersModel)
|
Q_DISABLE_COPY(ScanFoldersModel)
|
||||||
|
@ -71,7 +68,7 @@ public:
|
||||||
|
|
||||||
static bool initInstance(QObject *parent = 0);
|
static bool initInstance(QObject *parent = 0);
|
||||||
static void freeInstance();
|
static void freeInstance();
|
||||||
static ScanFoldersModel *instance();
|
static ScanFoldersModel* instance();
|
||||||
|
|
||||||
static QString pathTypeDisplayName(const PathType type);
|
static QString pathTypeDisplayName(const PathType type);
|
||||||
|
|
||||||
|
@ -83,8 +80,8 @@ public:
|
||||||
|
|
||||||
// TODO: removePaths(); singular version becomes private helper functions;
|
// TODO: removePaths(); singular version becomes private helper functions;
|
||||||
// also: remove functions should take modelindexes
|
// also: remove functions should take modelindexes
|
||||||
PathStatus addPath(const QString &watchPath, const PathType& downloadType, const QString &downloadPath, bool addToFSWatcher = true);
|
PathStatus addPath(const QString &watchPath, const PathType &downloadType, const QString &downloadPath, bool addToFSWatcher = true);
|
||||||
PathStatus updatePath(const QString &watchPath, const PathType& downloadType, const QString &downloadPath);
|
PathStatus updatePath(const QString &watchPath, const PathType &downloadType, const QString &downloadPath);
|
||||||
// PRECONDITION: The paths must have been added with addPath() first.
|
// PRECONDITION: The paths must have been added with addPath() first.
|
||||||
void addToFSWatcher(const QStringList &watchPaths);
|
void addToFSWatcher(const QStringList &watchPaths);
|
||||||
void removePath(int row, bool removeFromFSWatcher = true);
|
void removePath(int row, bool removeFromFSWatcher = true);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue