summaryrefslogtreecommitdiffstats
path: root/libtdepim/kprefsdialog.h
blob: 86c7b81f43f02c92326a01ce81d743093824807f (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
/*
    This file is part of libtdepim.

    Copyright (c) 2001-2003 Cornelius Schumacher <schumacher@kde.org>
    Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
    Copyright (C) 2005 Allen Winter <winter@kde.org>

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public License
    along with this library; see the file COPYING.LIB.  If not, write to
    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
    Boston, MA 02110-1301, USA.
*/
#ifndef KPREFSDIALOG_H
#define KPREFSDIALOG_H

#include <tqptrlist.h>
#include <tqlineedit.h>
#include <tqvaluelist.h>
#include <tqdatetimeedit.h>

#include <kdialogbase.h>
#include <tdecmodule.h>
#include <tdeconfigskeleton.h>
#include <tdefile.h>
#include <kdemacros.h>


class KColorButton;
class TQCheckBox;
class TQComboBox;
class TQLabel;
class TQSpinBox;
class TQButtonGroup;
class TQTimeEdit;
class KTimeEdit;
class KDateEdit;
class KURLRequester;

/**
  @short Base class for GUI control elements used by @ref KPrefsDialog.
  @author Cornelius Schumacher
  @see KPrefsDialog

  This class provides the interface for the GUI control elements used by
  KPrefsDialog. The control element consists of a set of widgets for handling
  a certain type of configuration information.
*/
class KDE_EXPORT KPrefsWid : public TQObject
{
    Q_OBJECT
  
  public:
    /**
      This function is called to read value of the setting from the
      stored configuration and display it in the widget.
    */
    virtual void readConfig() = 0;
    /**
      This function is called to write the current setting of the widget to the
      stored configuration.
    */
    virtual void writeConfig() = 0;

    /**
      Return a list of widgets used by this control element.
    */
    virtual TQValueList<TQWidget *> widgets() const;

  signals:
    /**
      Emitted when widget value has changed.
    */
    void changed();
};

/**
  @short Widgets for bool settings in @ref KPrefsDialog.

  This class provides a control element for configuring bool values. It is meant
  to be used by KPrefsDialog. The user is responsible for the layout management.
*/
class KDE_EXPORT KPrefsWidBool : public KPrefsWid
{
  public:
    /**
      Create a bool value control element consisting of a TQCheckbox.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidBool( TDEConfigSkeleton::ItemBool *item, TQWidget *parent );

    /**
      Return the TQCheckbox used by this control element.
    */
    TQCheckBox *checkBox();

    void readConfig();
    void writeConfig();

    TQValueList<TQWidget *> widgets() const;

  private:
    TDEConfigSkeleton::ItemBool *mItem;

    TQCheckBox *mCheck;
};

/**
  @short Widgets for int settings in @ref KPrefsDialog.

  This class provides a control element for configuring integer values. It is
  meant to be used by KPrefsDialog. The user is responsible for the layout
  management.
*/
class KDE_EXPORT KPrefsWidInt : public KPrefsWid
{
  public:
    /**
      Create a integer value control element consisting of a label and a
      spinbox.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidInt( TDEConfigSkeleton::ItemInt *item, TQWidget *parent );

    /**
      Return TQLabel used by this control element.
    */
    TQLabel *label();

    /**
      Return the TQSpinBox used by this control element.
    */
    TQSpinBox *spinBox();

    void readConfig();
    void writeConfig();

    TQValueList<TQWidget *> widgets() const;

  private:
    TDEConfigSkeleton::ItemInt *mItem;

    TQLabel *mLabel;
    TQSpinBox *mSpin;
};

/**
  @short Widgets for time settings in @ref KPrefsDialog.

  This class provides a control element for configuring time values. It is
  meant to be used by KPrefsDialog. The user is responsible for the layout
  management.
*/
class KDE_EXPORT KPrefsWidTime : public KPrefsWid
{
  public:
    /**
      Create a time value control element consisting of a label and a spinbox.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidTime( TDEConfigSkeleton::ItemDateTime *item, TQWidget *parent );

    /**
      Return TQLabel used by this widget.
    */
    TQLabel *label();
    /**
      Return TQSpinBox used by this widget.
    */
    KTimeEdit *timeEdit();

    void readConfig();
    void writeConfig();

  private:
    TDEConfigSkeleton::ItemDateTime *mItem;

    TQLabel *mLabel;
    KTimeEdit *mTimeEdit;
};

/**
  @short Widgets for duration settings in @ref KPrefsDialog.

  This class provides a control element for configuring duration values. It is
  meant to be used by KPrefsDialog. The user is responsible for the layout
  management.
*/
class KDE_EXPORT KPrefsWidDuration : public KPrefsWid
{
  public:
    /**
      Create a duration value control element consisting of a label and a
      spinbox.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidDuration( TDEConfigSkeleton::ItemDateTime *item, TQWidget *parent );

    /**
      Return TQLabel used by this widget.
    */
    TQLabel *label();
    /**
      Return TQSpinBox used by this widget.
    */
    TQTimeEdit *timeEdit();

    void readConfig();
    void writeConfig();

  private:
    TDEConfigSkeleton::ItemDateTime *mItem;

    TQLabel *mLabel;
    TQTimeEdit *mTimeEdit;
};

/**
  @short Widgets for time settings in @ref KPrefsDialog.

  This class provides a control element for configuring date values. It is
  meant to be used by KPrefsDialog. The user is responsible for the layout
  management.
*/
class KDE_EXPORT KPrefsWidDate : public KPrefsWid
{
  public:
    /**
      Create a time value control element consisting of a label and a date box.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidDate( TDEConfigSkeleton::ItemDateTime *item, TQWidget *parent );

    /**
      Return TQLabel used by this widget.
    */
    TQLabel *label();
    /**
      Return TQSpinBox used by this widget.
    */
    KDateEdit *dateEdit();

    void readConfig();
    void writeConfig();

  private:
    TDEConfigSkeleton::ItemDateTime *mItem;

    TQLabel *mLabel;
    KDateEdit *mDateEdit;
};

/**
  @short Widgets for color settings in @ref KPrefsDialog.

  This class provides a control element for configuring color values. It is
  meant to be used by KPrefsDialog. The user is responsible for the layout
  management.
*/
class KDE_EXPORT KPrefsWidColor : public KPrefsWid
{
    Q_OBJECT
  
  public:
    /**
      Create a color value control element consisting of a test field and a
      button for opening a color dialog.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidColor( TDEConfigSkeleton::ItemColor *item, TQWidget *parent );
    /**
      Destruct color setting widget.
    */
    ~KPrefsWidColor();

    /**
      Return TQLabel for the button
    */
    TQLabel *label();
    /**
      Return button opening the color dialog.
    */
    KColorButton *button();

    void readConfig();
    void writeConfig();

  private:
    TDEConfigSkeleton::ItemColor *mItem;

    TQLabel *mLabel;
    KColorButton *mButton;
};

/**
  @short Widgets for font settings in @ref KPrefsDialog.

  This class provides a control element for configuring font values. It is meant
  to be used by KPrefsDialog. The user is responsible for the layout management.
*/
class KDE_EXPORT KPrefsWidFont : public KPrefsWid
{
    Q_OBJECT
  
  public:
    /**
      Create a font value control element consisting of a test field and a
      button for opening a font dialog.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
      @param sampleText Sample text for previewing the selected font.
    */
    KPrefsWidFont( TDEConfigSkeleton::ItemFont *item,
                   TQWidget *parent, const TQString &sampleText );
    /**
      Destruct font setting widget.
    */
    ~KPrefsWidFont();

    /**
      Return TQLabel.
    */
    TQLabel *label();
    /**
      Return TQFrame used as preview field.
    */
    TQFrame *preview();
    /**
      Return button opening the font dialog.
    */
    TQPushButton *button();

    void readConfig();
    void writeConfig();

  protected slots:
    void selectFont();

  private:
    TDEConfigSkeleton::ItemFont *mItem;

    TQLabel *mLabel;
    TQLabel *mPreview;
    TQPushButton *mButton;
};

/**
  @short Widgets for settings represented by a group of radio buttons in
  @ref KPrefsDialog.

  This class provides a control element for configuring selections. It is meant
  to be used by KPrefsDialog. The user is responsible for the layout management.

  The setting is interpreted as an int value, corresponding to the position of
  the radio button. The position of the button is defined by the sequence of
  @ref addRadio() calls, starting with 0.
*/
class KDE_EXPORT KPrefsWidRadios : public KPrefsWid
{
  public:
    /**
      Create a control element for selection of an option. It consists of a box
      with several radio buttons.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidRadios( TDEConfigSkeleton::ItemEnum *item, TQWidget *parent );
    virtual ~KPrefsWidRadios();

    /**
      Add a radio button.

      @param text Text of the button.
      @param whatsThis What's This help for the button.
    */
    void addRadio( const TQString &text,
                   const TQString &whatsThis = TQString() );

    /**
      Return the box widget used by this widget.
    */
    TQButtonGroup *groupBox();

    void readConfig();
    void writeConfig();

    TQValueList<TQWidget *> widgets() const;

  private:
    TDEConfigSkeleton::ItemEnum *mItem;

    TQButtonGroup *mBox;
};

/**
  @short Widgets for settings represented by a combo box in
  @ref KPrefsDialog.

  This class provides a control element for configuring selections. It is meant
  to be used by KPrefsDialog. The user is responsible for the layout management.

  The setting is interpreted as an int value, corresponding to the index in 
  the combo box.
*/
class KDE_EXPORT KPrefsWidCombo : public KPrefsWid
{
  public:
    /**
      Create a control element for selection of an option. It consists of a
      combo box.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidCombo( TDEConfigSkeleton::ItemEnum *item, TQWidget *parent );
    virtual ~KPrefsWidCombo();

    void readConfig();
    void writeConfig();

    TQComboBox *comboBox();
    TQValueList<TQWidget *> widgets() const;

  private:
    TDEConfigSkeleton::ItemEnum *mItem;
    TQComboBox *mCombo;
};



/**
  @short Widgets for string settings in @ref KPrefsDialog.

  This class provides a control element for configuring string values. It is
  meant to be used by KPrefsDialog. The user is responsible for the layout
  management.
*/
class KDE_EXPORT KPrefsWidString : public KPrefsWid
{
  public:
    /**
      Create a string value control element consisting of a test label and a
      line edit.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
      @param echomode  Describes how a line edit should display its contents.
    */
    KPrefsWidString( TDEConfigSkeleton::ItemString *item, TQWidget *parent,
                     TQLineEdit::EchoMode echomode=TQLineEdit::Normal );
    /**
      Destructor.
    */
    virtual ~KPrefsWidString();

    /**
      Return TQLabel used by this widget.
    */
    TQLabel *label();
    /**
      Return TQLineEdit used by this widget.
    */
    TQLineEdit *lineEdit();

    void readConfig();
    void writeConfig();

    TQValueList<TQWidget *> widgets() const;

  private:
    TDEConfigSkeleton::ItemString *mItem;

    TQLabel *mLabel;
    TQLineEdit *mEdit;
};


/**
  @short Widgets for string settings in @ref KPrefsDialog.

  This class provides a control element for configuring string values. It is
  meant to be used by KPrefsDialog. The user is responsible for the layout
  management.
*/
class KDE_EXPORT KPrefsWidPath : public KPrefsWid
{
  public:
    /**
      Create a string value control element consisting of a test label and a
      line edit.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
      @param filter URLRequester filter
      @param mode  Describes how a line edit should display its contents.
    */
    KPrefsWidPath( TDEConfigSkeleton::ItemPath *item, TQWidget *parent,
                   const TQString &filter = TQString(), uint mode = KFile::File );
    /**
      Destructor.
    */
    virtual ~KPrefsWidPath();

    /**
      Return TQLabel used by this widget.
    */
    TQLabel *label();
    /**
      Return TQLineEdit used by this widget.
    */
    KURLRequester *urlRequester();

    void readConfig();
    void writeConfig();

    TQValueList<TQWidget *> widgets() const;

  private:
    TDEConfigSkeleton::ItemPath *mItem;

    TQLabel *mLabel;
    KURLRequester *mURLRequester;
};


/**
  @short Class for managing KPrefsWid objects.

  This class manages standard configuration widgets provided bz the KPrefsWid
  subclasses. It handles creation, loading, saving and default values in a
  transparent way. The user has to add the widgets by the corresponding addWid
  functions and KPrefsWidManager handles the rest automatically.
*/
class KDE_EXPORT KPrefsWidManager
{
  public:
    /**
      Create a KPrefsWidManager object for a KPrefs object.

      @param prefs  KPrefs object used to access te configuration.
    */
    KPrefsWidManager( TDEConfigSkeleton *prefs );
    /**
      Destructor.
    */
    virtual ~KPrefsWidManager();

    TDEConfigSkeleton *prefs() const { return mPrefs; }

    /**
      Register a custom KPrefsWid object.
    */
    virtual void addWid( KPrefsWid * );

    /**
      Register a @ref KPrefsWidBool object.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidBool *addWidBool( TDEConfigSkeleton::ItemBool *item,
                               TQWidget *parent );

    /**
      Register a @ref KPrefsWidInt object.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidInt *addWidInt( TDEConfigSkeleton::ItemInt *item,
                             TQWidget *parent );

    /**
      Register a @ref KPrefsWidDate object.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidDate *addWidDate( TDEConfigSkeleton::ItemDateTime *item,
                               TQWidget *parent );

    /**
      Register a @ref KPrefsWidTime object.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidTime *addWidTime( TDEConfigSkeleton::ItemDateTime *item,
                               TQWidget *parent );

    /**
      Register a @ref KPrefsWidDuration object.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidDuration *addWidDuration( TDEConfigSkeleton::ItemDateTime *item,
                                       TQWidget *parent );

    /**
      Register a @ref KPrefsWidColor object.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidColor *addWidColor( TDEConfigSkeleton::ItemColor *item,
                                 TQWidget *parent );

    /**
      Register a @ref KPrefsWidRadios object. The choices represented by the
      given item object are automatically added as radio buttons.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidRadios *addWidRadios( TDEConfigSkeleton::ItemEnum *item,
                                   TQWidget *parent );

    /**
      Register a @ref KPrefsWidCombo object. The choices represented by the
      given item object are automatically added to the combo box.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidCombo *addWidCombo( TDEConfigSkeleton::ItemEnum *item,
                                   TQWidget *parent );

    /**
      Register a @ref KPrefsWidString object.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidString *addWidString( TDEConfigSkeleton::ItemString *item,
                                   TQWidget *parent );

    /**
      Register a path @ref KPrefsWidPath object.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
      @param filter URLRequester filter
      @param mode URLRequester mode
    */
    KPrefsWidPath *addWidPath ( TDEConfigSkeleton::ItemPath *item, TQWidget *parent,
                                const TQString &filter = TQString(),
                                uint mode = KFile::File );

    /**
      Register a password @ref KPrefsWidString object, with echomode set to TQLineEdit::Password.

      @param item    The TDEConfigSkeletonItem representing the preferences entry.
      @param parent  Parent widget.
    */
    KPrefsWidString *addWidPassword ( TDEConfigSkeleton::ItemString *item,
                                      TQWidget *parent );

    /**
      Register a @ref KPrefsWidFont object.

      @param item       The TDEConfigSkeletonItem representing the preferences
                        entry.
      @param parent     Parent widget.
      @param sampleText Sample text for previewing the selected font.
    */
    KPrefsWidFont *addWidFont( TDEConfigSkeleton::ItemFont *item,
                               TQWidget *parent, const TQString &sampleText );

    /** Set all widgets to default values. */
    void setWidDefaults();

    /** Read preferences from config file. */
    void readWidConfig();

    /** Write preferences to config file. */
    void writeWidConfig();

  private:
    TDEConfigSkeleton *mPrefs;

    TQPtrList<KPrefsWid> mPrefsWids;
};


/**
  @short Base class for a preferences dialog.

  This class provides the framework for a preferences dialog. You have to
  subclass it and add the code to create the actual configuration widgets and
  do the layout management.

  KPrefsDialog provides functions to add subclasses of @ref KPrefsWid via
  KPrefsWidManager. For these widgets the reading, writing and setting to
  default values is handled automatically. Custom widgets have to be handled in
  the functions @ref usrReadConfig() and @ref usrWriteConfig().
*/
class KDE_EXPORT KPrefsDialog : public KDialogBase, public KPrefsWidManager
{
    Q_OBJECT
  
  public:
    /**
      Create a KPrefsDialog for a KPrefs object.

      @param prefs  KPrefs object used to access te configuration.
      @param parent Parent widget.
      @param name   Widget name.
      @param modal  true, if dialog has to be modal, false for non-modal.
    */
    KPrefsDialog( TDEConfigSkeleton *prefs, TQWidget *parent = 0, char *name = 0,
                  bool modal = false );
    /**
      Destructor.
    */
    virtual ~KPrefsDialog();

    void autoCreate();

  public slots:
    /** Set all widgets to default values. */
    void setDefaults();

    /** Read preferences from config file. */
    void readConfig();

    /** Write preferences to config file. */
    void writeConfig();

  signals:
    /** Emitted when the a changed configuration has been stored. */
    void configChanged();

  protected slots:
    /** Apply changes to preferences */
    void slotApply();

    /** Accept changes to preferences and close dialog */
    void slotOk();

    /** Set preferences to default values */
    void slotDefault();

  protected:
    /** Implement this to read custom configuration widgets. */
    virtual void usrReadConfig() {}
    /** Implement this to write custom configuration widgets. */
    virtual void usrWriteConfig() {}
};


class KDE_EXPORT KPrefsModule : public TDECModule, public KPrefsWidManager
{
    Q_OBJECT
  
  public:
    KPrefsModule( TDEConfigSkeleton *, TQWidget *parent = 0, const char *name = 0 );

    virtual void addWid( KPrefsWid * );

    void load();
    void save();
    void defaults();

  protected slots:
    void slotWidChanged();

  protected:
    /** Implement this to read custom configuration widgets. */
    virtual void usrReadConfig() {}
    /** Implement this to write custom configuration widgets. */
    virtual void usrWriteConfig() {}
};

#endif