summaryrefslogtreecommitdiff
path: root/core/pim/addressbook/contacteditor.h
authortux_mike <tux_mike>2002-03-26 17:46:06 (UTC)
committer tux_mike <tux_mike>2002-03-26 17:46:06 (UTC)
commitdbbbe1c0600422e4bd2d6a6aba271476f457ed97 (patch) (side-by-side diff)
tree692c9a3453a158b685de2f1f794b7cdb8c2eccef /core/pim/addressbook/contacteditor.h
parente91f77a9ebf359c0fbf4f8d1a0de50bf0dcf81d8 (diff)
downloadopie-dbbbe1c0600422e4bd2d6a6aba271476f457ed97.zip
opie-dbbbe1c0600422e4bd2d6a6aba271476f457ed97.tar.gz
opie-dbbbe1c0600422e4bd2d6a6aba271476f457ed97.tar.bz2
Mike Crawford <mike@tuxnami.org> Source files for the new input screen.
Diffstat (limited to 'core/pim/addressbook/contacteditor.h') (more/less context) (ignore whitespace changes)
-rw-r--r--core/pim/addressbook/contacteditor.h158
1 files changed, 158 insertions, 0 deletions
diff --git a/core/pim/addressbook/contacteditor.h b/core/pim/addressbook/contacteditor.h
new file mode 100644
index 0000000..a799672
--- a/dev/null
+++ b/core/pim/addressbook/contacteditor.h
@@ -0,0 +1,158 @@
+/*
+ * Copyright (c) 2002 Michael R. Crawford <mike@tuxnami.org>
+ *
+ * This file is an add-on for the OPIE Palmtop Environment
+ *
+ * This file may be distributed and/or modified under the terms of the
+ * GNU General Public License version 2 as published by the Free Software
+ * Foundation and appearing in the file LICENSE.GPL included in the pacakaging
+ * of this file.
+ *
+ * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
+ * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
+ *
+ *
+ * This is a rewrite of the abeditor.h file, modified to provide a more
+ * intuitive interface to TrollTech's original Address Book editor. This
+ * is made to operate exactly in interface with the exception of name.
+ *
+ */
+
+#ifndef CONTACTEDITOR_H
+#define CONTACTEDITOR_H
+
+#include <qpe/contact.h>
+
+#include <qdialog.h>
+#include <qlist.h>
+#include <qmap.h>
+#include <qstringlist.h>
+
+const int NAME_LF = 0;
+const int NAME_LFM = 1;
+const int NAME_FL = 2;
+const int NAME_FMLS = 3;
+
+const int NAME_F = 4;
+const int NAME_M = 5;
+const int NAME_L = 6;
+const int NAME_S = 7;
+
+
+class QScrollView;
+class QTabWidget;
+class QMultiLineEdit;
+class QLineEdit;
+class QComboBox;
+class QPushButton;
+class CategorySelect;
+class QLabel;
+
+class ContactEditor : public QDialog {
+ Q_OBJECT
+
+ public:
+ ContactEditor( const Contact &entry,
+ const QValueList<int> *newOrderedValues,
+ QStringList *slNewOrdered,
+ QWidget *parent = 0,
+ const char *name = 0,
+ WFlags fl = 0 );
+ ~ContactEditor();
+ void loadFields();
+ void setNameFocus();
+ Contact entry() const { return ent; }
+
+ public slots:
+ void slotNote();
+ void slotName();
+ void setEntry(const Contact &entry);
+
+ protected slots:
+ void accept();
+
+ private:
+ void init();
+ void initMap();
+ void saveEntry();
+ bool isEmpty();
+ void cleanupFields();
+ QString parseName( QString fullName, int type );
+
+ private slots:
+ void slotChooser1Change( const QString &textChanged );
+ void slotChooser2Change( const QString &textChanged );
+ void slotChooser3Change( const QString &textChanged );
+ void slotCmbChooser1Change( int index );
+ void slotCmbChooser2Change( int index );
+ void slotCmbChooser3Change( int index );
+ void slotAddressTypeChange( int index );
+ void slotAddressChange( const QString &textChanged );
+ void slotAddress2Change( const QString &textChanged );
+ void slotPOBoxChange( const QString &textChanged );
+ void slotCityChange( const QString &textChanged );
+ void slotStateChange( const QString &textChanged );
+ void slotZipChange( const QString &textChanged );
+ void slotCountryChange( const QString &textChanged );
+ void slotFullNameChange( const QString &textChanged );
+
+ private:
+ bool useFullName, hasGender, hasTitle, hasCompany, hasNotes, hasStreet, hasStreet2, hasPOBox, hasCity, hasState, hasZip, hasCountry;
+
+ Contact ent;
+
+ QDialog *dlgNote;
+ QDialog *dlgName;
+
+ QList<QLineEdit> listValue;
+ QList<QLabel> listName;
+ const QValueList<int> *orderedValues;
+ QStringList *slOrdered;
+ QStringList *slDynamicEntries;
+
+ QStringList *slHomeAddress;
+ QStringList *slBusinessAddress;
+ QStringList *slChooserNames;
+ QStringList *slChooserValues;
+
+ QMultiLineEdit *txtNote;
+ QLabel *lblNote;
+
+ //QLineEdit *txtTitle;
+ QLineEdit *txtFirstName;
+ QLineEdit *txtMiddleName;
+ QLineEdit *txtLastName;
+ QLineEdit *txtSuffix;
+
+ QTabWidget *tabMain;
+ QScrollView *svGeneral;
+ QPushButton *btnFullName;
+ QPushButton *btnNote;
+ QLineEdit *txtFullName;
+ QLineEdit *txtJobTitle;
+ QLineEdit *txtOrganization;
+ QLineEdit *txtChooserField1;
+ QLineEdit *txtChooserField2;
+ QLineEdit *txtChooserField3;
+ QComboBox *cmbChooserField1;
+ QComboBox *cmbChooserField2;
+ QComboBox *cmbChooserField3;
+ QComboBox *cmbFileAs;
+ CategorySelect *cmbCat;
+
+ QScrollView *svAddress;
+ QLineEdit *txtAddress;
+ //QLineEdit *txtAddress2;
+ //QLineEdit *txtPOBox;
+ QLineEdit *txtCity;
+ QLineEdit *txtState;
+ QLineEdit *txtZip;
+ QComboBox *cmbAddress;
+ QComboBox *cmbCountry;
+
+ QScrollView *svDetails;
+ QComboBox *cmbGender;
+
+};
+
+#endif