File indexing completed on 2024-04-28 05:49:09

0001 /*  This file is part of the Kate project.
0002  *
0003  *  SPDX-FileCopyrightText: 2013 Dominik Haumann <dhaumann.org>
0004  *
0005  *  SPDX-License-Identifier: LGPL-2.0-or-later
0006  */
0007 
0008 #pragma once
0009 
0010 #include <QPoint>
0011 #include <QString>
0012 
0013 class QModelIndex;
0014 class KateProjectViewTree;
0015 
0016 class KateProjectTreeViewContextMenu
0017 {
0018 public:
0019     /**
0020      * our project.
0021      * @return project
0022      */
0023     static void exec(const QString &filename, const QModelIndex &index, const QPoint &pos, KateProjectViewTree *parent);
0024 };