icqskin.h
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *   This program is free software; you can redistribute it and/or modify  *
  4.  *   it under the terms of the GNU General Public License as published by  *
  5.  *   the Free Software Foundation; either version 2 of the License, or     *
  6.  *   (at your option) any later version.                                   *
  7.  *                                                                         *
  8.  *   copyright            : (C) 2002 by Zhang Yong                         *
  9.  *   email                : z-yong163@163.com                              *
  10.  ***************************************************************************/
  11. #ifndef _ICQ_SKIN_H
  12. #define _ICQ_SKIN_H
  13. enum {
  14. SKIN_BACK,
  15. SKIN_FOLDER,
  16. SKIN_FOLDER_LIGHT,
  17. SKIN_SCROLLUP,
  18. SKIN_SCROLLDOWN,
  19. SKIN_SCROLLUP_PRESSED,
  20. SKIN_SCROLLDOWN_PRESSED,
  21. NR_BITMAPS
  22. };
  23. class IcqSkin {
  24. public:
  25. BOOL load(LPCTSTR skinDir);
  26. CString name;
  27. CBitmap bitmaps[NR_BITMAPS];
  28. };
  29. #endif