home *** CD-ROM | disk | FTP | other *** search
/ Quark 3 / Quark3.iso / KATALOG / ARCHIV / TOOL / T001.ZIP / SOURCE.ZIP / win32_treeview.cpp < prev   
Encoding:
C/C++ Source or Header  |  1999-05-14  |  495 b   |  40 lines

  1.  
  2. #ifdef WIN32
  3. #include <windows.h>
  4. #endif
  5.  
  6. class Core
  7. {
  8. public
  9.     Core( int argc, char **argv );
  10.  
  11.     void exec():        
  12. private:
  13. };
  14.  
  15.  
  16. class Window
  17. {
  18. public:
  19.     Window( Window *parent=NULL, int style=0, const char *label=NULL );
  20.     virtual ~Window();
  21.  
  22.     void setGeometry( int x, int y, int w, int  h );
  23.     
  24.     virtual void repaint();
  25.     virtual void event( Event *evt );
  26.  
  27. private:
  28.  
  29. #ifdef WIN32
  30.     HWND g_hwnd;
  31.     HDC  g_hdc;
  32. #endif
  33.  
  34. };
  35.  
  36. class WindowTreeView
  37. {
  38. public:
  39. private:
  40. };