Changeset 6058 for branches/qt-gui_qt4/src/dockicons/defaultdockicon.h
- Timestamp:
- 01/24/08 21:40:25 (10 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/qt-gui_qt4/src/dockicons/defaultdockicon.h
r5837 r6058 22 22 #define DEFAULTDOCKICON_H 23 23 24 class QMenu; 25 class QPixmap; 26 24 27 #include "dockicon.h" 25 28 … … 41 44 */ 42 45 DefaultDockIcon(QMenu* menu); 43 44 /**45 * Destructor46 */47 virtual ~DefaultDockIcon();48 46 49 47 /** … … 73 71 private: 74 72 /** 75 * Get the two lower digits from a number73 * Draws a given @a icon into the 64x64 dock icon area 76 74 * 77 * @param num Number to split 78 * @param low Return variable for lower digit 79 * @param high Return variable for second lowest digit 75 * @param icon The icon to draw 80 76 */ 81 void splitDigits(int num, int& low, int& high);77 void drawIcon64(QPixmap* icon); 82 78 83 QPixmap* pix;84 79 bool myFortyEight; 85 80 };
