QtPdWidgets  2.3.1
TableViewImpl.h
Go to the documentation of this file.
1 /*****************************************************************************
2  *
3  * Copyright (C) 2012 Florian Pose <fp@igh-essen.com>
4  *
5  * This file is part of the QtPdWidgets library.
6  *
7  * The QtPdWidgets library is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public License as
9  * published by the Free Software Foundation, either version 3 of the License,
10  * or (at your option) any later version.
11  *
12  * The QtPdWidgets library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public License
18  * along with the QtPdWidgets Library. If not, see
19  * <http://www.gnu.org/licenses/>.
20  *
21  ****************************************************************************/
22 
23 #ifndef PD_TABLEVIEW_IMPL_H
24 #define PD_TABLEVIEW_IMPL_H
25 
26 #include "TableView.h"
27 
28 namespace Pd {
29 
30 /****************************************************************************/
31 
35 {
36 
37  public:
38  TableViewPrivate(TableView *parent);
39 
40  private:
41  TableView *const q_ptr;
42  Q_DECLARE_PUBLIC(TableView)
43 
44  QAction *commitAction;
45  QAction *revertAction;
46  QAction *addRowAction;
47  QAction *removeRowAction;
50  void retranslate();
51 };
52 
53 /****************************************************************************/
54 
55 } // namespace Pd
56 
57 #endif
QAction * removeRowAction
Definition: TableViewImpl.h:47
Definition: Bar.h:36
QAction * exportAsCsvAction
Definition: TableViewImpl.h:48
void retranslate()
retranslate
Definition: TableView.cpp:382
Table view widget.
Definition: TableViewImpl.h:34
TableView *const q_ptr
Definition: TableViewImpl.h:41
TableViewPrivate(TableView *parent)
Constructor.
Definition: TableView.cpp:70
QAction * revertAction
Definition: TableViewImpl.h:45
QAction * commitAction
Definition: TableViewImpl.h:44
QAction * addRowAction
Definition: TableViewImpl.h:46
Table view widget.
Definition: TableView.h:39
QAction * importFromCsvAction
Definition: TableViewImpl.h:49