Show
Ignore:
Timestamp:
01/24/08 21:40:25 (10 months ago)
Author:
eugene
Message:

Major docking fix.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/qt-gui_qt4/src/dockicons/defaultdockicon.h

    r5837 r6058  
    2222#define DEFAULTDOCKICON_H 
    2323 
     24class QMenu; 
     25class QPixmap; 
     26 
    2427#include "dockicon.h" 
    2528 
     
    4144   */ 
    4245  DefaultDockIcon(QMenu* menu); 
    43  
    44   /** 
    45    * Destructor 
    46    */ 
    47   virtual ~DefaultDockIcon(); 
    4846 
    4947  /** 
     
    7371private: 
    7472  /** 
    75    * Get the two lower digits from a number 
     73   * Draws a given @a icon into the 64x64 dock icon area 
    7674   * 
    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 
    8076   */ 
    81   void splitDigits(int num, int& low, int& high); 
     77  void drawIcon64(QPixmap* icon); 
    8278 
    83   QPixmap* pix; 
    8479  bool myFortyEight; 
    8580};