summaryrefslogtreecommitdiff
path: root/muse2/muse/widgets/projectcreateimpl.h
blob: 77547c1ab0c25d9276ee5710c58f3a4d8bb5b6f2 (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