koChangeCaseDia.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __KoChangeCaseDia__
00021 #define __KoChangeCaseDia__
00022
00023 #include <kdialogbase.h>
00024
00025 class QRadioButton;
00026 class QPushButton;
00027
00028 class KoChangeCaseDia : public KDialogBase
00029 {
00030 Q_OBJECT
00031 public:
00032 KoChangeCaseDia( QWidget *parent, const char *name );
00033 enum TypeOfCase { UpperCase =0, LowerCase=1, TitleCase=2, ToggleCase=3, SentenceCase=4};
00034 TypeOfCase getTypeOfCase();
00035
00036 protected:
00037 QRadioButton *m_upperCase;
00038 QRadioButton *m_titleCase;
00039 QRadioButton *m_lowerCase;
00040 QRadioButton *m_toggleCase;
00041 QRadioButton *m_sentenceCase;
00042
00043 };
00044
00045 #endif
This file is part of the documentation for lib Library Version 1.3.5.