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

« back to all changes in this revision

Viewing changes to libkdepim/kprefsdialog.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:
44
44
class QLabel;
45
45
class QSpinBox;
46
46
class QTimeEdit;
47
 
class Q3ButtonGroup;
 
47
class QButtonGroup;
 
48
class QGroupBox;
48
49
 
49
50
namespace KPIM {
50
51
 
399
400
    /**
400
401
      Add a radio button.
401
402
 
 
403
      @param value The enum value represented by this radio button.
402
404
      @param text Text of the button.
403
405
      @param toolTip ToolTip help for the button.
404
406
      @param whatsThis What's This help for the button.
405
407
    */
406
 
    void addRadio( const QString &text,
 
408
    void addRadio( int value,
 
409
                   const QString &text,
407
410
                   const QString &toolTip = QString(),
408
411
                   const QString &whatsThis = QString() );
409
412
 
410
413
    /**
411
414
      Return the box widget used by this widget.
412
415
    */
413
 
    Q3ButtonGroup *groupBox();
 
416
    QGroupBox *groupBox() const;
414
417
 
415
418
    void readConfig();
416
419
    void writeConfig();
420
423
  private:
421
424
    KConfigSkeleton::ItemEnum *mItem;
422
425
 
423
 
    Q3ButtonGroup *mBox;
 
426
    QGroupBox *mBox;
 
427
    QButtonGroup *mGroup;
424
428
};
425
429
 
426
430
/**