##// END OF EJS Templates
New Plugin Manager and interface to remove all the previous crap!...
New Plugin Manager and interface to remove all the previous crap! Let's use Qt plugin API and make it much simpler.

File last commit:

r0:1aa783210b8e default
r118:de85e8465e67 tip 1.0
Show More
PythonCompleterPopup.h
21 lines | 703 B | text/x-c | CLexer
#ifndef PYTHONCOMPLETERPOPUP_H
#define PYTHONCOMPLETERPOPUP_H
#include <QListView>
class PythonCompleterPopup : public QListView
{
Q_OBJECT
public:
explicit PythonCompleterPopup(QWidget *parent = 0);
signals:
void aboutToShow(); //!< emitted when the listview is shown
void aboutToHide(); //!< emitted when the listview is hidden
protected:
void showEvent(QShowEvent *e); //!< overwritten from base class to emit aboutToShow
void hideEvent(QHideEvent *e); //!< overwritten from base class to emit aboutToHide
};
#endif /* PYTHONCOMPLETERPOPUP_H */