From c663b6440964f6ac48027143ac9e63298991f9d0 Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:33:34 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1157639 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- klipper/popupproxy.cpp | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) (limited to 'klipper/popupproxy.cpp') diff --git a/klipper/popupproxy.cpp b/klipper/popupproxy.cpp index 84a9e4ae6..196a4259c 100644 --- a/klipper/popupproxy.cpp +++ b/klipper/popupproxy.cpp @@ -17,10 +17,10 @@ the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#include -#include -#include -#include +#include +#include +#include +#include #include #include @@ -33,14 +33,14 @@ PopupProxy::PopupProxy( KlipperPopup* parent, const char* name, int menu_height, int menu_width ) - : QObject( parent, name ), + : TQObject( parent, name ), proxy_for_menu( parent ), spillPointer( parent->history()->youngest() ), m_menu_height( menu_height ), m_menu_width( menu_width ), nextItemNumber( 0 ) { - connect( parent->history(), SIGNAL( changed() ), SLOT( slotHistoryChanged() ) ); + connect( parent->history(), TQT_SIGNAL( changed() ), TQT_SLOT( slotHistoryChanged() ) ); } void PopupProxy::slotHistoryChanged() { @@ -61,7 +61,7 @@ void PopupProxy::deleteMoreMenus() { } } -int PopupProxy::buildParent( int index, const QRegExp& filter ) { +int PopupProxy::buildParent( int index, const TQRegExp& filter ) { deleteMoreMenus(); // Start from top of history (again) spillPointer = parent()->history()->youngest(); @@ -75,7 +75,7 @@ int PopupProxy::buildParent( int index, const QRegExp& filter ) { } KlipperPopup* PopupProxy::parent() { - return static_cast( QObject::parent() ); + return static_cast( TQObject::parent() ); } void PopupProxy::slotAboutToShow() { @@ -89,17 +89,17 @@ void PopupProxy::tryInsertItem( HistoryItem const * const item, // Insert item int id = -1; - QPixmap image( item->image() ); + TQPixmap image( item->image() ); if ( image.isNull() ) { // Squeeze text strings so that do not take up the entire screen (or more) - QString text( KStringHandler::cPixelSqueeze(item->text().simplifyWhiteSpace(), + TQString text( KStringHandler::cPixelSqueeze(item->text().simplifyWhiteSpace(), proxy_for_menu->fontMetrics(), m_menu_width).replace( "&", "&&" ) ); id = proxy_for_menu->insertItem( text, -1, index ); } else { - const QSize max_size( m_menu_width,m_menu_height/4 ); + const TQSize max_size( m_menu_width,m_menu_height/4 ); if ( image.height() > max_size.height() || image.width() > max_size.width() ) { - image.convertFromImage( image.convertToImage().smoothScale( max_size, QImage::ScaleMin ) ); + image.convertFromImage( image.convertToImage().smoothScale( max_size, TQImage::ScaleMin ) ); } id = proxy_for_menu->insertItem( image, -1, index ); } @@ -107,18 +107,18 @@ void PopupProxy::tryInsertItem( HistoryItem const * const item, // Determine height of a menu item. Q_ASSERT( id != -1 ); // Be sure that the item was inserted. - QMenuItem* mi = proxy_for_menu->findItem( id ); - int fontheight = QFontMetrics( proxy_for_menu->fontMetrics() ).height(); - int itemheight = proxy_for_menu->style().sizeFromContents(QStyle::CT_PopupMenuItem, + TQMenuItem* mi = proxy_for_menu->findItem( id ); + int fontheight = TQFontMetrics( proxy_for_menu->fontMetrics() ).height(); + int itemheight = proxy_for_menu->style().sizeFromContents(TQStyle::CT_PopupMenuItem, proxy_for_menu, - QSize( 0, fontheight ), - QStyleOption(mi,10,0) ).height(); + TQSize( 0, fontheight ), + TQStyleOption(mi,10,0) ).height(); // Test if there was enough space remainingHeight -= itemheight; History* history = parent()->history(); proxy_for_menu->connectItem( id, history, - SLOT( slotMoveToTop( int ) ) ); + TQT_SLOT( slotMoveToTop( int ) ) ); proxy_for_menu->setItemParameter( id, nextItemNumber ); } @@ -152,7 +152,7 @@ int PopupProxy::insertFromSpill( int index ) { if ( spillPointer.current() ) { KPopupMenu* moreMenu = new KPopupMenu( proxy_for_menu, "a more menu" ); proxy_for_menu->insertItem( i18n( "&More" ), moreMenu, -1, index ); - connect( moreMenu, SIGNAL( aboutToShow() ), SLOT( slotAboutToShow() ) ); + connect( moreMenu, TQT_SIGNAL( aboutToShow() ), TQT_SLOT( slotAboutToShow() ) ); proxy_for_menu = moreMenu; } -- cgit v1.2.3