KTextEditor

katehighlightmenu.h
1/*
2 SPDX-FileCopyrightText: 2001-2003 Christoph Cullmann <cullmann@kde.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#ifndef KATE_HIGHLIGHTMENU_H
8#define KATE_HIGHLIGHTMENU_H
9
10#include <QPointer>
11
12#include <KActionMenu>
13
14#include <vector>
15
16namespace KTextEditor
17{
18class DocumentPrivate;
19}
20
21class KateHighlightingMenu : public KActionMenu
22{
24
25public:
26 KateHighlightingMenu(const QString &text, QObject *parent)
28 {
29 init();
31 }
32
33 void updateMenu(KTextEditor::DocumentPrivate *doc);
34
35private:
36 void init();
37
39 std::vector<QString> subMenusName;
40 std::vector<QString> names;
41 std::vector<QMenu *> subMenus;
42 std::vector<QAction *> subActions;
43 QActionGroup *m_actionGroup;
44
45public Q_SLOTS:
46 void slotAboutToShow();
47
48private Q_SLOTS:
49 void setHl();
50};
51
52#endif
void setPopupMode(QToolButton::ToolButtonPopupMode popupMode)
The KTextEditor namespace contains all the public API that is required to use the KTextEditor compone...
Q_OBJECTQ_OBJECT
Q_SLOTSQ_SLOTS
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:15:44 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.