summaryrefslogtreecommitdiffabout
path: root/kaddressbook/details/look_details.h
Side-by-side diff
Diffstat (limited to 'kaddressbook/details/look_details.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kaddressbook/details/look_details.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kaddressbook/details/look_details.h b/kaddressbook/details/look_details.h
index e8d50a9..b59d3a7 100644
--- a/kaddressbook/details/look_details.h
+++ b/kaddressbook/details/look_details.h
@@ -85,73 +85,73 @@ class KABDetailedView : public KABBasicLook
void restoreSettings( KConfig* );
public slots:
void slotBorderedBGSelected( int index );
void slotTiledBGSelected( int index );
protected:
void paintEvent( QPaintEvent* );
void mousePressEvent( QMouseEvent* );
void mouseMoveEvent( QMouseEvent* );
/**
A method to retrieve a background image according to the path
stored in the entry. It is either loaded
from backgrounds, that acts as a cache, or from the file
and added to @see backgrounds.
*/
bool getBackground( QString path, QPixmap& image );
private:
QPtrList<QRect> mURLRects;
QPtrList<QRect> mEmailRects;
QPtrList<QRect> mPhoneRects;
KABEntryPainter *mPainter;
QMap<QString, QPixmap> mBackgroundMap;
QPixmap mCurrentBackground;
BackgroundStyle mBackgroundStyle;
bool mUseDefaultBGImage;
bool mUseHeadLineBGColor;
QColor mDefaultBGColor;
QColor mHeadLineBGColor;
QColor mHeadLineTextColor;
QPixmap mDefaultBGImage;
KToggleAction *mActionShowAddresses;
KToggleAction *mActionShowEmails;
KToggleAction *mActionShowPhones;
KToggleAction *mActionShowURLs;
const int mGrid;
QStringList mBorders;
QStringList mTiles;
- QPopupMenu *mMenuBorderedBG;
- QPopupMenu *mMenuTiledBG;
+ Q3PopupMenu *mMenuBorderedBG;
+ Q3PopupMenu *mMenuTiledBG;
static const QString mBorderedBGDir;
static const QString mTiledBGDir;
};
class KABDetailedViewFactory : public KABLookFactory
{
public:
KABDetailedViewFactory( QWidget *parent = 0, const char *name = 0 )
: KABLookFactory( parent, name ) {}
KABBasicLook *create()
{
return new KABDetailedView( mParent, mName );
}
QString description()
{
return i18n( "Detailed Style: Display all details, no modifications." );
}
};
#endif