##// END OF EJS Templates
Added lost SocExplorerPlot wrapper and win32 libelf binary.
Added lost SocExplorerPlot wrapper and win32 libelf binary.

File last commit:

r0:1aa783210b8e default
r7:1abdb58baffd default
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 */