You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef CSV_WIDGET_COMPLETERPOPUP_HPP
|
|
#define CSV_WIDGET_COMPLETERPOPUP_HPP
|
|
|
|
#include <QListView>
|
|
|
|
namespace CSVWidget
|
|
{
|
|
class CompleterPopup : public QListView
|
|
{
|
|
public:
|
|
CompleterPopup(QWidget *parent = 0);
|
|
|
|
virtual int sizeHintForRow(int row) const;
|
|
};
|
|
}
|
|
|
|
#endif
|