##// END OF EJS Templates
QLop dataBase started, WIP.
QLop dataBase started, WIP.

File last commit:

r5:92e4585e8fab default
r12:ae7af17c2621 default
Show More
PythonCompleterPopup.h
21 lines | 703 B | text/x-c | CLexer
Added Python Console and some Wrappers....
r5 #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 */