/usr/include/KF5/KConfigWidgets/kcodecaction.h is in libkf5configwidgets-dev 5.28.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | /*
kcodecaction.h
Copyright (c) 2003 Jason Keirstead <jason@keirstead.org>
Copyright (c) 2003-2006 Michel Hermier <michel.hermier@gmail.com>
Copyright (c) 2007 Nick Shaforostoff <shafff@ukr.net>
********************************************************************
* *
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the *
* Free Software Foundation, Inc., 51 Franklin Street, *
* Fifth Floor, Boston, MA 02110-1301 USA *
* *
********************************************************************
*/
#ifndef KCODECACTION_H
#define KCODECACTION_H
#include <kencodingprober.h>
#include <kselectaction.h>
#include <kconfigwidgets_export.h>
/**
* @short Action for selecting one of several QTextCodec.
*
* This action shows up a submenu with a list of the available codecs on the system.
*/
class KCONFIGWIDGETS_EXPORT KCodecAction
: public KSelectAction
{
Q_OBJECT
Q_PROPERTY(QString codecName READ currentCodecName WRITE setCurrentCodec)
Q_PROPERTY(int codecMib READ currentCodecMib)
public:
explicit KCodecAction(QObject *parent, bool showAutoOptions = false);
KCodecAction(const QString &text, QObject *parent, bool showAutoOptions = false);
KCodecAction(const QIcon &icon, const QString &text, QObject *parent, bool showAutoOptions = false);
virtual ~KCodecAction();
public:
int mibForName(const QString &codecName, bool *ok = 0) const;
QTextCodec *codecForMib(int mib) const;
QTextCodec *currentCodec() const;
bool setCurrentCodec(QTextCodec *codec);
QString currentCodecName() const;
bool setCurrentCodec(const QString &codecName);
int currentCodecMib() const;
bool setCurrentCodec(int mib);
/**
* Applicable only if showAutoOptions in c'tor was true
*
* @returns KEncodingProber::None if specific encoding is selected, not autodetection, otherwise... you know it!
*/
KEncodingProber::ProberType currentProberType() const;
/**
* Applicable only if showAutoOptions in c'tor was true
*
* KEncodingProber::Universal means 'Default' item
*/
bool setCurrentProberType(KEncodingProber::ProberType);
Q_SIGNALS:
/**
* Specific (proper) codec was selected
*
* Note that triggered(const QString&) is emitted too (as defined in KSelectAction)
*/
void triggered(QTextCodec *codec);
/**
* Autodetection has been selected.
* emits KEncodingProber::Universal if Default was selected.
*
* Applicable only if showAutoOptions in c'tor was true
*/
void triggered(KEncodingProber::ProberType);
/**
* If showAutoOptions==true, then better handle triggered(KEncodingProber::ProberType) signal
*/
void defaultItemTriggered();
protected Q_SLOTS:
void actionTriggered(QAction *) Q_DECL_OVERRIDE;
protected:
using KSelectAction::triggered;
private:
class Private;
Private *const d;
Q_PRIVATE_SLOT(d, void _k_subActionTriggered(QAction *))
};
#endif
|