From 7be55ffa061c026e35e2d6a0effe1161ddb0d41f Mon Sep 17 00:00:00 2001 From: tpearson Date: Sat, 31 Jul 2010 19:53:50 +0000 Subject: Trinity Qt initial conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdepim@1157655 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kaddressbook/views/kaddressbooktableview.cpp | 140 +++++++++++++-------------- 1 file changed, 70 insertions(+), 70 deletions(-) (limited to 'kaddressbook/views/kaddressbooktableview.cpp') diff --git a/kaddressbook/views/kaddressbooktableview.cpp b/kaddressbook/views/kaddressbooktableview.cpp index e0ac61093..7f822ae4d 100644 --- a/kaddressbook/views/kaddressbooktableview.cpp +++ b/kaddressbook/views/kaddressbooktableview.cpp @@ -21,20 +21,20 @@ without including the source code for Qt in the source distribution. */ -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include @@ -61,17 +61,17 @@ class TableViewFactory : public ViewFactory { public: - KAddressBookView *view( KAB::Core *core, QWidget *parent, const char *name ) + KAddressBookView *view( KAB::Core *core, TQWidget *parent, const char *name ) { return new KAddressBookTableView( core, parent, name ); } - QString type() const { return I18N_NOOP( "Table" ); } + TQString type() const { return I18N_NOOP( "Table" ); } - QString description() const { return i18n( "A listing of contacts in a table. Each cell of " + TQString description() const { return i18n( "A listing of contacts in a table. Each cell of " "the table holds a field of the contact." ); } - ViewConfigureWidget *configureWidget( KABC::AddressBook *ab, QWidget *parent, + ViewConfigureWidget *configureWidget( KABC::AddressBook *ab, TQWidget *parent, const char *name = 0 ) { return new ConfigureTableViewWidget( ab, parent, name ); @@ -86,10 +86,10 @@ extern "C" { } KAddressBookTableView::KAddressBookTableView( KAB::Core *core, - QWidget *parent, const char *name ) + TQWidget *parent, const char *name ) : KAddressBookView( core, parent, name ) { - mMainLayout = new QVBoxLayout( viewWidget(), 2 ); + mMainLayout = new TQVBoxLayout( viewWidget(), 2 ); // The list view will be created when the config is read. mListView = 0; @@ -103,16 +103,16 @@ KAddressBookTableView::~KAddressBookTableView() void KAddressBookTableView::reconstructListView() { if ( mListView ) { - disconnect( mListView, SIGNAL( selectionChanged() ), - this, SLOT( addresseeSelected() ) ); - disconnect( mListView, SIGNAL( executed( QListViewItem* ) ), - this, SLOT( addresseeExecuted( QListViewItem* ) ) ); - disconnect( mListView, SIGNAL( doubleClicked( QListViewItem* ) ), - this, SLOT( addresseeExecuted( QListViewItem* ) ) ); - disconnect( mListView, SIGNAL( startAddresseeDrag() ), - this, SIGNAL( startDrag() ) ); - disconnect( mListView, SIGNAL( addresseeDropped( QDropEvent* ) ), - this, SIGNAL( dropped( QDropEvent* ) ) ); + disconnect( mListView, TQT_SIGNAL( selectionChanged() ), + this, TQT_SLOT( addresseeSelected() ) ); + disconnect( mListView, TQT_SIGNAL( executed( TQListViewItem* ) ), + this, TQT_SLOT( addresseeExecuted( TQListViewItem* ) ) ); + disconnect( mListView, TQT_SIGNAL( doubleClicked( TQListViewItem* ) ), + this, TQT_SLOT( addresseeExecuted( TQListViewItem* ) ) ); + disconnect( mListView, TQT_SIGNAL( startAddresseeDrag() ), + this, TQT_SIGNAL( startDrag() ) ); + disconnect( mListView, TQT_SIGNAL( addresseeDropped( TQDropEvent* ) ), + this, TQT_SIGNAL( dropped( TQDropEvent* ) ) ); delete mListView; } @@ -127,7 +127,7 @@ void KAddressBookTableView::reconstructListView() int c = 0; for ( it = fieldList.begin(); it != fieldList.end(); ++it ) { mListView->addColumn( (*it)->label() ); - mListView->setColumnWidthMode( c++, QListView::Manual ); + mListView->setColumnWidthMode( c++, TQListView::Manual ); } if ( mListView->showIM() ) { @@ -141,23 +141,23 @@ void KAddressBookTableView::reconstructListView() mListView->setFullWidth( true ); - connect( mListView, SIGNAL( selectionChanged() ), - this, SLOT( addresseeSelected() ) ); - connect( mListView, SIGNAL( startAddresseeDrag() ), - this, SIGNAL( startDrag() ) ); - connect( mListView, SIGNAL( addresseeDropped( QDropEvent* ) ), - this, SIGNAL( dropped( QDropEvent* ) ) ); - connect( mListView, SIGNAL( contextMenu( KListView*, QListViewItem*, const QPoint& ) ), - this, SLOT( rmbClicked( KListView*, QListViewItem*, const QPoint& ) ) ); - connect( mListView->header(), SIGNAL( clicked( int ) ), - this, SIGNAL( sortFieldChanged() ) ); + connect( mListView, TQT_SIGNAL( selectionChanged() ), + this, TQT_SLOT( addresseeSelected() ) ); + connect( mListView, TQT_SIGNAL( startAddresseeDrag() ), + this, TQT_SIGNAL( startDrag() ) ); + connect( mListView, TQT_SIGNAL( addresseeDropped( TQDropEvent* ) ), + this, TQT_SIGNAL( dropped( TQDropEvent* ) ) ); + connect( mListView, TQT_SIGNAL( contextMenu( KListView*, TQListViewItem*, const TQPoint& ) ), + this, TQT_SLOT( rmbClicked( KListView*, TQListViewItem*, const TQPoint& ) ) ); + connect( mListView->header(), TQT_SIGNAL( clicked( int ) ), + this, TQT_SIGNAL( sortFieldChanged() ) ); if ( KABPrefs::instance()->honorSingleClick() ) - connect( mListView, SIGNAL( executed( QListViewItem* ) ), - this, SLOT( addresseeExecuted( QListViewItem* ) ) ); + connect( mListView, TQT_SIGNAL( executed( TQListViewItem* ) ), + this, TQT_SLOT( addresseeExecuted( TQListViewItem* ) ) ); else - connect( mListView, SIGNAL( doubleClicked( QListViewItem* ) ), - this, SLOT( addresseeExecuted( QListViewItem* ) ) ); + connect( mListView, TQT_SIGNAL( doubleClicked( TQListViewItem* ) ), + this, TQT_SLOT( addresseeExecuted( TQListViewItem* ) ) ); refresh(); @@ -187,13 +187,13 @@ void KAddressBookTableView::readConfig( KConfig *config ) if ( config->readBoolEntry( "InstantMessagingPresence", false ) ) { if ( !mIMProxy ) { mIMProxy = KIMProxy::instance( kapp->dcopClient() ); - connect( mIMProxy, SIGNAL( sigContactPresenceChanged( const QString& ) ), - this, SLOT( updatePresence( const QString& ) ) ); + connect( mIMProxy, TQT_SIGNAL( sigContactPresenceChanged( const TQString& ) ), + this, TQT_SLOT( updatePresence( const TQString& ) ) ); } } else { if ( mIMProxy ) { - disconnect( mIMProxy, SIGNAL( sigContactPresenceChanged( const QString& ) ), - this, SLOT( updatePresence( const QString& ) ) ); + disconnect( mIMProxy, TQT_SIGNAL( sigContactPresenceChanged( const TQString& ) ), + this, TQT_SLOT( updatePresence( const TQString& ) ) ); mIMProxy = 0; } } @@ -214,11 +214,11 @@ void KAddressBookTableView::readConfig( KConfig *config ) mListView->restoreLayout( config, config->group() ); } -void KAddressBookTableView::refresh( const QString &uid ) +void KAddressBookTableView::refresh( const TQString &uid ) { if ( uid.isEmpty() ) { // Clear the list view - QString currentUID, nextUID; + TQString currentUID, nextUID; ContactListViewItem *currentItem = dynamic_cast( mListView->currentItem() ); if ( currentItem ) { ContactListViewItem *nextItem = dynamic_cast( currentItem->itemBelow() ); @@ -253,8 +253,8 @@ void KAddressBookTableView::refresh( const QString &uid ) } else { // Only need to update on entry. Iterate through and try to find it ContactListViewItem *ceItem; - QPtrList selectedItems( mListView->selectedItems() ); - QListViewItem *it; + TQPtrList selectedItems( mListView->selectedItems() ); + TQListViewItem *it; for ( it = selectedItems.first(); it; it = selectedItems.next() ) { ceItem = dynamic_cast( it ); if ( ceItem && ceItem->addressee().uid() == uid ) { @@ -262,16 +262,16 @@ void KAddressBookTableView::refresh( const QString &uid ) return; } } - refresh( QString::null ); + refresh( TQString::null ); } } -QStringList KAddressBookTableView::selectedUids() +TQStringList KAddressBookTableView::selectedUids() { - QStringList uidList; + TQStringList uidList; ContactListViewItem *item; - QListViewItemIterator it( mListView, QListViewItemIterator::Selected ); + TQListViewItemIterator it( mListView, TQListViewItemIterator::Selected ); while ( it.current() ) { item = dynamic_cast( it.current() ); if ( item ) @@ -283,12 +283,12 @@ QStringList KAddressBookTableView::selectedUids() return uidList; } -void KAddressBookTableView::setSelected( const QString &uid, bool selected ) +void KAddressBookTableView::setSelected( const TQString &uid, bool selected ) { if ( uid.isEmpty() ) mListView->selectAll( selected ); else { - QListViewItemIterator it( mListView ); + TQListViewItemIterator it( mListView ); while ( it.current() ) { ContactListViewItem *item = dynamic_cast( it.current() ); if ( item && (item->addressee().uid() == uid) ) { @@ -314,12 +314,12 @@ void KAddressBookTableView::setFirstSelected( bool selected ) void KAddressBookTableView::addresseeSelected() { // We need to try to find the first selected item. This might not be the - // last selected item, but when QListView is in multiselection mode, + // last selected item, but when TQListView is in multiselection mode, // there is no way to figure out which one was // selected last. bool found =false; - QListViewItemIterator it( mListView, QListViewItemIterator::Selected ); + TQListViewItemIterator it( mListView, TQListViewItemIterator::Selected ); while ( it.current() && !found ) { found = true; ContactListViewItem *item = dynamic_cast( it.current() ); @@ -330,10 +330,10 @@ void KAddressBookTableView::addresseeSelected() } if ( !found ) - emit selected( QString::null ); + emit selected( TQString::null ); } -void KAddressBookTableView::addresseeExecuted( QListViewItem *item ) +void KAddressBookTableView::addresseeExecuted( TQListViewItem *item ) { if ( item ) { ContactListViewItem *ceItem = dynamic_cast( item ); @@ -341,21 +341,21 @@ void KAddressBookTableView::addresseeExecuted( QListViewItem *item ) if ( ceItem ) emit executed( ceItem->addressee().uid() ); else - emit executed( QString::null ); + emit executed( TQString::null ); } else { - emit executed( QString::null ); + emit executed( TQString::null ); } } -void KAddressBookTableView::rmbClicked( KListView*, QListViewItem*, const QPoint &point ) +void KAddressBookTableView::rmbClicked( KListView*, TQListViewItem*, const TQPoint &point ) { popup( point ); } -void KAddressBookTableView::updatePresence( const QString &uid ) +void KAddressBookTableView::updatePresence( const TQString &uid ) { // find the LVI to update and refresh() it - QListViewItem *item; + TQListViewItem *item; ContactListViewItem *ceItem; for ( item = mListView->firstChild(); item; item = item->itemBelow() ) { ceItem = dynamic_cast( item ); @@ -372,12 +372,12 @@ void KAddressBookTableView::updatePresence( const QString &uid ) void KAddressBookTableView::scrollUp() { - QApplication::postEvent( mListView, new QKeyEvent( QEvent::KeyPress, Qt::Key_Up, 0, 0 ) ); + TQApplication::postEvent( mListView, new TQKeyEvent( TQEvent::KeyPress, Qt::Key_Up, 0, 0 ) ); } void KAddressBookTableView::scrollDown() { - QApplication::postEvent( mListView, new QKeyEvent( QEvent::KeyPress, Qt::Key_Down, 0, 0 ) ); + TQApplication::postEvent( mListView, new TQKeyEvent( TQEvent::KeyPress, Qt::Key_Down, 0, 0 ) ); } -- cgit v1.2.1