##// END OF EJS Templates
Added static plugin support...
Added static plugin support In case of fully static exe even plugins must be static to allow single file executable. Small fix, when using resources in app from library they must be initialized with Q_INIT_RESOURCE. Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>

File last commit:

r1140:342312d662e7
r1156:247dc18789c6
Show More
CatalogueEventsWidget.h
31 lines | 695 B | text/x-c | CLexer
/ gui / include / Catalogue / CatalogueEventsWidget.h
#ifndef SCIQLOP_CATALOGUEEVENTSWIDGET_H
#define SCIQLOP_CATALOGUEEVENTSWIDGET_H
#include <Common/spimpl.h>
#include <QWidget>
namespace Ui {
class CatalogueEventsWidget;
}
class CatalogueEventsWidget : public QWidget {
Q_OBJECT
signals:
void eventSelected(const QString &event);
public:
explicit CatalogueEventsWidget(QWidget *parent = 0);
virtual ~CatalogueEventsWidget();
public slots:
void populateWithCatalogue(const QString &catalogue);
private:
Ui::CatalogueEventsWidget *ui;
class CatalogueEventsWidgetPrivate;
spimpl::unique_impl_ptr<CatalogueEventsWidgetPrivate> impl;
};
#endif // SCIQLOP_CATALOGUEEVENTSWIDGET_H