47 lines
1.3 KiB
C
47 lines
1.3 KiB
C
/** @file
|
|
|
|
;******************************************************************************
|
|
;* Copyright (c) 2012 - 2021, Insyde Software Corp. All Rights Reserved.
|
|
;*
|
|
;* You may not reproduce, distribute, publish, display, perform, modify, adapt,
|
|
;* transmit, broadcast, present, recite, release, license or otherwise exploit
|
|
;* any part of this publication in any form, by any means, without the prior
|
|
;* written permission of Insyde Software Corporation.
|
|
;*
|
|
;******************************************************************************
|
|
*/
|
|
|
|
#ifndef _UI_CONTROLS_H
|
|
#define _UI_CONTROLS_H
|
|
|
|
#include <Protocol/H2OWindow.h>
|
|
#include <Guid/H2OCp.h>
|
|
#include <Library/H2OCpLib.h>
|
|
#include <Library/PcdLib.h>
|
|
#include <Library/H2ODisplayEngineLib.h>
|
|
|
|
#include "UiManager.h"
|
|
#include "UiRender.h"
|
|
|
|
#include "UiFuncs.h"
|
|
#include "UiControl.h"
|
|
#include "UiTexture.h"
|
|
#include "UiLabel.h"
|
|
#include "UiButton.h"
|
|
#include "UiEdit.h"
|
|
#include "UiFlexLayout.h"
|
|
#include "UiScrollBar.h"
|
|
#include "UiSwitch.h"
|
|
#include "UiVerticalLayout.h"
|
|
#include "UiHorizontalLayout.h"
|
|
#include "UiFrame.h"
|
|
#include "UiDialog.h"
|
|
#include "UiListView.h"
|
|
#include "UiNumberPicker.h"
|
|
#include "UiScrollView.h"
|
|
|
|
extern HBITMAP mDummyBitmap; //Dummy module variable used for klocwork misjudgement
|
|
|
|
#endif
|
|
|