00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef LISTVIEWSETTINGS_H
00022 #define LISTVIEWSETTINGS_H
00023
00024 #include <kdialogbase.h>
00025
00026 #include <tqstring.h>
00027 #include <tqcolor.h>
00028
00029 class ListViewSettingsWidget;
00030
00031 class ListViewSettings : public KDialogBase
00032 {
00033 Q_OBJECT
00034
00035 public:
00036
00037 ListViewSettings( TQWidget *parent=0, const char *name=0 );
00038
00039 TQString title() const;
00040 TQColor textColor() const;
00041 TQColor backgroundColor() const;
00042 TQColor gridColor() const;
00043
00044 void setTitle( const TQString & );
00045 void setTextColor( const TQColor & );
00046 void setBackgroundColor( const TQColor & );
00047 void setGridColor( const TQColor & );
00048
00049 private:
00050
00051 ListViewSettingsWidget *m_settingsWidget;
00052 };
00053
00054 #endif // LISTVIEWSETTINGS_H
00055
00056
00057