File: docfilewizard.h

package info (click to toggle)
kdevelop-python 24.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,640 kB
  • sloc: python: 183,048; cpp: 18,798; xml: 140; sh: 14; makefile: 9
file content (53 lines) | stat: -rw-r--r-- 1,457 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
    SPDX-FileCopyrightText: 2013 Sven Brauch <svenbrauch@gmail.com>

    SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/

#ifndef DOCFILEWIZARD_H
#define DOCFILEWIZARD_H

#include <QWidget>
#include <QDialog>
#include <QLineEdit>
#include <QTextEdit>
#include <QFile>
#include <KProcess>

class DocfileWizard : public QDialog
{
Q_OBJECT
public:
    DocfileWizard(const QString& workingDirectory, QWidget* parent = nullptr);
    QString fileNameForModule(QString moduleName) const;
    void setModuleName(const QString& moduleName);
    // Returns the path the file was saved as when exiting the dialog,
    // or an empty string if the file was not saved.
    const QString wasSavedAs() const;

private:
    QLineEdit* interpreterField;
    QLineEdit* moduleField;
    QLineEdit* outputFilenameField;
    QTextEdit* statusField;
    QTextEdit* resultField;
    // used for deciding whether to auto-update the output filename text field
    QString previousModuleName;
    QProcess* worker;
    QFile outputFile;
    QString savedAs;
    const QString workingDirectory;

    QPushButton* runButton;
    QPushButton* saveButton;

public Q_SLOTS:
    // Calls python to actually generate the docfile
    bool run();
    void updateOutputFilename(const QString& newModuleName);
    void processScriptOutput();
    void processFinished(int, QProcess::ExitStatus);
    void saveAndClose();
};

#endif // DOCFILEWIZARD_H