demos: set style with defines
To avoid having to modify the demo code, conditionnally include a predefined style
This commit is contained in:
parent
96eca2ecc3
commit
fc5ce1c495
|
@ -115,10 +115,17 @@ int main(void)
|
|||
ctx = nk_allegro5_init(font, display, WINDOW_WIDTH, WINDOW_HEIGHT);
|
||||
|
||||
/* style.c */
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef INCLUDE_STYLE
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
while(1)
|
||||
{
|
||||
|
|
|
@ -210,10 +210,15 @@ int main(void)
|
|||
|
||||
/* style.c */
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
bg.r = 0.10f, bg.g = 0.18f, bg.b = 0.24f, bg.a = 1.0f;
|
||||
|
|
|
@ -302,10 +302,15 @@ int main(void)
|
|||
|
||||
/* style.c */
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
bg.r = 0.10f, bg.g = 0.18f, bg.b = 0.24f, bg.a = 1.0f;
|
||||
|
|
|
@ -216,10 +216,15 @@ int main(void)
|
|||
|
||||
/* style.c */
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
bg.r = 0.10f, bg.g = 0.18f, bg.b = 0.24f, bg.a = 1.0f;
|
||||
|
|
|
@ -115,10 +115,15 @@ int main(void)
|
|||
|
||||
/* style.c */
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
while (running)
|
||||
|
|
|
@ -111,10 +111,15 @@ int main(void)
|
|||
|
||||
/* style.c */
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
while (running)
|
||||
|
|
|
@ -121,10 +121,15 @@ int main(void)
|
|||
/*nk_style_set_font(ctx, &droid->handle);*/}
|
||||
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
bg.r = 0.10f, bg.g = 0.18f, bg.b = 0.24f, bg.a = 1.0f;
|
||||
|
|
|
@ -126,10 +126,15 @@ int main(void)
|
|||
/*nk_style_set_font(ctx, &droid->handle);*/}
|
||||
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
bg.r = 0.10f, bg.g = 0.18f, bg.b = 0.24f, bg.a = 1.0f;
|
||||
|
|
|
@ -126,10 +126,15 @@ int main(void)
|
|||
/*nk_style_set_font(ctx, &droid->handle);*/}
|
||||
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* Create bindless texture.
|
||||
|
|
|
@ -117,10 +117,15 @@ main(int argc, char *argv[])
|
|||
/*nk_style_set_font(ctx, &roboto->handle)*/;}
|
||||
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
bg.r = 0.10f, bg.g = 0.18f, bg.b = 0.24f, bg.a = 1.0f;
|
||||
|
|
|
@ -128,10 +128,15 @@ int main(int argc, char *argv[])
|
|||
|
||||
/* style.c */
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
bg.r = 0.10f, bg.g = 0.18f, bg.b = 0.24f, bg.a = 1.0f;
|
||||
|
|
|
@ -209,10 +209,15 @@ int main(int argc, char* argv[])
|
|||
/*nk_style_set_font(ctx, &roboto->handle)*/;}
|
||||
|
||||
/* style.c */
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
|
||||
#if defined(__EMSCRIPTEN__)
|
||||
#include <emscripten.h>
|
||||
|
|
|
@ -155,10 +155,15 @@ main(int argc, char *argv[])
|
|||
}
|
||||
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
bg.r = 0.10f, bg.g = 0.18f, bg.b = 0.24f, bg.a = 1.0f;
|
||||
|
|
|
@ -98,10 +98,15 @@ int main(void)
|
|||
|
||||
/* style.c */
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
struct nk_colorf bg;
|
||||
|
|
|
@ -104,10 +104,15 @@ int main(void)
|
|||
|
||||
/* style.c */
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
struct nk_colorf bg;
|
||||
|
|
|
@ -153,10 +153,15 @@ main(void)
|
|||
ctx = nk_xlib_init(xw.font, xw.dpy, xw.screen, xw.win, xw.width, xw.height);
|
||||
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
while (running)
|
||||
|
|
|
@ -257,10 +257,15 @@ int main(void)
|
|||
/*nk_style_set_font(ctx, &droid->handle);*/}
|
||||
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
bg.r = 0.10f, bg.g = 0.18f, bg.b = 0.24f, bg.a = 1.0f;
|
||||
|
|
|
@ -254,10 +254,15 @@ int main(void)
|
|||
/*nk_style_set_font(ctx, &droid->handle);*/}
|
||||
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
bg.r = 0.10f, bg.g = 0.18f, bg.b = 0.24f, bg.a = 1.0f;
|
||||
|
|
|
@ -194,10 +194,15 @@ main(void)
|
|||
if (!rawfb) running = 0;
|
||||
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(&rawfb->ctx, THEME_WHITE);*/
|
||||
/*set_style(&rawfb->ctx, THEME_RED);*/
|
||||
/*set_style(&rawfb->ctx, THEME_BLUE);*/
|
||||
/*set_style(&rawfb->ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(&rawfb->ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(&rawfb->ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(&rawfb->ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(&rawfb->ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
while (running) {
|
||||
|
|
|
@ -157,10 +157,15 @@ main(void)
|
|||
xw.width, xw.height);
|
||||
|
||||
#ifdef INCLUDE_STYLE
|
||||
/*set_style(ctx, THEME_WHITE);*/
|
||||
/*set_style(ctx, THEME_RED);*/
|
||||
/*set_style(ctx, THEME_BLUE);*/
|
||||
/*set_style(ctx, THEME_DARK);*/
|
||||
#ifdef STYLE_WHITE
|
||||
set_style(ctx, THEME_WHITE);
|
||||
#elif defined(STYLE_RED)
|
||||
set_style(ctx, THEME_RED);
|
||||
#elif defined(STYLE_BLUE)
|
||||
set_style(ctx, THEME_BLUE);
|
||||
#elif defined(STYLE_DARK)
|
||||
set_style(ctx, THEME_DARK);
|
||||
#endif
|
||||
#endif
|
||||
|
||||
while (running)
|
||||
|
|
Loading…
Reference in New Issue