author | sandman <sandman> | 2002-06-19 23:05:50 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-06-19 23:05:50 (UTC) |
commit | 37bc7d72ed82a9593f9fd441abad23c5de458ad0 (patch) (side-by-side diff) | |
tree | 8ed79d1e316af3b888db63ddc6045b419cc7f269 | |
parent | ce6d4880d3d78fb569322c14e425654785de980d (diff) | |
download | opie-37bc7d72ed82a9593f9fd441abad23c5de458ad0.zip opie-37bc7d72ed82a9593f9fd441abad23c5de458ad0.tar.gz opie-37bc7d72ed82a9593f9fd441abad23c5de458ad0.tar.bz2 |
Fixed position of popup and added pixmaps for cut/copy/paste
-rw-r--r-- | core/applets/clipboardapplet/clipboard.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/core/applets/clipboardapplet/clipboard.cpp b/core/applets/clipboardapplet/clipboard.cpp index 7714f81..cd4f61c 100644 --- a/core/applets/clipboardapplet/clipboard.cpp +++ b/core/applets/clipboardapplet/clipboard.cpp @@ -132,10 +132,13 @@ void ClipboardApplet::mousePressEvent ( QMouseEvent *) if ( !menu ) { menu = new QPopupMenu ( this ); - menu-> insertItem ( tr( "Cut" ), 0 ); - menu-> insertItem ( tr( "Copy" ), 1 ); - menu-> insertItem ( tr( "Paste" ), 2 ); + menu-> insertItem ( QIconSet ( Resource::loadPixmap ( "cut" )), tr( "Cut" ), 0 ); + menu-> insertItem ( QIconSet ( Resource::loadPixmap ( "copy" )), tr( "Copy" ), 1 ); + menu-> insertItem ( QIconSet ( Resource::loadPixmap ( "paste" )), tr( "Paste" ), 2 ); connect ( menu, SIGNAL( activated ( int )), this, SLOT( action ( int ))); } - menu->popup(mapToGlobal(QPoint(0,0))); + QPoint p = mapToGlobal ( QPoint ( 0, 0 )); + QSize s = menu-> sizeHint ( ); + + menu-> popup ( QPoint ( p. x ( ) + ( width ( ) / 2 ) - ( s. width ( ) / 2 ), p. y ( ) - s. height ( ))); } |