kaddressbook Library API Documentation

nameeditdialog.h

00001 /*                                                                      
00002     This file is part of KAddressBook.                                  
00003     Copyright (c) 2002 Mike Pilone <mpilone@slac.com>                   
00004                                                                         
00005     This program is free software; you can redistribute it and/or modify
00006     it under the terms of the GNU General Public License as published by
00007     the Free Software Foundation; either version 2 of the License, or   
00008     (at your option) any later version.                                 
00009                                                                         
00010     This program is distributed in the hope that it will be useful,     
00011     but WITHOUT ANY WARRANTY; without even the implied warranty of      
00012     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the        
00013     GNU General Public License for more details.                        
00014                                                                         
00015     You should have received a copy of the GNU General Public License   
00016     along with this program; if not, write to the Free Software         
00017     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.           
00018                                                                         
00019     As a special exception, permission is given to link this program    
00020     with any edition of Qt, and distribute the resulting executable,    
00021     without including the source code for Qt in the source distribution.
00022 */                                                                      
00023 
00024 #ifndef NAMEEDITDIALOG_H
00025 #define NAMEEDITDIALOG_H
00026 
00027 #include <kdialogbase.h>
00028 #include <kabc/addressee.h>
00029 
00030 #include "addresseeconfig.h"
00031 
00032 class QCheckBox;
00033 
00034 class KLineEdit;
00035 class KComboBox;
00036 
00040 class NameEditDialog : public KDialogBase
00041 {
00042   Q_OBJECT
00043 
00044   public:
00045     enum FormattedNameType
00046     {
00047       CustomName, // returned by @ref customFormattedName()
00048       SimpleName, // form: givenName familyName
00049       FullName,   // form: prefix givenName additionalName familyName suffix
00050       ReverseName // form: familyName, givenName
00051     };
00052 
00053     NameEditDialog( const KABC::Addressee &addr, int type,
00054                     bool readOnly, QWidget *parent, const char *name = 0 );
00055     ~NameEditDialog();
00056    
00057     QString familyName() const;
00058     QString givenName() const;
00059     QString prefix() const;
00060     QString suffix() const;
00061     QString additionalName() const;
00062     QString customFormattedName() const;
00063     int formattedNameType() const;
00064 
00065     bool changed() const;
00066 
00067     static QString formattedName( const KABC::Addressee &addr, int type );
00068    
00069   protected slots:
00070     void slotHelp();
00071 
00072   private slots:
00073     void parseBoxChanged( bool );
00074     void typeChanged( int );
00075     void updateTypeCombo();
00076     void modified();
00077 
00078   private:
00079     KComboBox *mSuffixCombo;
00080     KComboBox *mPrefixCombo;
00081     KComboBox *mFormattedNameCombo;
00082     KLineEdit *mFamilyNameEdit;
00083     KLineEdit *mGivenNameEdit;
00084     KLineEdit *mAdditionalNameEdit;
00085     KLineEdit *mFormattedNameEdit;
00086     QCheckBox *mParseBox;
00087 
00088     AddresseeConfig mAddresseeConfig;
00089     bool mChanged;
00090 };
00091 
00092 #endif
KDE Logo
This file is part of the documentation for kaddressbook Library Version 3.2.2.
Documentation copyright © 1996-2004 the KDE developers.
Generated on Sat May 1 11:38:52 2004 by doxygen 1.2.15 written by Dimitri van Heesch, © 1997-2003