~ubuntu-branches/ubuntu/oneiric/kdepim/oneiric-updates

« back to all changes in this revision

Viewing changes to wizards/groupwisewizard.h

  • Committer: Package Import Robot
  • Author(s): Philip Muškovac
  • Date: 2011-06-28 19:33:24 UTC
  • mfrom: (0.2.13) (0.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20110628193324-8yvjs8sdv9rdoo6c
Tags: 4:4.7.0-0ubuntu1
* New upstream release
  - update install files
  - add missing kdepim-doc package to control file
  - Fix Vcs lines
  - kontact breaks/replaces korganizer << 4:4.6.80
  - tighten the dependency of kdepim-dev on libkdepim4 to fix lintian error

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
#ifndef GROUPWISEWIZARD_H
21
21
#define GROUPWISEWIZARD_H
22
22
 
23
 
#include <kconfigwizard.h>
 
23
#include "kconfigwizard.h"
24
24
 
25
25
class KLineEdit;
26
26
class QCheckBox;
27
27
class QSpinBox;
28
28
class QGroupBox;
29
29
 
30
 
using namespace KPIM;
31
 
 
32
30
class GroupwiseWizard : public KConfigWizard
33
31
{
34
32
    Q_OBJECT
40
38
    void usrReadConfig();
41
39
    void usrWriteConfig();
42
40
 
43
 
  protected slots:
44
 
    void slotAboutToShowPage( KPageWidgetItem *, KPageWidgetItem * );
45
 
 
46
41
  private:
47
42
    KLineEdit *mServerEdit;
48
43
    KLineEdit *mPathEdit;
51
46
    KLineEdit *mPasswordEdit;
52
47
    QCheckBox *mSavePasswordCheck;
53
48
    QCheckBox *mSecureCheck;
54
 
 
55
 
    QWidget *mEmailPage;
56
 
    QGroupBox *mEmailBox;
57
 
    QWidget *mEmailWidget;
58
 
    KLineEdit *mEmailEdit;
59
 
    KLineEdit *mFullNameEdit;
60
49
};
61
50
 
62
51
#endif