home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / XCons.h < prev    next >
Text File  |  1998-03-16  |  608b  |  28 lines

  1. #ifndef __XCONSOLE_H__
  2. #define __XCONSOLE_H__
  3.  
  4. #include "xfrmwnd.h"
  5. #include "xmle.h"
  6.  
  7. class XUserButton;
  8.  
  9. // TBO
  10. class _export_ XConsole: public XFrameWindow
  11. {
  12.    friend class ConsoleThread;
  13.       ConsoleThread * thread;
  14.       XMultiLineEdit * mle;
  15.       XConsole(char * f, char * v);
  16.  
  17.       char *fn, *va;
  18.       HWND titleBar;
  19.       XUserButton * titleBtn;
  20.    public:
  21.       static void CheckConsole(int argc, void ** argv);
  22.       BOOL DoCommand (LONG msg);
  23.       void DoSize (XSize* s);
  24. };
  25.  
  26. #define debugMessage(e) fputs( e, stderr); fputs("\n", stderr); fflush(stderr);
  27.  
  28. #endif