X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fui%2Fapp_list%2Fapp_list_constants.cc;h=d762801f69359af5ac49c1619c35f0db7abd0b14;hb=4a1a0bdd01eef90b0826a0e761d3379d3715c10f;hp=46ce92e959d7718dca36363b710d0905b61f837c;hpb=b1be5ca53587d23e7aeb77b26861fdc0a181ffd8;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/ui/app_list/app_list_constants.cc b/src/ui/app_list/app_list_constants.cc index 46ce92e..d762801 100644 --- a/src/ui/app_list/app_list_constants.cc +++ b/src/ui/app_list/app_list_constants.cc @@ -14,7 +14,6 @@ const SkColor kBottomSeparatorColor = SkColorSetRGB(0xE5, 0xE5, 0xE5); // The color of the separator used inside dialogs in the app list. const SkColor kDialogSeparatorColor = SkColorSetRGB(0xD1, 0xD1, 0xD1); -const SkColor kDialogSubtitleColor = SkColorSetRGB(0x77, 0x77, 0x77); // 6% black over kContentsBackgroundColor const SkColor kHighlightedColor = SkColorSetRGB(0xE6, 0xE6, 0xE6); @@ -65,7 +64,11 @@ const gfx::Tween::Type kFolderFadeOutTweenType = gfx::Tween::FAST_OUT_LINEAR_IN; // Preferred number of columns and rows in apps grid. const int kPreferredCols = 4; const int kPreferredRows = 4; -const int kPreferredIconDimension = 48; +const int kGridIconDimension = 48; + +// Preferred search result icon sizes. +const int kListIconSize = 32; +const int kTileIconSize = 48; // Preferred number of columns and rows in the experimental app list apps grid. const int kExperimentalPreferredCols = 6; @@ -74,6 +77,10 @@ const int kExperimentalPreferredRows = 3; // Radius of the circle, in which if entered, show re-order preview. const int kReorderDroppingCircleRadius = 35; +// Height of separator between the main view and contents switcher and of +// the launcher page indicator. +const int kContentsSwitcherSeparatorHeight = 1; + // Max items allowed in a folder. size_t kMaxFolderItems = 16;