blob: dc6605da6bd03695bf7281a4d16d00c16825265a (
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/*
* SPDX-FileCopyrightText: 2007-2010 Peter Penz <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef TERMINALPANEL_H
#define TERMINALPANEL_H
#include "panels/panel.h"
#include "kiofuse_interface.h"
#include <QQueue>
class TerminalInterface;
class KMessageWidget;
class QVBoxLayout;
class QWidget;
namespace KIO {
class StatJob;
}
namespace KParts {
class ReadOnlyPart;
}
class KJob;
/**
* @brief Shows the terminal which is synchronized with the URL of the
* active view.
*/
class TerminalPanel : public Panel
{
Q_OBJECT
public:
explicit TerminalPanel(QWidget* parent = nullptr);
~TerminalPanel() override;
/**
* @brief This function is used to set the terminal panels's cwd to
* home when an unmounting request is received.
*/
void goHome();
QString currentWorkingDirectory();
bool isHiddenInVisibleWindow() const;
bool terminalHasFocus() const;
bool hasProgramRunning() const;
QString runningProgramName() const;
public Q_SLOTS:
void terminalExited();
void dockVisibilityChanged();
Q_SIGNALS:
void hideTerminalPanel();
/**
* Is emitted if the an URL change is requested.
*/
void changeUrl(const QUrl& url);
protected:
bool urlChanged() override;
void showEvent(QShowEvent* event) override;
private Q_SLOTS:
void slotMostLocalUrlResult(KJob* job);
void slotKonsolePartCurrentDirectoryChanged(const QString& dir);
private:
enum class HistoryPolicy {
AddToHistory,
SkipHistory
};
void changeDir(const QUrl& url);
void sendCdToTerminal(const QString& path, HistoryPolicy addToHistory = HistoryPolicy::AddToHistory);
void sendCdToTerminalKIOFuse(const QUrl &url);
private:
bool m_clearTerminal;
KIO::StatJob* m_mostLocalUrlJob;
QVBoxLayout* m_layout;
TerminalInterface* m_terminal;
QWidget* m_terminalWidget;
KMessageWidget* m_konsolePartMissingMessage;
KParts::ReadOnlyPart* m_konsolePart;
QString m_konsolePartCurrentDirectory;
QQueue<QString> m_sendCdToTerminalHistory;
org::kde::KIOFuse::VFS m_kiofuseInterface;
};
#endif // TERMINALPANEL_H
|