Kate Perl Plug In  1.7
 All Classes Functions Pages
/home/lze/bld/kate/addons/kate/perlcheck/qpdbwidget.h
1 /*
2  * QPdbWidget Perl Debug Widget
3  * Copyright (C) 2016 Dirk Lindner <dirk.lze@gmail.com>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
17  *
18  */
19 
20 #ifndef QPDBWIDGET_H
21 #define QPDBWIDGET_H
22 
23 #include <qt4/QtGui/QWidget>
24 #include "ui_qpdbwidget.h"
25 
26 namespace Ui
27 {
28 class QPdbWidget;
29 }
30 class QPdbWidget : public QWidget , public Ui::QPdbWidget
31 {
32  Q_OBJECT
33 public:
34  QPdbWidget(QWidget *parent);
35  void setText(QString);
36  void clear();
37  void append(QString str,int maxLength =500);
38 public slots:
39  void expr(QString);
40 signals:
41  void excute(QString);
42 private:
43  Ui::QPdbWidget* ui;
44 };
45 
46 #endif // QPDBWIDGET_H
Definition: ui_qpdbwidget.h:101
Definition: qpdbwidget.h:30