diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2022-02-06 16:04:57 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2022-02-06 16:04:57 +0100 |
commit | 59dccf358523dfc7679d1d8c120452a71e42243c (patch) | |
tree | f0f3cc006e8157d6bd699bd644b7dd7b35387ac2 /app/bin/layout.h | |
parent | fd6639655b399a79fb72f494786a4f57da9c90e7 (diff) | |
parent | d0ca838c7ab297036b4a7c45351761a48fe05efd (diff) |
Merge branch 'feature/upstrem' into develop
Diffstat (limited to 'app/bin/layout.h')
-rw-r--r-- | app/bin/layout.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/app/bin/layout.h b/app/bin/layout.h index fcb5160..6e9496d 100644 --- a/app/bin/layout.h +++ b/app/bin/layout.h @@ -24,7 +24,6 @@ #define HAVE_LAYOUT_H #include "common.h" -#include "misc.h" void SetLayoutFullPath(const char *fileName); @@ -44,6 +43,8 @@ void SetLayoutBackGroundPos(coOrd pos); void SetLayoutBackGroundAngle(ANGLE_T angle); void SetLayoutBackGroundScreen(int screen); +int DoSettingsRead(int files, char ** fileName, void * data ); + char *GetLayoutFullPath(void); char *GetLayoutFilename(void); char *GetLayoutTitle(void); @@ -52,6 +53,7 @@ DIST_T GetLayoutMinTrackRadius(void); SCALEINX_T GetLayoutCurScale(void ); SCALEDESCINX_T GetLayoutCurScaleDesc(void); //GAUGEINX_T GetLayoutCurGauge(void); +void GetLayoutRoomSize(coOrd *roomSize); ANGLE_T GetLayoutMaxTrackGrade(void); SCALEDESCINX_T GetLayoutCurScaleDesc(void); @@ -61,10 +63,11 @@ coOrd GetLayoutBackGroundPos(void); ANGLE_T GetLayoutBackGroundAngle(void); int GetLayoutBackGroundScreen(void); int GetLayoutBackGroundVisible(void); +bool HasBackGround(void); void LayoutBackGroundInit(BOOL_T clear); void LayoutBackGroundLoad(void); void LayoutBackGroundSave(void); -void BackgroundToggleShow(void); -void DoLayout(void * junk); +void BackgroundToggleShow(void * unused); +void DoLayout(void * unused); int LoadImageFile(int files,char ** fileName,void * data ); #endif |