diff options
author | Steve Slaven <bpk@hoopajoo.net> | 2011-01-10 17:51:23 (GMT) |
---|---|---|
committer | Steve Slaven <bpk@hoopajoo.net> | 2011-01-10 17:51:23 (GMT) |
commit | f2cf3a0fdee3cb6e4df33a661fadcc0f17d983b7 (patch) | |
tree | 4be3ed4da786be936e76429f764b8b895eb209ef /src | |
parent | 3ff2145d884799c8556c058bd6b8eb4a7afde7c5 (diff) | |
download | SoftKeys-f2cf3a0fdee3cb6e4df33a661fadcc0f17d983b7.zip SoftKeys-f2cf3a0fdee3cb6e4df33a661fadcc0f17d983b7.tar.gz SoftKeys-f2cf3a0fdee3cb6e4df33a661fadcc0f17d983b7.tar.bz2 |
Pull out some customization stuff to allow application to other windows
Diffstat (limited to 'src')
-rw-r--r-- | src/net/hoopajoo/android/SoftKeys/Generator.java | 144 |
1 files changed, 82 insertions, 62 deletions
diff --git a/src/net/hoopajoo/android/SoftKeys/Generator.java b/src/net/hoopajoo/android/SoftKeys/Generator.java index 274dc00..99ea772 100644 --- a/src/net/hoopajoo/android/SoftKeys/Generator.java +++ b/src/net/hoopajoo/android/SoftKeys/Generator.java @@ -41,20 +41,30 @@ public class Generator { return( (int) resources.getDimension( android.R.dimen.app_icon_size ) ); } - public static View createButtonContainer( Context c, int iconSize, float iconScale, String prefix, ViewGroup root ) { - return createButtonContainer( c, iconSize, iconScale, prefix, root, null ); - } - - // this assembles a generic button_container that can be inserted into whatever layout - public static View createButtonContainer( Context c, int iconSize, float iconScale, String prefix, ViewGroup root, int[] buttons ) { - SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences( c ); - Theme theme = new Theme( c, settings.getString( "theme", null ) ); + public static int scaledIconSize( Context c, int iconSize, float iconScale ) { if( iconSize == 0 ) { // default icon size iconSize = defaultIconSize( c ); } iconSize = (int)(iconSize * iconScale); + return( iconSize ); + } + + public static Theme currentTheme( Context c ) { + SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences( c ); + Theme theme = new Theme( c, settings.getString( "theme", null ) ); + return( theme ); + } + + public static View createButtonContainer( Context c, int iconSize, float iconScale, String prefix, ViewGroup root ) { + return createButtonContainer( c, iconSize, iconScale, prefix, root, null ); + } + + // this assembles a generic button_container that can be inserted into whatever layout + public static View createButtonContainer( Context c, int iconSize, float iconScale, String prefix, ViewGroup root, int[] buttons ) { + Theme theme = currentTheme( c ); + iconSize = scaledIconSize( c, iconSize, iconScale ); // we start with some kind of viewgroup (linearlayout,etc) ViewGroup orig_container = (ViewGroup)theme.inflateLayout( c, @@ -84,24 +94,7 @@ public class Generator { } container.setId( R.id.button_container ); - Drawable d = theme.getDrawable( - new String[] { prefix + "_button_container_background", - "button_container_background" } - ); - - if( d != null ) { - // resize? - if( theme.getBoolean( new String[] { prefix + "_resize_background", "resize_background" } ) ) { - d = resizeImage( d, 0, iconSize ); - } - - applyTiling( d, theme.getString( new String[] { - prefix + "_tile_background", - "tile_background" - } ) ); - - container.setBackgroundDrawable( d ); - } + applyContainerExtras( container, prefix, theme, iconSize ); // now we add the buttons if( buttons == null ) { @@ -165,43 +158,9 @@ public class Generator { } b.setId( i ); - - // Add our images at the size we want - d = b.getDrawable(); - - if( d == null ) { - d = theme.getDrawable( - new String[] { prefix + "_button_" + name, - prefix + "_button", "button_" + name, "button" } - ); - } - b.setImageDrawable( resizeImage( d, iconSize, iconSize ) ); - - // add bg if not set and one is specified in the theme - d = theme.getDrawable( - new String[] { prefix + "_button_background_" + name, - prefix + "_button_background", "button_background_" + name, - "button_background" } - ); - - if( d != null ) { - if( theme.getBoolean( new String[] { - prefix + "_resize_button_background_" + name, - prefix + "_resize_button_background", - "resize_button_background_" + name, - "resize_button_background" } ) ) { - d = resizeImage( d, 0, iconSize ); - } - applyTiling( d, theme.getString( new String[] { - prefix + "_tile_button_background_" + name, - prefix + "_tile_button_background", - "tile_button_background_" + name, - "tile_button_background" - } ) ); - - b.setBackgroundDrawable( d ); - } + applyButtonExtras( b, prefix, name, theme, iconSize ); + container.addView( orig_b ); } @@ -313,5 +272,66 @@ public class Generator { bm.setTileModeXY( tms[ 0 ], tms[ 1 ] ); } } + + public static void applyContainerExtras( View container, String prefix, Theme theme, int iconSize ) { + Drawable d = theme.getDrawable( + new String[] { prefix + "_button_container_background", + "button_container_background" } + ); + + if( d != null ) { + // resize? + if( theme.getBoolean( new String[] { prefix + "_resize_background", "resize_background" } ) ) { + d = resizeImage( d, 0, iconSize ); + } + + applyTiling( d, theme.getString( new String[] { + prefix + "_tile_background", + "tile_background" + } ) ); + + container.setBackgroundDrawable( d ); + } + } + + public static void applyButtonExtras( ImageButton b, String prefix, String name, + Theme theme, int iconSize ) { + // Add our images at the size we want + Drawable d = b.getDrawable(); + + if( d == null ) { + d = theme.getDrawable( + new String[] { prefix + "_button_" + name, + prefix + "_button", "button_" + name, "button" } + ); + } + b.setImageDrawable( resizeImage( d, iconSize, iconSize ) ); + + // add bg if not set and one is specified in the theme + d = theme.getDrawable( + new String[] { prefix + "_button_background_" + name, + prefix + "_button_background", "button_background_" + name, + "button_background" } + ); + + if( d != null ) { + if( theme.getBoolean( new String[] { + prefix + "_resize_button_background_" + name, + prefix + "_resize_button_background", + "resize_button_background_" + name, + "resize_button_background" } ) ) { + d = resizeImage( d, 0, iconSize ); + } + + applyTiling( d, theme.getString( new String[] { + prefix + "_tile_button_background_" + name, + prefix + "_tile_button_background", + "tile_button_background_" + name, + "tile_button_background" + } ) ); + + b.setBackgroundDrawable( d ); + } + } }
\ No newline at end of file |