00001 #ifndef BASICPANEL_HPP 00002 #define BASICPANEL_HPP 00003 00004 #include "CamPanel.h" 00005 00006 class CBasicPanel: public CCamPanel 00007 { 00008 Q_OBJECT 00009 public: 00010 CBasicPanel(const char *panel_name, const char *desc, int panel_type, QWidget *parent = 0, const char *name = 0); 00011 ~CBasicPanel(); 00012 00013 void SetImage(int n, const QImage &new_image, bool deep = FALSE); 00014 00015 public slots: 00016 virtual void SetSize(const QSize &ns); 00017 }; 00018 00019 #endif