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 #include <koffice_export.h>
00025
00026 class QRadioButton;
00027 class QPushButton;
00028
00029 class KOTEXT_EXPORT KoChangeCaseDia : public KDialogBase
00030 {
00031 Q_OBJECT
00032 public:
00033 KoChangeCaseDia( QWidget *parent, const char *name );
00034 enum TypeOfCase { UpperCase =0, LowerCase=1, TitleCase=2, ToggleCase=3, SentenceCase=4};
00035 TypeOfCase getTypeOfCase();
00036
00037 protected:
00038 QRadioButton *m_upperCase;
00039 QRadioButton *m_titleCase;
00040 QRadioButton *m_lowerCase;
00041 QRadioButton *m_toggleCase;
00042 QRadioButton *m_sentenceCase;
00043
00044 };
00045
00046 #endif
This file is part of the documentation for lib Library Version 1.4.2.