blob: c59de64064498c2a5bfa0436e2c0b7c6cbe6433f (
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
|
/*
* SPDX-FileCopyrightText: 2009 Rahman Duran <[email protected]>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef DOLPHINREMOTEENCODING_H
#define DOLPHINREMOTEENCODING_H
#include "dolphin_export.h"
#include <QAction>
#include <QStringList>
#include <QUrl>
class KActionMenu;
class DolphinViewActionHandler;
/**
* @brief Allows to change character encoding for remote urls like ftp.
*
* When browsing remote url, its possible to change encoding from Tools Menu.
*/
class DOLPHIN_EXPORT DolphinRemoteEncoding : public QObject
{
Q_OBJECT
public:
DolphinRemoteEncoding(QObject *parent, DolphinViewActionHandler *actionHandler);
~DolphinRemoteEncoding() override;
public Q_SLOTS:
void slotAboutToOpenUrl();
void slotItemSelected(QAction *action);
void slotReload();
void slotDefault();
private Q_SLOTS:
void slotAboutToShow();
private:
void updateView();
void loadSettings();
void fillMenu();
void updateMenu();
KActionMenu *m_menu;
QStringList m_encodingDescriptions;
QUrl m_currentURL;
DolphinViewActionHandler *m_actionHandler;
bool m_loaded;
int m_idDefault;
};
#endif
|