File: propertyeditdialog.h

package info (click to toggle)
vibes 0.3.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,684 kB
  • sloc: cpp: 6,120; python: 412; makefile: 214; sh: 13
file content (26 lines) | stat: -rw-r--r-- 439 bytes parent folder | download
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 PROPERTYEDITDIALOG_H
#define PROPERTYEDITDIALOG_H

#include <QDialog>
#include <QJsonObject>

namespace Ui {
class PropertyEditDialog;
}

class PropertyEditDialog : public QDialog
{
    Q_OBJECT

public:
    explicit PropertyEditDialog(QWidget *parent = 0);
    ~PropertyEditDialog();

private:
    Ui::PropertyEditDialog *ui;

public:
    static QJsonObject showEditorForJson(QJsonObject init);
};

#endif // PROPERTYEDITDIALOG_H