~ubuntu-branches/ubuntu/vivid/qtcreator-plugin-ubuntu/vivid

« back to all changes in this revision

Viewing changes to src/ubuntu/ubuntupackagingmode.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Benjamin Zeller
  • Date: 2015-01-30 06:05:59 UTC
  • mfrom: (1.1.81)
  • Revision ID: package-import@ubuntu.com-20150130060559-1kirdtmm6bl6eb26
Tags: 3.1.1+15.04.20150130-0ubuntu1
[ Benjamin Zeller ]
Refactoring of the publish Tab

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#define UBUNTUPACKAGINGMODE_H
21
21
 
22
22
#include <coreplugin/imode.h>
23
 
#include "ubuntupackagingwidget.h"
 
23
#include "ubuntupackagingmodel.h"
24
24
#include <QObject>
25
25
#include <projectexplorer/project.h>
26
26
 
 
27
class QQuickView;
 
28
 
27
29
namespace Ubuntu {
28
30
namespace Internal {
29
31
 
30
32
class UbuntuClickManifest;
 
33
class UbuntuPackagingModel;
31
34
 
32
35
class UbuntuPackagingMode : public Core::IMode
33
36
{
45
48
 
46
49
protected:
47
50
    QWidget* m_modeWidget;
48
 
    UbuntuPackagingWidget m_ubuntuPackagingWidget;
49
 
 
50
51
    Core::Id previousMode;
51
52
 
52
53
private:
53
54
    static UbuntuPackagingMode* m_instance;
 
55
    QQuickView *m_modeView;
 
56
    UbuntuPackagingModel *m_viewModel;
54
57
};
55
58
 
56
59
}