Qucs-GUI
0.0.19
|
00001 /*************************************************************************** 00002 messagedock.h 00003 ------------- 00004 begin : Tue Mar 11 2014 00005 copyright : (C) 2014 by Guilherme Brondani Torri 00006 email : guitorri AT gmail DOT com 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef MESSAGEDOCK_H 00019 #define MESSAGEDOCK_H 00020 00021 #include "qucs.h" 00022 00023 #include <QWidget> 00024 00025 class QDockWidget; 00026 class QTabWidget; 00027 class QPlainTextEdit; 00028 00033 class MessageDock : public QWidget { 00034 Q_OBJECT 00035 public: 00036 MessageDock(QucsApp*); 00037 ~MessageDock() {}; 00038 00039 public: 00040 00041 QDockWidget *msgDock; 00042 00043 QTabWidget *builderTabs; 00044 00048 QPlainTextEdit *admsOutput; 00052 QPlainTextEdit *cppOutput; 00053 00054 void reset(); 00055 00056 00057 private slots: 00058 void slotAdmsChanged(); 00059 void slotCppChanged(); 00060 void slotCursor(); 00061 00062 }; 00063 00064 #endif // MESSAGEDOCK_H