~ubuntu-branches/ubuntu/saucy/goldencheetah/saucy

« back to all changes in this revision

Viewing changes to src/RideImportWizard.h

  • Committer: Package Import Robot
  • Author(s): KURASHIKI Satoru
  • Date: 2013-08-18 07:02:45 UTC
  • mfrom: (4.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20130818070245-zgdvb47e1k3mtgil
Tags: 3.0-3
debian/control: remove needless dependency. (Closes: #719571)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
#ifndef _RideImportWizard_h
20
20
#define _RideImportWizard_h
 
21
#include "GoldenCheetah.h"
21
22
 
22
23
#include <QtGui>
23
24
#include <QTableWidget>
24
25
#include <QProgressBar>
25
26
#include <QList>
26
27
#include <QListIterator>
27
 
#include <boost/scoped_ptr.hpp>
28
28
#include "MainWindow.h"
29
29
 
30
30
// Dialog class to show filenames, import progress and to capture user input
33
33
class RideImportWizard : public QDialog
34
34
{
35
35
    Q_OBJECT
 
36
    G_OBJECT
 
37
 
36
38
 
37
39
public:
38
40
    RideImportWizard(QList<QUrl> *urls, QDir &home, MainWindow *main, QWidget *parent = 0);
64
66
    QCheckBox *overFiles;      // chance to set overwrite when asking for dates
65
67
    bool overwriteFiles; // flag to overwrite files from checkbox
66
68
    MainWindow *mainWindow; // caller
 
69
 
 
70
    QStringList deleteMe; // list of temp files created during import
67
71
};
68
72
 
69
73
// Item Delegate for Editing Date and Time of Ride inside the
72
76
class RideDelegate : public QItemDelegate
73
77
{
74
78
    Q_OBJECT
 
79
    G_OBJECT
 
80
 
75
81
 
76
82
public:
77
83
    RideDelegate(int dateColumn, QObject *parent = 0);