⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 loginscreen.h

📁 a mobile application for brew plateforms for sharing photos among different users globally.
💻 H
字号:
#ifndef __LOGINSCREEN__H_
#define __LOGINSCREEN__H_
#include "AEEModGen.h"
#include "AEEShell.h"
#include "AEEAppGen.h"
#include "AEEStdLib.h"
#include "AEERootForm.h"
#include "AEEForm.h"
#include "AEEWidget.h"
#include "AEEStaticWidget.h"
#include "AEETextWidget.h"
#include "AEEImageWidget.h"

//including class id's of the extension
#include "bid\AEECLSID_ROOTFORM.bid"
#include "bid\AEECLSID_FORM.bid"
#include "bid\AEECLSID_STATICWIDGET.bid"
#include "bid\AEECLSID_TEXTWIDGET.bid"
#include "bid\AEECLSID_XYCONTAINER.bid"
#include "bid\AEECLSID_IMAGEWIDGET.bid"

#include "sendphotomobileapp.brh"

#define RGB_BACKCOLOR MAKE_RGBA(166,166,255,255)
#define RGB_FORECOLOR MAKE_RGBA(255,255,255,255)
#define RGB_ITEMBACKCOLOR MAKE_RGBA(255,255,206,255)
#define RGB_BORDERCOLOR MAKE_RGBA(128,0,0,255)
#define RGB_SELECTEDCOLOR MAKE_RGBA(202,202,255,255)
#define RGB_SELBORDERCOLOR MAKE_RGBA(0,0,255,255)

#define RES_FILE "sendphotomobileapp.bar"


typedef struct _loginscreen
{
	IShell *pIShell;
	IDisplay *pIDisplay;
	AEEDeviceInfo DeviceInfo;
	IRootForm *pIRootForm;
	IForm *pIForm;
	HandlerDesc loginHandler;
	IWidget *pIWUserName;
	IWidget *pIWPassword;
	IWidget *pIWBack;
	IXYContainer *pIXYContainer;
}loginscreen;

extern void spm_loginformInit(IRootForm *pIRootForm,IShell *pIShell,IDisplay *pIDisplay);
extern void spm_createLoginForm(loginscreen *pMe);
extern boolean spm_loginEventHandler(loginscreen *pMe,AEEEvent eCode,uint16 wParam,uint32 dwParam);
extern void spm_connectingAnimation(loginscreen *pMe);
extern void spm_callingServerResponse(loginscreen *pMe);
extern void spm_cleanupLoginForm();
#endif


	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -