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.
25 lines
498 B
25 lines
498 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(); |
|
|
|
virtual QSize sizeHint() const; |
|
|
|
protected: |
|
virtual void resizeEvent( QResizeEvent *e ); |
|
virtual void showEvent( QShowEvent *e ); |
|
|
|
private: |
|
int mVisibleItem; |
|
}; |
|
|
|
#endif // configuredialoglistview_h
|
|
|