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
|
/*
* kdeprintfax - a small fax utility
* Copyright (C) 2001 Michael Goffioul
*
* 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.
*
*/
#ifndef KDEPRINTFAX_H
#define KDEPRINTFAX_H
#include <kmainwindow.h>
#include <kurl.h>
class KListBox;
class KListView;
class QLineEdit;
class QTextEdit;
class FaxCtrl;
class QCheckBox;
class QLabel;
class QTimeEdit;
class QComboBox;
class QPushButton;
class QListViewItem;
class KdeprintFax : public KMainWindow
{
Q_OBJECT
public:
struct FaxItem
{
QString number;
QString name;
QString enterprise;
};
typedef QValueList<FaxItem> FaxItemList;
typedef QValueList<FaxItem>::ConstIterator FaxItemListIterator;
KdeprintFax(QWidget *parent = 0, const char *name = 0);
~KdeprintFax();
void addURL(KURL url);
void setPhone(QString phone);
void sendFax( bool quitAfterSend );
QStringList files();
int faxCount() const;
//QString number( int i = 0 ) const;
//QString name( int i = 0 ) const;
//QString enterprise( int i = 0 ) const;
FaxItemList faxList() const;
QString comment() const;
QString time() const;
QString subject() const;
bool cover() const;
protected slots:
void slotToggleMenuBar();
void slotKab();
void slotAdd();
void slotRemove();
void slotFax();
void slotAbort();
void slotMessage(const QString&);
void slotFaxSent(bool);
void slotViewLog();
void slotConfigure();
void slotQuit();
void slotView();
void slotTimeComboActivated(int);
void slotMoveUp();
void slotMoveDown();
void slotCurrentChanged();
void slotFaxSelectionChanged();
void slotFaxRemove();
void slotFaxAdd();
void slotFaxExecuted( QListViewItem* );
void slotCoverToggled(bool toggle);
protected:
void initActions();
void dragEnterEvent(QDragEnterEvent*);
void dropEvent(QDropEvent*);
void updateState();
bool manualFaxDialog( QString& number, QString& name, QString& enterprise );
//QListViewItem* faxItem( int i = 0 ) const;
private:
KListBox *m_files;
KListView *m_numbers;
QLineEdit *m_subject;
QTextEdit *m_comment;
FaxCtrl *m_faxctrl;
QCheckBox *m_cover;
QLabel *m_msglabel;
QTimeEdit *m_time;
QComboBox *m_timecombo;
QPushButton *m_upbtn, *m_downbtn;
QPushButton *m_newbtn, *m_abbtn, *m_delbtn;
bool m_quitAfterSend;
};
#endif
|