My Project
D:/source/c++/Programme/sally/sally/sallyAPI/WizardPanel.h
Go to the documentation of this file.
00001 
00002 
00003 
00004 
00005 
00006 
00007 
00008 
00009 
00010 
00011 
00012 
00013 
00014 
00015 
00016 
00017 
00018 
00019 
00020 
00021 
00022 
00023 
00024 
00025 
00026 
00027 
00028 #pragma once
00029 #include "Define.h"
00030 #include "AppBase.h"
00031 #include "GroupBox.h"
00032 #include "ImageBox.h"
00033 #include "Label.h"
00034 
00035 namespace SallyAPI
00036 {
00037         namespace GUI
00038         {
00047 
00048                 class DLL_API_SALLY CWizardPanel :
00049                         public SallyAPI::GUI::CAppBase
00050                 {
00051                 protected:
00052                         SallyAPI::GUI::CLabel*          m_pLabelHeader;
00053                         SallyAPI::GUI::CGroupBox*       m_pBackgroundGroup;
00054                         SallyAPI::GUI::CImageBox*       m_pImageLogo;
00055                 public:
00056                         CWizardPanel(SallyAPI::GUI::CGUIBaseObject* parent, int graphicId, const std::string& pluginPath);
00057                         virtual ~CWizardPanel();
00058 
00059                         virtual void LoadConfig();
00060                         virtual void SaveConfig();
00061 
00062                         virtual void SendMessageToParent(SallyAPI::GUI::CGUIBaseObject* reporter, int reporterId, int messageId, SallyAPI::GUI::SendMessage::CParameterBase* messageParameter = NULL);
00063 
00064                         void    SetParent(SallyAPI::GUI::CGUIBaseObject* parent);
00065                         bool    IsFirstStart();
00066                 };
00067         }
00068 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines