mirror of
https://github.com/GoldenCheetah/GoldenCheetah.git
synced 2026-02-14 16:39:57 +00:00
Porting the codebase to QT 5 (5.2) to get the latest bug fixes, performance and improved platform support. This first part is to fixup the codebase to compile on Qt 5, but some aspects have been broken (video). The second part is to migrate from Qwt 6.0.1 to the latest Qwt for multiaxis support. The third part will be to fixup any platform specific issues or issues identified at runtime.
153 lines
3.9 KiB
C++
153 lines
3.9 KiB
C++
/*
|
|
* Copyright (c) 2012 Mark Liversedge (liversedge@gmail.com)
|
|
*
|
|
* 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 2 of the License, 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, write to the Free Software Foundation, Inc., 51
|
|
* Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef _Library_h
|
|
#define _Library_h
|
|
#include "GoldenCheetah.h"
|
|
|
|
#include <QDir>
|
|
#include <QLabel>
|
|
#include <QDialog>
|
|
#include <QFileDialog>
|
|
#include <QCheckBox>
|
|
#include <QPushButton>
|
|
#include <QTextEdit>
|
|
#include <QTreeWidget>
|
|
#include <QTreeWidgetItem>
|
|
#include <QThread>
|
|
|
|
class Library : QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QString name; // e.g. Media Library
|
|
QList<QString> paths; // array of search paths for files in this library
|
|
QList<QString> refs; // array of drag-n-dropped files referenced not copied
|
|
|
|
static void initialise(QDir); // init
|
|
static Library *findLibrary(QString);
|
|
static void importFiles(Context *context, QStringList files);
|
|
void removeRef(Context *context, QString ref);
|
|
};
|
|
|
|
extern QList<Library *> libraries; // keep track of all Library search paths for all users
|
|
|
|
class LibrarySearch;
|
|
class LibrarySearchDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
LibrarySearchDialog(Context *context);
|
|
|
|
private slots:
|
|
void search();
|
|
void cancel();
|
|
|
|
void pathsearching(QString);
|
|
void foundWorkout(QString);
|
|
void foundVideo(QString);
|
|
|
|
void addDirectory();
|
|
void removeDirectory();
|
|
void removeReference();
|
|
void updateDB();
|
|
|
|
private:
|
|
Context *context;
|
|
Library *library;
|
|
LibrarySearch *searcher;
|
|
bool searching;
|
|
int pathIndex, workoutCountN, videoCountN;
|
|
|
|
QStringList workoutsFound, videosFound;
|
|
|
|
// let us know we are searching
|
|
void setSearching(bool amsearching) {
|
|
searching = amsearching;
|
|
setWidgets();
|
|
}
|
|
|
|
// update widgets to switch between searching and not searching
|
|
void setWidgets();
|
|
|
|
// gui widgets
|
|
QCheckBox *findWorkouts,
|
|
*findMedia;
|
|
QPushButton *addPath,
|
|
*removePath;
|
|
QPushButton *removeRef;
|
|
QTreeWidget *searchPathTable;
|
|
QTreeWidget *refTable;
|
|
QTreeWidgetItem *allRefs;
|
|
QTreeWidgetItem *allPaths;
|
|
QLabel *pathLabelTitle, *mediaCountTitle, *workoutCountTitle;
|
|
QLabel *pathLabel, *mediaCount, *workoutCount;
|
|
QPushButton *cancelButton,
|
|
*searchButton;
|
|
};
|
|
|
|
class LibrarySearch : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
LibrarySearch(QString path, bool findMedia, bool findWorkout);
|
|
void run();
|
|
|
|
public slots:
|
|
void abort();
|
|
|
|
|
|
signals:
|
|
void searching(QString);
|
|
void done();
|
|
void foundVideo(QString);
|
|
void foundWorkout(QString);
|
|
|
|
private:
|
|
volatile bool aborted;
|
|
QString path;
|
|
bool findMedia, findWorkout;
|
|
};
|
|
|
|
class WorkoutImportDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
WorkoutImportDialog(Context *context, QStringList files);
|
|
|
|
public slots:
|
|
void import();
|
|
|
|
private:
|
|
Context *context;
|
|
QStringList files;
|
|
|
|
QStringList videos, workouts;
|
|
|
|
QTreeWidget *fileTable;
|
|
QPushButton *okButton, *cancelButton;
|
|
|
|
QCheckBox *overwrite;
|
|
};
|
|
|
|
#endif // _Library_h
|