##// END OF EJS Templates
Working snapshot.
Working snapshot.

File last commit:

r0:1aa783210b8e default
r5:483cfe27e044 Working snapshot default
Show More
PythonCompleterPopup.h
21 lines | 703 B | text/x-c | CLexer
/ src / NicePyConsole / PythonCompleterPopup.h
Jeandet Alexis
First init of SocExplorer Repository.
r0 #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 */