File: dialog_insinuation.h

package info (click to toggle)
kdeutils 4%3A2.2.2-9.2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 8,892 kB
  • ctags: 10,879
  • sloc: cpp: 82,942; sh: 11,754; ansic: 4,638; perl: 1,852; makefile: 706; python: 258
file content (40 lines) | stat: -rw-r--r-- 930 bytes parent folder | download
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
/* -*- C++ -*-
   This file declares the dialog to enter organisational attributes
   in the KDE address book.

   the KDE addressbook
   $ Author: Mirko Boehm $
   $ Copyright: (C) 1996-2000, Mirko Boehm $
   $ Contact: mirko@kde.org
         http://www.kde.org $
   $ License: GPL with the following explicit clarification:
         This code may be linked against any version of the Qt toolkit
         from Troll Tech, Norway. $

   $Revision: 1.2 $
*/

#ifndef DIALOG_INSINUATION_H
#define DIALOG_INSINUATION_H

#include <qwidget.h>
#include <addressbook.h>

class QLineEdit;

#define NoOfFields 3

class InsinuationDialog : public QWidget
{
  Q_OBJECT
public:
  InsinuationDialog(QWidget* parent, const char* name=0);
  ~InsinuationDialog();
  void setFields(const AddressBook::Entry::Address&);
  void getFields(AddressBook::Entry::Address&);
protected:
  QLineEdit *fields[NoOfFields];
};

#endif // DIALOG_INSINUATION_H