1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
|
/* This file is part of the KDE project
Original file (KWMailMergeDataBase.h): Copyright (C) 1998, 1999 Reginald Stadlbauer <reggie@kde.org>
Copyright (C) 2001 Joseph Wenninger <jowenn@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef _SERIALLETTER_CLASSIC_PLUGIN_H_
#define _SERIALLETTER_CLASSIC_PLUGIN_H_
#include <qdom.h>
#include <qlistview.h>
#include <kdialogbase.h>
#include <KoCustomVariablesDia.h>
#include "KWMailMergeDataSource.h"
#include <qspinbox.h>
class QHBox;
class QVBox;
class QPushButton;
class QListBox;
class QLabel;
class QLineEdit;
class QToolButton;
/******************************************************************
*
* Class: KWClassicSerialDataSource
*
******************************************************************/
typedef QValueList< DbRecord > Db;
class KWClassicSerialDataSource: public KWMailMergeDataSource
{
Q_OBJECT
public:
KWClassicSerialDataSource(KInstance *inst,QObject *parent);
~KWClassicSerialDataSource();
virtual void save( QDomDocument &doc,QDomElement&);
virtual void load( QDomElement& elem );
virtual class QString getValue( const class QString &name, int record = -1 ) const;
virtual int getNumRecords() const {
return (int)db.count();
}
virtual bool showConfigDialog(QWidget *,int);
virtual void refresh(bool){};
protected:
friend class KWClassicMailMergeEditor;
friend class KWClassicMailMergeEditorList;
void setValue( const QString &name, const QString &value, int record = -1 );
void appendRecord();
void addEntry( const QString &name );
void removeEntry( const QString &name );
void removeRecord( int i );
Db db;
};
/******************************************************************
*
* Class: KWClassicMailMergeEditorListItem
*
******************************************************************/
class KWClassicMailMergeEditorListItem : public QListViewItem
{
public:
KWClassicMailMergeEditorListItem( QListView *parent );
KWClassicMailMergeEditorListItem( QListView *parent, QListViewItem *after );
virtual ~KWClassicMailMergeEditorListItem();
virtual void setText( int i, const QString &text );
virtual QString text( int i ) const;
void setup();
void update();
protected:
QLineEdit *editWidget;
};
/******************************************************************
*
* Class: KWClassicMailMergeEditorList
*
******************************************************************/
class KWClassicMailMergeEditorList : public QListView
{
Q_OBJECT
public:
KWClassicMailMergeEditorList( QWidget *parent, KWClassicSerialDataSource *db_ );
virtual ~KWClassicMailMergeEditorList();
void invalidateCurrentRecord();
void updateItems();
void displayRecord( int i );
void setSorting( int, bool increasing = TRUE ) {
QListView::setSorting( -1, increasing );
}
protected slots:
void columnSizeChange( int c, int os, int ns );
void sectionClicked( int c );
protected:
KWClassicSerialDataSource *db;
int currentRecord;
};
/******************************************************************
*
* Class: KWClassicMailMergeEditor
*
******************************************************************/
class KWClassicMailMergeEditor : public KDialogBase
{
Q_OBJECT
public:
KWClassicMailMergeEditor( QWidget *parent, KWClassicSerialDataSource *db_ );
protected:
void resizeEvent( QResizeEvent *e );
void updateButton();
QSpinBox *records;
KWClassicMailMergeEditorList *dbList;
QWidget *back;
KWClassicSerialDataSource *db;
QToolButton *first;
QToolButton *back_;
QToolButton *forward;
QToolButton *finish;
QToolButton *newRecord;
QToolButton *newEntry;
QToolButton *deleteRecord;
QToolButton *deleteEntry;
protected slots:
void changeRecord( int i );
void addEntry();
void addRecord();
void removeEntry();
void removeRecord();
void firstRecord();
void prevRecord();
void nextRecord();
void lastRecord();
};
#endif
|