summaryrefslogtreecommitdiffstats
path: root/src/designer/src/components/formeditor/formeditor.h
blob: 483bd6b69bc09b04b0b9ff727c17191dc176d7c6 (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
27
28
29
30
31
32
33
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#ifndef FORMEDITOR_H
#define FORMEDITOR_H

#include "formeditor_global.h"

#include <QtDesigner/abstractformeditor.h>

QT_BEGIN_NAMESPACE

class QObject;

namespace qdesigner_internal {

class QT_FORMEDITOR_EXPORT FormEditor: public QDesignerFormEditorInterface
{
    Q_OBJECT
public:
    FormEditor(QObject *parent = nullptr);
    FormEditor(const QStringList &pluginPaths,
               QObject *parent = nullptr);
    ~FormEditor() override;
public slots:
    void slotQrcFileChangedExternally(const QString &path);
};

}  // namespace qdesigner_internal

QT_END_NAMESPACE

#endif // FORMEDITOR_H