From 71b584680e4527283ccc4fa14169bc7d28d32344 Mon Sep 17 00:00:00 2001 From: Ivan Timofeev Date: Sat, 29 Sep 2012 20:03:12 +0400 Subject: fdo#52268: splash: change color and position of messages Change-Id: If6c607fc9f0be1f7a71eda8d555399451938c5fc Signed-off-by: Jan Holesovsky --- configure.in | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 11e20a033254..651963a95442 100644 --- a/configure.in +++ b/configure.in @@ -11310,6 +11310,28 @@ else fi AC_SUBST(PROGRESSFRAMECOLOR) +AC_MSG_CHECKING([for custom 'intro' progress text color]) +PROGRESSTEXTCOLOR= +if test -z "$with_intro_progressbar_text_color"; then + PROGRESSTEXTCOLOR="255,255,255" + AC_MSG_RESULT([none]) +else + PROGRESSTEXTCOLOR="$with_intro_progressbar_text_color" + AC_MSG_RESULT([$PROGRESSTEXTCOLOR]) +fi +AC_SUBST(PROGRESSTEXTCOLOR) + +AC_MSG_CHECKING([for custom 'intro' progress text baseline]) +PROGRESSTEXTBASELINE= +if test -z "$with_intro_progressbar_text_baseline"; then + PROGRESSTEXTBASELINE="287" + AC_MSG_RESULT([none]) +else + PROGRESSTEXTBASELINE="$with_intro_progressbar_text_baseline" + AC_MSG_RESULT([$PROGRESSTEXTBASELINE]) +fi +AC_SUBST(PROGRESSTEXTBASELINE) + AC_MSG_CHECKING([for alternative branding images directory]) INTRO_BITMAP= ABOUT_BACKGROUND_SVG= -- cgit v1.2.3 From 4256f704057d13c5a95461c4cf0a404ede551286 Mon Sep 17 00:00:00 2001 From: Jan Holesovsky Date: Tue, 2 Oct 2012 16:00:09 +0200 Subject: Help text for newly introduced switches. Change-Id: I3f148d0dd61adc7008fdf64d077818c22a0e7d09 Signed-off-by: Ivan Timofeev --- configure.in | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 651963a95442..f8623276d5b4 100644 --- a/configure.in +++ b/configure.in @@ -1822,6 +1822,20 @@ AC_ARG_WITH(intro-progressbar-frame-color, Usage: --with-intro-progressbar-frame-color=207,208,211 ],,) +AC_ARG_WITH(intro-progressbar-text-color, + AS_HELP_STRING([--with-intro-progressbar-text-color], + [Set color of progress bar text on intro screen. Comma separated RGB values in decimal format.]) + [ + Usage: --with-intro-progressbar-text-color=207,208,211 +],,) + +AC_ARG_WITH(intro-progressbar-text-baseline, + AS_HELP_STRING([--with-intro-progressbar-text-baseline], + [Set horizontal position of progress bar text on intro screen. Value in decimal format.]) + [ + Usage: --with-intro-progressbar-text-baseline=250 +],,) + AC_ARG_WITH(flat-logo-svg, [ --with-flat-logo-svg Allows specification of the flat Logo SVG. -- cgit v1.2.3 From 73331a70d43376666a48901742627fb80a45dec2 Mon Sep 17 00:00:00 2001 From: Ivan Timofeev Date: Tue, 2 Oct 2012 20:43:41 +0400 Subject: correct help string: horizontal -> vertical Change-Id: Id67da9d90a8fa21b99733c448fc32e81c6f1ab46 Signed-off-by: Jan Holesovsky --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index f8623276d5b4..b2ae53770743 100644 --- a/configure.in +++ b/configure.in @@ -1831,7 +1831,7 @@ AC_ARG_WITH(intro-progressbar-text-color, AC_ARG_WITH(intro-progressbar-text-baseline, AS_HELP_STRING([--with-intro-progressbar-text-baseline], - [Set horizontal position of progress bar text on intro screen. Value in decimal format.]) + [Set vertical position of progress bar text on intro screen. Value in decimal format.]) [ Usage: --with-intro-progressbar-text-baseline=250 ],,) -- cgit v1.2.3