blob: 749eb7ba7f18ace43a4e88d9b7117cd0c1f54c73 (
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
34
35
36
|
// 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 CHANGEPROPERTIES_H
#define CHANGEPROPERTIES_H
#include <QtCore/qglobal.h>
#include "ui_changeproperties.h"
QT_BEGIN_NAMESPACE
class QAxWidget;
class ChangeProperties : public QDialog, Ui::ChangeProperties
{
Q_OBJECT
public:
ChangeProperties(QWidget *parent);
void setControl(QAxWidget *control);
public slots:
void updateProperties();
protected slots:
void on_listProperties_currentItemChanged(QTreeWidgetItem *current);
void on_listEditRequests_itemChanged(QTreeWidgetItem *item);
void on_buttonSet_clicked();
private:
QAxWidget *activex;
};
QT_END_NAMESPACE
#endif // CHANGEPROPERTIES_H
|