File indexing completed on 2024-12-22 03:46:49

0001 /*
0002   This file is part of the KTextTemplate library
0003 
0004   SPDX-FileCopyrightText: 2010 Stephen Kelly <steveire@gmail.com>
0005 
0006   SPDX-License-Identifier: LGPL-2.1-or-later
0007 
0008 */
0009 
0010 #ifndef PROPERTYTABLEWIDGET_H
0011 #define PROPERTYTABLEWIDGET_H
0012 
0013 #include <QTableWidget>
0014 
0015 class PropertyTableWidget : public QTableWidget
0016 {
0017     Q_OBJECT
0018 public:
0019     PropertyTableWidget(QWidget *parent = 0);
0020 
0021     virtual void contextMenuEvent(QContextMenuEvent *contextMenuEvent);
0022 
0023 public Q_SLOTS:
0024     void slotAdd();
0025     void slotRemove();
0026     void slotClear();
0027 };
0028 
0029 #endif