summaryrefslogtreecommitdiffstats
path: root/kabc/frontend/mainWindow.ui.h
diff options
context:
space:
mode:
Diffstat (limited to 'kabc/frontend/mainWindow.ui.h')
-rw-r--r--kabc/frontend/mainWindow.ui.h130
1 files changed, 65 insertions, 65 deletions
diff --git a/kabc/frontend/mainWindow.ui.h b/kabc/frontend/mainWindow.ui.h
index e6a024743..fb8377cbb 100644
--- a/kabc/frontend/mainWindow.ui.h
+++ b/kabc/frontend/mainWindow.ui.h
@@ -6,9 +6,9 @@
** a constructor, and a destroy() slot in place of a destructor.
*****************************************************************************/
-#include <qfiledialog.h>
+#include <tqfiledialog.h>
#include <kinputdialog.h>
-#include <qmessagebox.h>
+#include <tqmessagebox.h>
#include <klocale.h>
#include <kdebug.h>
@@ -20,8 +20,8 @@ using namespace KABC;
class AddresseeItem : public QListViewItem
{
public:
- AddresseeItem( QListView *parent, const Addressee &a ) :
- QListViewItem( parent, a.realName(), a.uid() ), mAddressee( a ) {}
+ AddresseeItem( TQListView *parent, const Addressee &a ) :
+ TQListViewItem( parent, a.realName(), a.uid() ), mAddressee( a ) {}
void setAddressee( const Addressee &a ) { mAddressee = a; }
Addressee &addressee() { return mAddressee; }
@@ -39,12 +39,12 @@ void MainWindow::init()
mEmailListView->header()->hide();
mCategoryListView->header()->hide();
- connect( mAddressBook, SIGNAL( addressBookChanged( AddressBook * ) ),
- SLOT( addressBookChanged() ) );
- connect( mAddressBook, SIGNAL( addressBookLocked( AddressBook * ) ),
- SLOT( addressBookLocked() ) );
- connect( mAddressBook, SIGNAL( addressBookUnlocked( AddressBook * ) ),
- SLOT( addressBookUnlocked() ) );
+ connect( mAddressBook, TQT_SIGNAL( addressBookChanged( AddressBook * ) ),
+ TQT_SLOT( addressBookChanged() ) );
+ connect( mAddressBook, TQT_SIGNAL( addressBookLocked( AddressBook * ) ),
+ TQT_SLOT( addressBookLocked() ) );
+ connect( mAddressBook, TQT_SIGNAL( addressBookUnlocked( AddressBook * ) ),
+ TQT_SLOT( addressBookUnlocked() ) );
}
void MainWindow::destroy()
@@ -61,18 +61,18 @@ void MainWindow::fileSave()
void MainWindow::fileOpen()
{
- QString fileName = QFileDialog::getOpenFileName();
+ TQString fileName = TQFileDialog::getOpenFileName();
loadAddressBook( fileName );
}
-void MainWindow::loadAddressBook( const QString &fileName )
+void MainWindow::loadAddressBook( const TQString &fileName )
{
kdDebug() << "loadAddressBook(): '" << fileName << "'" << endl;
mAddresseeList->clear();
mCurrentItem = 0;
- mCurrentAddress = QString::null;
+ mCurrentAddress = TQString::null;
readAddressee( Addressee() );
KABC::AddressBook::Iterator it;
@@ -81,7 +81,7 @@ void MainWindow::loadAddressBook( const QString &fileName )
}
}
-void MainWindow::updateAddressee( QListViewItem *item )
+void MainWindow::updateAddressee( TQListViewItem *item )
{
AddresseeItem *addresseeItem = dynamic_cast<AddresseeItem *>( item );
if ( !addresseeItem ) return;
@@ -122,31 +122,31 @@ void MainWindow::readAddressee( const KABC::Addressee &a )
// mLabelEdit->setText( a.label() );
mEmailListView->clear();
- QStringList emails = a.emails();
- QStringList::ConstIterator it3;
+ TQStringList emails = a.emails();
+ TQStringList::ConstIterator it3;
for( it3 = emails.begin(); it3 != emails.end(); ++it3 ) {
- new QListViewItem( mEmailListView, *it3 );
+ new TQListViewItem( mEmailListView, *it3 );
}
mCategoryListView->clear();
- QStringList categories = a.categories();
- QStringList::ConstIterator it4;
+ TQStringList categories = a.categories();
+ TQStringList::ConstIterator it4;
for( it4 = categories.begin(); it4 != categories.end(); ++it4 ) {
- new QListViewItem( mCategoryListView, *it4 );
+ new TQListViewItem( mCategoryListView, *it4 );
}
mCustomListView->clear();
- QStringList customs = a.customs();
- QStringList::ConstIterator it5;
+ TQStringList customs = a.customs();
+ TQStringList::ConstIterator it5;
for( it5 = customs.begin(); it5 != customs.end(); ++it5 ) {
int posDash = (*it5).find( "-" );
int posColon = (*it5).find( ":" );
- QString app = (*it5).left( posDash );
- QString cname = (*it5).mid( posDash + 1, posColon - posDash - 1 );
- QString value = (*it5).mid( posColon + 1 );
+ TQString app = (*it5).left( posDash );
+ TQString cname = (*it5).mid( posDash + 1, posColon - posDash - 1 );
+ TQString value = (*it5).mid( posColon + 1 );
- new QListViewItem( mCustomListView, app, cname, value );
+ new TQListViewItem( mCustomListView, app, cname, value );
}
Address::List addresses = a.addresses();
@@ -156,7 +156,7 @@ void MainWindow::readAddressee( const KABC::Addressee &a )
mAddressIdCombo->insertItem( (*it).id() );
}
if ( mAddressIdCombo->count() > 0 ) mCurrentAddress = mAddressIdCombo->currentText();
- else mCurrentAddress = QString::null;
+ else mCurrentAddress = TQString::null;
readAddress( mCurrentAddress );
mPhoneIdCombo->clear();
@@ -200,9 +200,9 @@ KABC::Addressee MainWindow::writeAddressee( const KABC::Addressee &addressee )
void MainWindow::newEntry()
{
bool ok = false;
- QString name = KInputDialog::getText( i18n("New Address Book Entry"),
+ TQString name = KInputDialog::getText( i18n("New Address Book Entry"),
i18n("Please enter name:"),
- QString::null, &ok,
+ TQString::null, &ok,
this );
if ( !ok || name.isEmpty() ) return;
@@ -232,7 +232,7 @@ void MainWindow::updateAddress( int id )
if ( mAddressIdCombo->count() > 0 ) {
mCurrentAddress = mAddressIdCombo->text( id );
} else {
- mCurrentAddress = QString::null;
+ mCurrentAddress = TQString::null;
}
readAddress( mCurrentAddress );
}
@@ -263,7 +263,7 @@ KABC::Address MainWindow::writeAddress( const KABC::Address &address )
return a;
}
-void MainWindow::writeAddress( const QString &id )
+void MainWindow::writeAddress( const TQString &id )
{
if ( !mCurrentItem ) return;
@@ -304,7 +304,7 @@ void MainWindow::readAddress( const KABC::Address &a )
else mAddressWorkCheck->setChecked( false );
}
-void MainWindow::readAddress( const QString &id )
+void MainWindow::readAddress( const TQString &id )
{
if ( !mCurrentItem || id.isEmpty() ) {
readAddress( Address() );
@@ -323,7 +323,7 @@ void MainWindow::updatePhone( int id )
if ( mPhoneIdCombo->count() > 0 ) {
mCurrentPhone = mPhoneIdCombo->text( id );
} else {
- mCurrentPhone = QString::null;
+ mCurrentPhone = TQString::null;
}
readPhone( mCurrentPhone );
}
@@ -354,7 +354,7 @@ KABC::PhoneNumber MainWindow::writePhone( const KABC::PhoneNumber &phoneNumber )
return p;
}
-void MainWindow::writePhone( const QString &id )
+void MainWindow::writePhone( const TQString &id )
{
if ( !mCurrentItem ) return;
@@ -402,7 +402,7 @@ void MainWindow::readPhone( const KABC::PhoneNumber &p )
else mPhonePagerCheck->setChecked( false );
}
-void MainWindow::readPhone( const QString &id )
+void MainWindow::readPhone( const TQString &id )
{
if ( !mCurrentItem || id.isEmpty() ) {
readPhone( PhoneNumber() );
@@ -428,7 +428,7 @@ void MainWindow::removeAddress()
{
if ( !mCurrentItem ) return;
- QString id = mAddressIdCombo->currentText();
+ TQString id = mAddressIdCombo->currentText();
if ( id.isEmpty() ) return;
Address address;
@@ -450,13 +450,13 @@ void MainWindow::newEmail()
if ( !mCurrentItem ) return;
bool ok = false;
- QString name = KInputDialog::getText( i18n("New Email Address"),
+ TQString name = KInputDialog::getText( i18n("New Email Address"),
i18n("Please enter email address:"),
- QString::null, &ok,
+ TQString::null, &ok,
this );
if ( !ok || name.isEmpty() ) return;
- new QListViewItem( mEmailListView, name );
+ new TQListViewItem( mEmailListView, name );
mCurrentItem->addressee().insertEmail( name );
}
@@ -464,13 +464,13 @@ void MainWindow::editEmail()
{
if ( !mCurrentItem ) return;
- QListViewItem *item = mEmailListView->selectedItem();
+ TQListViewItem *item = mEmailListView->selectedItem();
if( !item ) return;
- QString oldName = item->text( 0 );
+ TQString oldName = item->text( 0 );
bool ok = false;
- QString name = KInputDialog::getText( i18n("Edit Email Address"),
+ TQString name = KInputDialog::getText( i18n("Edit Email Address"),
i18n("Please enter new email address:"),
oldName, &ok,
this );
@@ -485,7 +485,7 @@ void MainWindow::removeEmail()
{
if ( !mCurrentItem ) return;
- QListViewItem *item = mEmailListView->selectedItem();
+ TQListViewItem *item = mEmailListView->selectedItem();
if( !item ) return;
mCurrentItem->addressee().removeEmail( item->text( 0 ) );
@@ -506,7 +506,7 @@ void MainWindow::removePhoneNumber()
{
if ( !mCurrentItem ) return;
- QString id = mPhoneIdCombo->currentText();
+ TQString id = mPhoneIdCombo->currentText();
if ( id.isEmpty() ) return;
PhoneNumber p;
@@ -522,13 +522,13 @@ void MainWindow::newCategory()
if ( !mCurrentItem ) return;
bool ok = false;
- QString name = KInputDialog::getText( i18n("New Category"),
+ TQString name = KInputDialog::getText( i18n("New Category"),
i18n("Please enter category name:"),
- QString::null, &ok,
+ TQString::null, &ok,
this );
if ( !ok || name.isEmpty() ) return;
- new QListViewItem( mCategoryListView, name );
+ new TQListViewItem( mCategoryListView, name );
mCurrentItem->addressee().insertCategory( name );
}
@@ -536,13 +536,13 @@ void MainWindow::editCategory()
{
if ( !mCurrentItem ) return;
- QListViewItem *item = mCategoryListView->selectedItem();
+ TQListViewItem *item = mCategoryListView->selectedItem();
if( !item ) return;
- QString oldName = item->text( 0 );
+ TQString oldName = item->text( 0 );
bool ok = false;
- QString name = KInputDialog::getText( i18n("Edit Category"),
+ TQString name = KInputDialog::getText( i18n("Edit Category"),
i18n("Please enter new category name:"),
oldName, &ok,
this );
@@ -557,7 +557,7 @@ void MainWindow::removeCategory()
{
if ( !mCurrentItem ) return;
- QListViewItem *item = mCategoryListView->selectedItem();
+ TQListViewItem *item = mCategoryListView->selectedItem();
if( !item ) return;
mCurrentItem->addressee().removeCategory( item->text( 0 ) );
@@ -569,14 +569,14 @@ void MainWindow::editCustom()
{
if ( !mCurrentItem ) return;
- QListViewItem *item = mCustomListView->selectedItem();
+ TQListViewItem *item = mCustomListView->selectedItem();
if( !item ) return;
- QString oldName = item->text( 0 ) + "-" + item->text( 1 ) + ":" +
+ TQString oldName = item->text( 0 ) + "-" + item->text( 1 ) + ":" +
item->text( 2 );
bool ok = false;
- QString name = KInputDialog::getText( i18n("New Custom Entry"),
+ TQString name = KInputDialog::getText( i18n("New Custom Entry"),
i18n("Please enter custom entry.\n"
"Format: APP-NAME:VALUE"),
oldName, &ok,
@@ -586,9 +586,9 @@ void MainWindow::editCustom()
int posDash = name.find( "-" );
int posColon = name.find( ":" );
- QString app = name.left( posDash );
- QString cname = name.mid( posDash + 1, posColon - posDash - 1 );
- QString value = name.mid( posColon + 1 );
+ TQString app = name.left( posDash );
+ TQString cname = name.mid( posDash + 1, posColon - posDash - 1 );
+ TQString value = name.mid( posColon + 1 );
item->setText( 0, app );
item->setText( 1, cname );
@@ -603,21 +603,21 @@ void MainWindow::newCustom()
if ( !mCurrentItem ) return;
bool ok = false;
- QString name = KInputDialog::getText( i18n("New Custom Entry"),
+ TQString name = KInputDialog::getText( i18n("New Custom Entry"),
i18n("Please enter custom entry.\n"
"Format: APP-NAME:VALUE"),
- QString::null, &ok,
+ TQString::null, &ok,
this );
if ( !ok || name.isEmpty() ) return;
int posDash = name.find( "-" );
int posColon = name.find( ":" );
- QString app = name.left( posDash );
- QString cname = name.mid( posDash + 1, posColon - posDash - 1 );
- QString value = name.mid( posColon + 1 );
+ TQString app = name.left( posDash );
+ TQString cname = name.mid( posDash + 1, posColon - posDash - 1 );
+ TQString value = name.mid( posColon + 1 );
- new QListViewItem( mCustomListView, app, cname, value );
+ new TQListViewItem( mCustomListView, app, cname, value );
mCurrentItem->addressee().insertCustom( app, cname, value );
}
@@ -626,7 +626,7 @@ void MainWindow::removeCustom()
{
if ( !mCurrentItem ) return;
- QListViewItem *item = mCustomListView->selectedItem();
+ TQListViewItem *item = mCustomListView->selectedItem();
if( !item ) return;
mCurrentItem->addressee().removeCustom( item->text( 0 ), item->text( 1 ) );
@@ -635,7 +635,7 @@ void MainWindow::removeCustom()
void MainWindow::addressBookChanged()
{
- QMessageBox::warning( this, i18n("Address Book Changed"),
+ TQMessageBox::warning( this, i18n("Address Book Changed"),
i18n("The address book has changed on disk."),
i18n("Reload") );
loadAddressBook( "dummy" );