diff options
author | Kostyantyn Ovechko <fastinetserver@gmail.com> | 2010-07-27 02:02:00 +0300 |
---|---|---|
committer | Kostyantyn Ovechko <fastinetserver@gmail.com> | 2010-07-27 02:02:00 +0300 |
commit | 67845f83986e67f204bbc51d93d6ca1a1e7796ab (patch) | |
tree | 8d82d6ce4b978b577396f9e3d17a5a9fc609d30e /tuiclient/mainwindow.h | |
parent | Add command line option --pkglist-file to request application (diff) | |
download | idfetch-67845f83986e67f204bbc51d93d6ca1a1e7796ab.tar.gz idfetch-67845f83986e67f204bbc51d93d6ca1a1e7796ab.tar.bz2 idfetch-67845f83986e67f204bbc51d93d6ca1a1e7796ab.zip |
Add log and error_log windows to tuiclient
Diffstat (limited to 'tuiclient/mainwindow.h')
-rw-r--r-- | tuiclient/mainwindow.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tuiclient/mainwindow.h b/tuiclient/mainwindow.h index 5a81e2f..cff1c75 100644 --- a/tuiclient/mainwindow.h +++ b/tuiclient/mainwindow.h @@ -34,6 +34,7 @@ using namespace std; #include "twindow.h" #include "helpwindow.h" +#include "scrollwindow.h" const uint CONNECTION_LINES=5; const uint MAX_LINES=200; @@ -42,6 +43,8 @@ class Tmainwindow: public Twindow{ public: Thelp_window help_win; + Tscroll_window log_win; + Tscroll_window error_log_win; bool exit_flag; bool connected_status; string screenlines[200]; @@ -49,6 +52,8 @@ class Tmainwindow: public Twindow{ ulong attempt_num; Tmainwindow(): help_win(), + log_win(), + error_log_win(), exit_flag(FALSE), connected_status(FALSE), attempt_num(0) |