KTextEditor

katenormalinputmodefactory.cpp
1/*
2 SPDX-FileCopyrightText: KDE Developers
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#include "katenormalinputmodefactory.h"
8#include "katenormalinputmode.h"
9
10#include <KLocalizedString>
11
12KateAbstractInputMode *KateNormalInputModeFactory::createInputMode(KateViewInternal *viewInternal)
13{
14 return new KateNormalInputMode(viewInternal);
15}
16
17KateConfigPage *KateNormalInputModeFactory::createConfigPage(QWidget *)
18{
19 return nullptr;
20}
21
22KTextEditor::View::InputMode KateNormalInputModeFactory::inputMode()
23{
25}
26
27QString KateNormalInputModeFactory::name()
28{
29 return i18n("Normal Mode");
30}
InputMode
Possible input modes.
Definition view.h:286
@ NormalInputMode
Normal Mode.
Definition view.h:287
QString i18n(const char *text, const TYPE &arg...)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:15:43 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.