build: trial version target
builds now app and trail target, lib_gui added, istrail function
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
#ifndef QT_REFRESH_VIEW_H
|
||||
#define QT_REFRESH_VIEW_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
#include "component/view/RefreshView.h"
|
||||
#include "qt/element/QtRefreshBar.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
|
||||
class QtRefreshView
|
||||
: public RefreshView
|
||||
{
|
||||
public:
|
||||
QtRefreshView(ViewLayout* viewLayout);
|
||||
~QtRefreshView();
|
||||
|
||||
// View implementation
|
||||
virtual void createWidgetWrapper();
|
||||
virtual void initView();
|
||||
virtual void refreshView();
|
||||
|
||||
// RefreshView implementation
|
||||
|
||||
private:
|
||||
void doRefreshView();
|
||||
|
||||
void setStyleSheet();
|
||||
|
||||
QtThreadedFunctor<> m_refreshViewFunctor;
|
||||
|
||||
QtRefreshBar* m_widget;
|
||||
};
|
||||
|
||||
# endif // QT_REFRESH_VIEW_H
|
||||
Reference in New Issue
Block a user