00001
00013 #ifndef _STATUSGUI
00014 #define _STATUSGUI
00015
00016 #include "TerminalGui.h"
00017
00018 class StatusGui : public TerminalGui
00019 {
00020 public:
00021 StatusGui(Connessione* connection, PARENT_FRAME* parent,
00022 wxWindowID id = -1,
00023 const wxString& title = _("Status"),
00024 const wxPoint& position = wxDefaultPosition,
00025 const wxSize& size = wxDefaultSize,
00026 long style = GUI_STYLE,
00027 const wxString& name = _("Quirck Status"));
00028
00029
00030
00031 DECLARE_EVENT_TABLE()
00032
00033 void StatusGuiClose(wxCloseEvent& event);
00034 };
00035
00036 #endif
00037