MauiKit Terminal

qtermwidget.h
1/* SPDX-FileCopyrightText: 2008 e _k (e_k@users.sourceforge.net)
2
3 SPDX-License-Identifier: LGPL-2.0-or-later
4*/
5
6#ifndef _Q_TERM_WIDGET
7#define _Q_TERM_WIDGET
8
9#include "Emulation.h"
10#include "Filter.h"
11#include <QTranslator>
12#include <QWidget>
13
14class QVBoxLayout;
15class TermWidgetImpl;
16class SearchBar;
17class QUrl;
18
19class QTermWidget
20{
21public:
22 /**
23 * This enum describes the location where the scroll bar is positioned in the display widget.
24 */
25 enum ScrollBarPosition {
26 /** Do not show the scroll bar. */
27 NoScrollBar = 0,
28 /** Show the scroll bar on the left side of the display. */
29 ScrollBarLeft = 1,
30 /** Show the scroll bar on the right side of the display. */
31 ScrollBarRight = 2
32 };
33
34 using KeyboardCursorShape = Konsole::Emulation::KeyboardCursorShape;
35};
36
37#endif
KeyboardCursorShape
This enum describes the available shapes for the keyboard cursor.
Definition Emulation.h:128
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Jul 26 2024 11:57:30 by doxygen 1.11.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.