~ubuntu-branches/ubuntu/precise/kdepim/precise-proposed

« back to all changes in this revision

Viewing changes to libkdepim/kprefsdialog.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2011-12-15 14:17:51 UTC
  • mfrom: (0.2.20)
  • Revision ID: package-import@ubuntu.com-20111215141751-yg890pa7vnlo34e0
Tags: 4:4.7.90-0ubuntu1
new upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 
4
4
  Copyright (c) 2001-2003 Cornelius Schumacher <schumacher@kde.org>
5
5
  Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
6
 
  Copyright (C) 2005,2008 Allen Winter <winter@kde.org>
 
6
  Copyright (C) 2005,2008,2011 Allen Winter <winter@kde.org>
7
7
 
8
8
  This library is free software; you can redistribute it and/or
9
9
  modify it under the terms of the GNU Library General Public
38
38
class KColorButton;
39
39
class KComboBox;
40
40
class KComponentData;
 
41
class KDateComboBox;
 
42
class KTimeComboBox;
41
43
class KUrlRequester;
42
44
 
43
45
class QCheckBox;
49
51
 
50
52
namespace KPIM {
51
53
 
52
 
class KDateEdit;
53
 
class KTimeEdit;
54
 
 
55
54
/**
56
55
  @short Base class for GUI control elements used by @ref KPrefsDialog.
57
56
  @author Cornelius Schumacher
184
183
      Return QLabel used by this widget.
185
184
    */
186
185
    QLabel *label();
 
186
 
187
187
    /**
188
 
      Return QSpinBox used by this widget.
 
188
      Return KTimeComboBox used by this widget.
189
189
    */
190
 
    KTimeEdit *timeEdit();
 
190
    KTimeComboBox *timeEdit();
191
191
 
192
192
    void readConfig();
193
193
    void writeConfig();
196
196
    KConfigSkeleton::ItemDateTime *mItem;
197
197
 
198
198
    QLabel *mLabel;
199
 
    KTimeEdit *mTimeEdit;
 
199
    KTimeComboBox *mTimeEdit;
200
200
};
201
201
 
202
202
/**
260
260
      Return QLabel used by this widget.
261
261
    */
262
262
    QLabel *label();
 
263
 
263
264
    /**
264
 
      Return QSpinBox used by this widget.
 
265
      Return KDateComboBox used by this widget.
265
266
    */
266
 
    KDateEdit *dateEdit();
 
267
    KDateComboBox *dateEdit();
267
268
 
268
269
    void readConfig();
269
270
    void writeConfig();
272
273
    KConfigSkeleton::ItemDateTime *mItem;
273
274
 
274
275
    QLabel *mLabel;
275
 
    KDateEdit *mDateEdit;
 
276
    KDateComboBox *mDateEdit;
276
277
};
277
278
 
278
279
/**