You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
166 lines
3.9 KiB
166 lines
3.9 KiB
/*
|
|
This file is part of KAddressbook.
|
|
Copyright (c) 2004 Tobias Koenig <tokoe@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
As a special exception, permission is given to link this program
|
|
with any edition of TQt, and distribute the resulting executable,
|
|
without including the source code for TQt in the source distribution.
|
|
*/
|
|
|
|
#ifndef CUSTOMFIELDSWIDGET_H
|
|
#define CUSTOMFIELDSWIDGET_H
|
|
|
|
#include <tdeabc/addressee.h>
|
|
#include <kdialogbase.h>
|
|
#include <tdelocale.h>
|
|
|
|
#include <tqmap.h>
|
|
#include <tqpair.h>
|
|
#include <tqstringlist.h>
|
|
#include <tqvaluevector.h>
|
|
#include <tqwidget.h>
|
|
|
|
#include "contacteditorwidget.h"
|
|
|
|
class TQCheckBox;
|
|
class TQGridLayout;
|
|
class TQLabel;
|
|
class TQPushButton;
|
|
class TQVBoxLayout;
|
|
class TQWidget;
|
|
|
|
class KComboBox;
|
|
class KLineEdit;
|
|
|
|
typedef struct {
|
|
TQString mIdentifier;
|
|
TQString mTitle;
|
|
bool mGlobal;
|
|
|
|
TQLabel *mLabel;
|
|
TQWidget *mWidget;
|
|
TQHBoxLayout *mLayout;
|
|
} FieldRecord;
|
|
|
|
typedef TQValueList<FieldRecord> FieldRecordList;
|
|
|
|
class AddFieldDialog : public KDialogBase
|
|
{
|
|
TQ_OBJECT
|
|
|
|
|
|
public:
|
|
AddFieldDialog( TQWidget *parent, const char *name = 0 );
|
|
|
|
TQString title() const;
|
|
TQString identifier() const;
|
|
TQString type() const;
|
|
bool isGlobal() const;
|
|
|
|
private slots:
|
|
void nameChanged( const TQString& );
|
|
|
|
private:
|
|
KLineEdit *mTitle;
|
|
KComboBox *mType;
|
|
TQCheckBox *mGlobal;
|
|
|
|
TQValueVector<TQString> mTypeList;
|
|
TQValueVector<TQString> mTypeName;
|
|
};
|
|
|
|
class FieldWidget : public TQWidget
|
|
{
|
|
TQ_OBJECT
|
|
|
|
|
|
public:
|
|
FieldWidget( TQWidget *parent, const char *name = 0 );
|
|
|
|
void addField( const TQString &identifier, const TQString &title,
|
|
const TQString &type, bool isGlobal );
|
|
|
|
void removeField( const TQString &identifier );
|
|
|
|
void loadContact( TDEABC::Addressee *addr );
|
|
void storeContact( TDEABC::Addressee *addr );
|
|
void setReadOnly( bool readOnly );
|
|
|
|
FieldRecordList fields() const { return mFieldList; }
|
|
|
|
void removeLocalFields();
|
|
void clearFields();
|
|
|
|
signals:
|
|
void changed();
|
|
|
|
private:
|
|
void recalculateLayout();
|
|
|
|
TQVBoxLayout *mGlobalLayout;
|
|
TQVBoxLayout *mLocalLayout;
|
|
TQFrame *mSeparator;
|
|
|
|
FieldRecordList mFieldList;
|
|
};
|
|
|
|
class CustomFieldsWidget : public KAB::ContactEditorWidget
|
|
{
|
|
TQ_OBJECT
|
|
|
|
|
|
public:
|
|
CustomFieldsWidget( TDEABC::AddressBook *ab, TQWidget *parent, const char *name = 0 );
|
|
|
|
void loadContact( TDEABC::Addressee *addr );
|
|
void storeContact( TDEABC::Addressee *addr );
|
|
void setReadOnly( bool readOnly );
|
|
|
|
private slots:
|
|
void addField();
|
|
void removeField();
|
|
|
|
private:
|
|
void initGUI();
|
|
|
|
TQStringList marshallFields( bool ) const;
|
|
|
|
TQPushButton *mAddButton;
|
|
TQPushButton *mRemoveButton;
|
|
TQGridLayout *mLayout;
|
|
|
|
FieldWidget *mFieldWidget;
|
|
|
|
TDEABC::Addressee mAddressee;
|
|
};
|
|
|
|
class CustomFieldsWidgetFactory : public KAB::ContactEditorWidgetFactory
|
|
{
|
|
public:
|
|
KAB::ContactEditorWidget *createWidget( TDEABC::AddressBook *ab, TQWidget *parent, const char *name )
|
|
{
|
|
return new CustomFieldsWidget( ab, parent, name );
|
|
}
|
|
|
|
TQString pageTitle() const { return i18n( "Custom Fields" ); }
|
|
TQString pageIdentifier() const { return "custom_fields"; }
|
|
};
|
|
|
|
void splitField( const TQString&, TQString&, TQString&, TQString& );
|
|
|
|
#endif
|