addressdialog.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef ADDRESSDIALOG_H
00021 #define ADDRESSDIALOG_H
00022
00023 #include <kdialogbase.h>
00024
00025 class QComboBox;
00026 class QLineEdit;
00027
00028 class AddressDialog : public KDialogBase
00029 {
00030 public:
00031 AddressDialog(QWidget *parent = 0, const char *name = 0);
00032
00033 QString addressString();
00034 static QString newAddress(QWidget *parent = 0);
00035 static QString editAddress(const QString& s, QWidget *parent = 0);
00036
00037 private:
00038 QComboBox *type_;
00039 QLineEdit *address_;
00040 };
00041
00042 #endif
This file is part of the documentation for kdeprint Library Version 3.2.0.