-rw-r--r-- | core/pim/addressbook/contacteditor.cpp | 57 | ||||
-rw-r--r-- | core/pim/addressbook/contacteditor.h | 4 |
2 files changed, 44 insertions, 17 deletions
diff --git a/core/pim/addressbook/contacteditor.cpp b/core/pim/addressbook/contacteditor.cpp index cc3908a..4e73114 100644 --- a/core/pim/addressbook/contacteditor.cpp +++ b/core/pim/addressbook/contacteditor.cpp | |||
@@ -47,47 +47,47 @@ | |||
47 | #include <qaction.h> | 47 | #include <qaction.h> |
48 | #include <qiconset.h> | 48 | #include <qiconset.h> |
49 | 49 | ||
50 | static inline bool containsAlphaNum( const QString &str ); | 50 | static inline bool containsAlphaNum( const QString &str ); |
51 | static inline bool constainsWhiteSpace( const QString &str ); | 51 | static inline bool constainsWhiteSpace( const QString &str ); |
52 | 52 | ||
53 | // helper functions, convert our comma delimited list to proper | 53 | // helper functions, convert our comma delimited list to proper |
54 | // file format... | 54 | // file format... |
55 | void parseEmailFrom( const QString &txt, QString &strDefaultEmail, | 55 | void parseEmailFrom( const QString &txt, QString &strDefaultEmail, |
56 | QString &strAll ); | 56 | QString &strAll ); |
57 | 57 | ||
58 | // helper convert from file format to comma delimited... | 58 | // helper convert from file format to comma delimited... |
59 | //void parseEmailTo( const QString &strDefaultEmail, | 59 | void parseEmailTo( const QString &strDefaultEmail, |
60 | // const QString &strOtherEmail, QString &strBack ); | 60 | const QString &strOtherEmail, QString &strBack ); |
61 | 61 | ||
62 | ContactEditor::ContactEditor(const OContact &entry, | 62 | ContactEditor::ContactEditor(const OContact &entry, |
63 | QWidget *parent, | 63 | QWidget *parent, |
64 | const char *name, | 64 | const char *name, |
65 | WFlags fl ) | 65 | WFlags fl ) |
66 | : QDialog( parent, name, TRUE, fl ), | 66 | : QDialog( parent, name, TRUE, fl ), |
67 | m_personalView ( false ) | 67 | m_personalView ( false ) |
68 | 68 | ||
69 | { | 69 | { |
70 | 70 | ||
71 | init(); | 71 | init(); |
72 | setEntry( entry ); | 72 | setEntry( entry ); |
73 | cmbDefaultEmail = 0; | 73 | cmbDefaultEmail = 0; |
74 | defaultEmailChooserPosition = -1; | 74 | defaultEmailChooserPosition = -1; |
75 | } | 75 | } |
76 | 76 | ||
77 | ContactEditor::~ContactEditor() { | 77 | ContactEditor::~ContactEditor() { |
78 | } | 78 | } |
79 | 79 | ||
80 | void ContactEditor::init() { | 80 | void ContactEditor::init() { |
81 | 81 | ||
82 | useFullName = true; | 82 | useFullName = true; |
83 | 83 | ||
84 | uint i = 0; | 84 | uint i = 0; |
85 | 85 | ||
86 | QStringList trlChooserNames; | 86 | QStringList trlChooserNames; |
87 | 87 | ||
88 | for (i = 0; i <= 6; i++) { | 88 | for (i = 0; i <= 6; i++) { |
89 | slHomeAddress.append( "" ); | 89 | slHomeAddress.append( "" ); |
90 | slBusinessAddress.append( "" ); | 90 | slBusinessAddress.append( "" ); |
91 | } | 91 | } |
92 | 92 | ||
93 | trlChooserNames = OContactFields::trphonefields(); | 93 | trlChooserNames = OContactFields::trphonefields(); |
@@ -587,26 +587,24 @@ void ContactEditor::init() { | |||
587 | connect( txtFullName, SIGNAL(textChanged(const QString &)), this, SLOT(slotFullNameChange(const QString &)) ); | 587 | connect( txtFullName, SIGNAL(textChanged(const QString &)), this, SLOT(slotFullNameChange(const QString &)) ); |
588 | 588 | ||
589 | connect( txtChooserField1, SIGNAL(textChanged(const QString &)), | 589 | connect( txtChooserField1, SIGNAL(textChanged(const QString &)), |
590 | this, SLOT(slotChooser1Change(const QString &)) ); | 590 | this, SLOT(slotChooser1Change(const QString &)) ); |
591 | connect( txtChooserField2, SIGNAL(textChanged(const QString &)), | 591 | connect( txtChooserField2, SIGNAL(textChanged(const QString &)), |
592 | this, SLOT(slotChooser2Change(const QString &)) ); | 592 | this, SLOT(slotChooser2Change(const QString &)) ); |
593 | connect( txtChooserField3, SIGNAL(textChanged(const QString &)), | 593 | connect( txtChooserField3, SIGNAL(textChanged(const QString &)), |
594 | this, SLOT(slotChooser3Change(const QString &)) ); | 594 | this, SLOT(slotChooser3Change(const QString &)) ); |
595 | connect( txtChooserField4, SIGNAL(textChanged(const QString &)), | 595 | connect( txtChooserField4, SIGNAL(textChanged(const QString &)), |
596 | this, SLOT(slotChooser4Change(const QString &)) ); | 596 | this, SLOT(slotChooser4Change(const QString &)) ); |
597 | connect( txtAddress, SIGNAL(textChanged(const QString &)), | 597 | connect( txtAddress, SIGNAL(textChanged(const QString &)), |
598 | this, SLOT(slotAddressChange(const QString &)) ); | 598 | this, SLOT(slotAddressChange(const QString &)) ); |
599 | //connect( txtAddress2, SIGNAL(textChanged(const QString &)), this, SLOT(slotAddress2Change(const QString &)) ); | ||
600 | //connect( txtPOBox, SIGNAL(textChanged(const QString &)), this, SLOT(slotPOBoxChange(const QString &)) ); | ||
601 | connect( txtCity, SIGNAL(textChanged(const QString &)), | 599 | connect( txtCity, SIGNAL(textChanged(const QString &)), |
602 | this, SLOT(slotCityChange(const QString &)) ); | 600 | this, SLOT(slotCityChange(const QString &)) ); |
603 | connect( txtState, SIGNAL(textChanged(const QString &)), | 601 | connect( txtState, SIGNAL(textChanged(const QString &)), |
604 | this, SLOT(slotStateChange(const QString &)) ); | 602 | this, SLOT(slotStateChange(const QString &)) ); |
605 | connect( txtZip, SIGNAL(textChanged(const QString &)), | 603 | connect( txtZip, SIGNAL(textChanged(const QString &)), |
606 | this, SLOT(slotZipChange(const QString &)) ); | 604 | this, SLOT(slotZipChange(const QString &)) ); |
607 | connect( cmbCountry, SIGNAL(textChanged(const QString &)), | 605 | connect( cmbCountry, SIGNAL(textChanged(const QString &)), |
608 | this, SLOT(slotCountryChange(const QString &)) ); | 606 | this, SLOT(slotCountryChange(const QString &)) ); |
609 | connect( cmbCountry, SIGNAL(activated(const QString &)), | 607 | connect( cmbCountry, SIGNAL(activated(const QString &)), |
610 | this, SLOT(slotCountryChange(const QString &)) ); | 608 | this, SLOT(slotCountryChange(const QString &)) ); |
611 | connect( cmbChooserField1, SIGNAL(activated(int)), | 609 | connect( cmbChooserField1, SIGNAL(activated(int)), |
612 | this, SLOT(slotCmbChooser1Change(int)) ); | 610 | this, SLOT(slotCmbChooser1Change(int)) ); |
@@ -622,45 +620,61 @@ void ContactEditor::init() { | |||
622 | new QPEDialogListener(this); | 620 | new QPEDialogListener(this); |
623 | 621 | ||
624 | setPersonalView ( m_personalView ); | 622 | setPersonalView ( m_personalView ); |
625 | } | 623 | } |
626 | 624 | ||
627 | void ContactEditor::defaultEmailChanged(int i){ | 625 | void ContactEditor::defaultEmailChanged(int i){ |
628 | qDebug("defaultEmailChanged"); | 626 | qDebug("defaultEmailChanged"); |
629 | int index = cmbChooserField1->currentItem(); | 627 | int index = cmbChooserField1->currentItem(); |
630 | slChooserValues[index] = cmbDefaultEmail->text(i); | 628 | slChooserValues[index] = cmbDefaultEmail->text(i); |
631 | 629 | ||
632 | } | 630 | } |
633 | 631 | ||
634 | void ContactEditor::chooserChange( const QString &textChanged, int index, QLineEdit *inputWid, int widgetPos ) { | 632 | void ContactEditor::populateDefaultEmailCmb(){ |
633 | cmbDefaultEmail->clear(); | ||
634 | cmbDefaultEmail->insertStringList(emails); | ||
635 | for ( int i = 0; i < cmbDefaultEmail->count(); i++){ | ||
636 | qDebug(" populateDefaultEmailCmb text >%s< defaultEmail >%s<",cmbDefaultEmail->text( i ).latin1(),defaultEmail.latin1()); | ||
637 | if ( cmbDefaultEmail->text( i ).stripWhiteSpace() == defaultEmail.stripWhiteSpace() ){ | ||
638 | cmbDefaultEmail->setCurrentItem( i ); | ||
639 | qDebug("set"); | ||
640 | } | ||
641 | } | ||
642 | } | ||
635 | 643 | ||
636 | qDebug("defaultEmailChooserPosition %i, widgetPos %i ",defaultEmailChooserPosition,widgetPos); | 644 | void ContactEditor::chooserChange( const QString &textChanged, int index, QLineEdit *inputWid, int widgetPos ) { |
637 | if (slChooserNames[index] == "Default Email"){ | 645 | QString type = slChooserNames[index]; |
646 | qDebug("ContactEditor::chooserChange( type=>%s<, textChanged=>%s< index=%i, widgetPos=%i",type.latin1(),textChanged.latin1(), index, widgetPos ); | ||
647 | if ( type == "Default Email"){ | ||
648 | defaultEmail = textChanged; | ||
638 | if (cmbDefaultEmail) delete cmbDefaultEmail; | 649 | if (cmbDefaultEmail) delete cmbDefaultEmail; |
639 | cmbDefaultEmail = new QComboBox(inputWid->parentWidget()); | 650 | cmbDefaultEmail = new QComboBox(inputWid->parentWidget()); |
640 | cmbDefaultEmail->setGeometry(inputWid->frameGeometry()); | 651 | cmbDefaultEmail->setGeometry(inputWid->frameGeometry()); |
641 | cmbDefaultEmail->insertStringList(ent.emailList()); | ||
642 | connect(cmbDefaultEmail,SIGNAL(activated(int)), | ||
643 | SLOT(defaultEmailChanged(int))); | ||
644 | QString demail = ent.defaultEmail(); | ||
645 | for ( int i = 0; i < cmbDefaultEmail->count(); i++) | ||
646 | if ( cmbDefaultEmail->text( i ) == demail ) | ||
647 | cmbDefaultEmail->setCurrentItem( i ); | ||
648 | |||
649 | cmbDefaultEmail->show(); | 652 | cmbDefaultEmail->show(); |
653 | populateDefaultEmailCmb(); | ||
654 | connect(cmbDefaultEmail,SIGNAL(activated(int)), | ||
655 | SLOT(defaultEmailChanged(int))); | ||
650 | defaultEmailChooserPosition = widgetPos; | 656 | defaultEmailChooserPosition = widgetPos; |
651 | }else if (defaultEmailChooserPosition == widgetPos){ | 657 | }else if (defaultEmailChooserPosition == widgetPos){ |
652 | qDebug("cmbDefaultEmail->hide()"); | 658 | qDebug("cmbDefaultEmail->hide()"); |
653 | if (cmbDefaultEmail) cmbDefaultEmail->hide(); | 659 | if (cmbDefaultEmail) cmbDefaultEmail->hide(); |
660 | widgetPos=-1; | ||
661 | }else if (type == "Emails"){ | ||
662 | qDebug("emails"); | ||
663 | QString de; | ||
664 | emails = QStringList::split (",", textChanged ); | ||
665 | |||
666 | populateDefaultEmailCmb(); | ||
654 | } | 667 | } |
668 | |||
655 | 669 | ||
656 | 670 | ||
657 | slChooserValues[index] = textChanged; | 671 | slChooserValues[index] = textChanged; |
658 | 672 | ||
659 | } | 673 | } |
660 | 674 | ||
661 | void ContactEditor::slotChooser1Change( const QString &textChanged ) { | 675 | void ContactEditor::slotChooser1Change( const QString &textChanged ) { |
662 | chooserChange( textChanged, cmbChooserField1->currentItem(), txtChooserField1, 1); | 676 | chooserChange( textChanged, cmbChooserField1->currentItem(), txtChooserField1, 1); |
663 | } | 677 | } |
664 | 678 | ||
665 | void ContactEditor::slotChooser2Change( const QString &textChanged ) { | 679 | void ContactEditor::slotChooser2Change( const QString &textChanged ) { |
666 | chooserChange( textChanged, cmbChooserField2->currentItem(), txtChooserField2, 2); | 680 | chooserChange( textChanged, cmbChooserField2->currentItem(), txtChooserField2, 2); |
@@ -730,24 +744,25 @@ void ContactEditor::slotZipChange( const QString &textChanged ) { | |||
730 | } | 744 | } |
731 | } | 745 | } |
732 | 746 | ||
733 | void ContactEditor::slotCountryChange( const QString &textChanged ) { | 747 | void ContactEditor::slotCountryChange( const QString &textChanged ) { |
734 | 748 | ||
735 | if ( cmbAddress->currentItem() == 0 ) { | 749 | if ( cmbAddress->currentItem() == 0 ) { |
736 | slBusinessAddress[6] = textChanged; | 750 | slBusinessAddress[6] = textChanged; |
737 | } else { | 751 | } else { |
738 | slHomeAddress[6] = textChanged; | 752 | slHomeAddress[6] = textChanged; |
739 | } | 753 | } |
740 | } | 754 | } |
741 | 755 | ||
756 | |||
742 | void ContactEditor::slotCmbChooser1Change( int index ) { | 757 | void ContactEditor::slotCmbChooser1Change( int index ) { |
743 | 758 | ||
744 | txtChooserField1->setText( slChooserValues[index] ); | 759 | txtChooserField1->setText( slChooserValues[index] ); |
745 | txtChooserField1->setFocus(); | 760 | txtChooserField1->setFocus(); |
746 | } | 761 | } |
747 | 762 | ||
748 | void ContactEditor::slotCmbChooser2Change( int index ) { | 763 | void ContactEditor::slotCmbChooser2Change( int index ) { |
749 | 764 | ||
750 | txtChooserField2->setText( slChooserValues[index] ); | 765 | txtChooserField2->setText( slChooserValues[index] ); |
751 | txtChooserField2->setFocus(); | 766 | txtChooserField2->setFocus(); |
752 | } | 767 | } |
753 | 768 | ||
@@ -1051,24 +1066,25 @@ QString ContactEditor::parseName( const QString fullName, int type ) { | |||
1051 | case NAME_L: | 1066 | case NAME_L: |
1052 | return strLastName; | 1067 | return strLastName; |
1053 | 1068 | ||
1054 | case NAME_S: | 1069 | case NAME_S: |
1055 | return strSuffix; | 1070 | return strSuffix; |
1056 | 1071 | ||
1057 | } | 1072 | } |
1058 | return QString::null; | 1073 | return QString::null; |
1059 | } | 1074 | } |
1060 | 1075 | ||
1061 | void ContactEditor::cleanupFields() { | 1076 | void ContactEditor::cleanupFields() { |
1062 | QStringList::Iterator it = slChooserValues.begin(); | 1077 | QStringList::Iterator it = slChooserValues.begin(); |
1078 | |||
1063 | for ( int i = 0; it != slChooserValues.end(); i++, ++it ) { | 1079 | for ( int i = 0; it != slChooserValues.end(); i++, ++it ) { |
1064 | (*it) = ""; | 1080 | (*it) = ""; |
1065 | } | 1081 | } |
1066 | 1082 | ||
1067 | for ( int i = 0; i < 7; i++ ) { | 1083 | for ( int i = 0; i < 7; i++ ) { |
1068 | slHomeAddress[i] = ""; | 1084 | slHomeAddress[i] = ""; |
1069 | slBusinessAddress[i] = ""; | 1085 | slBusinessAddress[i] = ""; |
1070 | } | 1086 | } |
1071 | 1087 | ||
1072 | QListIterator<QLineEdit> itLV( listValue ); | 1088 | QListIterator<QLineEdit> itLV( listValue ); |
1073 | for ( ; itLV.current(); ++itLV ) { | 1089 | for ( ; itLV.current(); ++itLV ) { |
1074 | (*itLV)->setText( "" ); | 1090 | (*itLV)->setText( "" ); |
@@ -1093,24 +1109,31 @@ void ContactEditor::cleanupFields() { | |||
1093 | txtTmp->setText(""); | 1109 | txtTmp->setText(""); |
1094 | txtTmp = cmbFileAs->lineEdit(); | 1110 | txtTmp = cmbFileAs->lineEdit(); |
1095 | txtTmp->setText(""); | 1111 | txtTmp->setText(""); |
1096 | 1112 | ||
1097 | } | 1113 | } |
1098 | 1114 | ||
1099 | void ContactEditor::setEntry( const OContact &entry ) { | 1115 | void ContactEditor::setEntry( const OContact &entry ) { |
1100 | 1116 | ||
1101 | cleanupFields(); | 1117 | cleanupFields(); |
1102 | 1118 | ||
1103 | ent = entry; | 1119 | ent = entry; |
1104 | 1120 | ||
1121 | |||
1122 | |||
1123 | emails = QStringList(ent.emailList()); | ||
1124 | defaultEmail = ent.defaultEmail(); | ||
1125 | if (defaultEmail.isEmpty()) defaultEmail = emails[0]; | ||
1126 | qDebug("default email=%s",defaultEmail.latin1()); | ||
1127 | |||
1105 | useFullName = false; | 1128 | useFullName = false; |
1106 | txtFirstName->setText( ent.firstName() ); | 1129 | txtFirstName->setText( ent.firstName() ); |
1107 | txtMiddleName->setText( ent.middleName() ); | 1130 | txtMiddleName->setText( ent.middleName() ); |
1108 | txtLastName->setText( ent.lastName() ); | 1131 | txtLastName->setText( ent.lastName() ); |
1109 | txtSuffix->setText( ent.suffix() ); | 1132 | txtSuffix->setText( ent.suffix() ); |
1110 | 1133 | ||
1111 | QString *tmpString = new QString; | 1134 | QString *tmpString = new QString; |
1112 | *tmpString = ent.firstName() + " " + ent.middleName() + | 1135 | *tmpString = ent.firstName() + " " + ent.middleName() + |
1113 | + " " + ent.lastName() + " " + ent.suffix(); | 1136 | + " " + ent.lastName() + " " + ent.suffix(); |
1114 | 1137 | ||
1115 | txtFullName->setText( tmpString->simplifyWhiteSpace() ); | 1138 | txtFullName->setText( tmpString->simplifyWhiteSpace() ); |
1116 | 1139 | ||
diff --git a/core/pim/addressbook/contacteditor.h b/core/pim/addressbook/contacteditor.h index 63257f8..bcef679 100644 --- a/core/pim/addressbook/contacteditor.h +++ b/core/pim/addressbook/contacteditor.h | |||
@@ -95,44 +95,48 @@ class ContactEditor : public QDialog { | |||
95 | void slotStateChange( const QString &textChanged ); | 95 | void slotStateChange( const QString &textChanged ); |
96 | void slotZipChange( const QString &textChanged ); | 96 | void slotZipChange( const QString &textChanged ); |
97 | void slotCountryChange( const QString &textChanged ); | 97 | void slotCountryChange( const QString &textChanged ); |
98 | void slotFullNameChange( const QString &textChanged ); | 98 | void slotFullNameChange( const QString &textChanged ); |
99 | void slotAnniversaryDateChanged( int year, int month, int day); | 99 | void slotAnniversaryDateChanged( int year, int month, int day); |
100 | void slotBirthdayDateChanged( int year, int month, int day); | 100 | void slotBirthdayDateChanged( int year, int month, int day); |
101 | void slotRemoveBirthday(); | 101 | void slotRemoveBirthday(); |
102 | void slotRemoveAnniversary(); | 102 | void slotRemoveAnniversary(); |
103 | void defaultEmailChanged(int); | 103 | void defaultEmailChanged(int); |
104 | 104 | ||
105 | private: | 105 | private: |
106 | int defaultEmailChooserPosition; | 106 | int defaultEmailChooserPosition; |
107 | void populateDefaultEmailCmb(); | ||
107 | void chooserChange( const QString&, int , QLineEdit*, int ); | 108 | void chooserChange( const QString&, int , QLineEdit*, int ); |
109 | |||
108 | bool useFullName; | 110 | bool useFullName; |
109 | 111 | ||
110 | OContact ent; | 112 | OContact ent; |
111 | 113 | ||
112 | QDialog *dlgNote; | 114 | QDialog *dlgNote; |
113 | QDialog *dlgName; | 115 | QDialog *dlgName; |
114 | 116 | ||
115 | QList<QLineEdit> listValue; | 117 | QList<QLineEdit> listValue; |
116 | QList<QLabel> listName; | 118 | QList<QLabel> listName; |
117 | 119 | ||
118 | QStringList slDynamicEntries; | 120 | QStringList slDynamicEntries; |
119 | QStringList trlDynamicEntries; | 121 | QStringList trlDynamicEntries; |
120 | 122 | ||
121 | bool m_personalView; | 123 | bool m_personalView; |
122 | 124 | ||
123 | QStringList slHomeAddress; | 125 | QStringList slHomeAddress; |
124 | QStringList slBusinessAddress; | 126 | QStringList slBusinessAddress; |
125 | QStringList slChooserNames; | 127 | QStringList slChooserNames; |
126 | QStringList slChooserValues; | 128 | QStringList slChooserValues; |
129 | QStringList emails; | ||
130 | QString defaultEmail; | ||
127 | 131 | ||
128 | QMultiLineEdit *txtNote; | 132 | QMultiLineEdit *txtNote; |
129 | QLabel *lblNote; | 133 | QLabel *lblNote; |
130 | 134 | ||
131 | //QLineEdit *txtTitle; | 135 | //QLineEdit *txtTitle; |
132 | QLineEdit *txtFirstName; | 136 | QLineEdit *txtFirstName; |
133 | QLineEdit *txtMiddleName; | 137 | QLineEdit *txtMiddleName; |
134 | QLineEdit *txtLastName; | 138 | QLineEdit *txtLastName; |
135 | QLineEdit *txtSuffix; | 139 | QLineEdit *txtSuffix; |
136 | 140 | ||
137 | QTabWidget *tabMain; | 141 | QTabWidget *tabMain; |
138 | QScrollView *svGeneral; | 142 | QScrollView *svGeneral; |