mirror of
https://github.com/geode-sdk/geode.git
synced 2025-02-17 00:30:26 -05:00
more stuff
This commit is contained in:
parent
a6e1f170fd
commit
983e640fde
2 changed files with 27 additions and 3 deletions
|
@ -5555,9 +5555,27 @@ class UploadPopupDelegate {
|
||||||
class UserInfoDelegate {}
|
class UserInfoDelegate {}
|
||||||
|
|
||||||
class VideoOptionsLayer : FLAlertLayer {
|
class VideoOptionsLayer : FLAlertLayer {
|
||||||
PAD = win 0x18;
|
VideoOptionsLayer* create() = win 0x1e0d70;
|
||||||
|
bool init() = win 0x1e0e10;
|
||||||
|
void onAdvanced(cocos2d::CCObject*) = win 0x1e1b40;
|
||||||
|
void onFullscreen(cocos2d::CCObject*) = win 0x1e1b60;
|
||||||
|
void onTextureQualityNext(cocos2d::CCObject*) = win 0x1e1b80;
|
||||||
|
void onTextureQualityPrev(cocos2d::CCObject*) = win 0x1e1b90;
|
||||||
|
void updateTextureQuality(int index) = win 0x1e1ba0;
|
||||||
|
void onResolutionPrev(cocos2d::CCObject*) = win 0x1e1c40;
|
||||||
|
void onResolutionNext(cocos2d::CCObject*) = win 0x1e1c50;
|
||||||
|
void updateResolution(int index) = win 0x1e1c60;
|
||||||
|
void toggleResolution() = win 0x1e1d90;
|
||||||
|
void onApply(cocos2d::CCObject*) = win 0x1e1e70;
|
||||||
|
|
||||||
|
CCMenuItemSpriteExtra* m_prevResolution;
|
||||||
|
CCMenuItemSpriteExtra* m_nextResolution;
|
||||||
|
cocos2d::CCLabelBMFont* m_resolutionLabel;
|
||||||
|
cocos2d::CCLabelBMFont* m_resolutionText;
|
||||||
|
cocos2d::CCLabelBMFont* m_qualityLabel;
|
||||||
|
cocos2d::TextureQuality m_quality;
|
||||||
cocos2d::CCArray* m_resolutions;
|
cocos2d::CCArray* m_resolutions;
|
||||||
PAD = win 0x4;
|
bool m_isFullscreen;
|
||||||
int m_currentResolution;
|
int m_currentResolution;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -153,7 +153,13 @@ protected:
|
||||||
RT_ADD(
|
RT_ADD(
|
||||||
GLFWwindow* m_pMainWindow;
|
GLFWwindow* m_pMainWindow;
|
||||||
GLFWmonitor* m_pPrimaryMonitor;
|
GLFWmonitor* m_pPrimaryMonitor;
|
||||||
CCSize m_obWindowedSize;
|
)
|
||||||
|
public:
|
||||||
|
RT_ADD(
|
||||||
|
CC_SYNTHESIZE_NV(CCSize, m_obWindowedSize, WindowedSize);
|
||||||
|
)
|
||||||
|
protected:
|
||||||
|
RT_ADD(
|
||||||
float m_fMouseX;
|
float m_fMouseX;
|
||||||
float m_fMouseY;
|
float m_fMouseY;
|
||||||
bool m_bIsFullscreen;
|
bool m_bIsFullscreen;
|
||||||
|
|
Loading…
Reference in a new issue