You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
445 B

/* -*- mode: C++; c-file-style: "gnu" -*-
* kmail: KDE mail client
*/
#ifndef configuredialoglistview_h
#define configuredialoglistview_h
#include <QTreeWidget>
class ListView : public QTreeWidget {
Q_OBJECT
public:
explicit ListView( QWidget *parent=0 );
void resizeColums();
QSize sizeHint() const;
protected:
void resizeEvent( QResizeEvent *e );
void showEvent( QShowEvent *e );
};
#endif // configuredialoglistview_h