summaryrefslogtreecommitdiff
path: root/muse2/muse/widgets/projectcreateimpl.h
blob: 3ca61e360be1bb03c392b2414acc4604640d04d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef PROJECTCREATEIMPL_H
#define PROJECTCREATEIMPL_H

#include <QDialog>
#include "ui_projectcreate.h"

class ProjectCreateImpl : public QDialog, Ui::ProjectCreate
{
    Q_OBJECT

    QString directoryPath;
public:
    explicit ProjectCreateImpl(QWidget *parent = 0);
    QString getProjectPath();
    QString getSongInfo();

signals:

public slots:
    void updateDirectoryPath();
    void selectDirectory();
    void ok();

};

#endif // PROJECTCREATEIMPL_H