| author | Peter Hosey |
| Fri May 22 19:33:14 2009 -0700 (2009-05-22) | |
| branch | transition-experiments |
| changeset 4221 | fee030c66025 |
| parent 2402 | ab55af458f8f |
| child 4246 | 4f52d1d98978 |
| permissions | -rw-r--r-- |
| boredzo@2402 | 1 |
#define GrowlSmokeLimitPref @"Smoke - Limit" |
| boredzo@2402 | 2 |
#define GrowlSmokeAlphaPref @"Smoke - Alpha" |
| boredzo@2402 | 3 |
#define GrowlSmokeFloatIconPref @"Smoke - Float Icon" |
| boredzo@2402 | 4 |
#define GrowlSmokeDurationPref @"Smoke - Duration" |
| boredzo@2402 | 5 |
#define GrowlSmokeScreenPref @"Smoke - Screen" |
| boredzo@2402 | 6 |
#define GrowlSmokeSizePref @"Smoke - Size" |
| boredzo@2402 | 7 |
|
| boredzo@2402 | 8 |
#define GrowlSmokeVeryLowColor @"Smoke-Priority-VeryLow-Color" |
| boredzo@2402 | 9 |
#define GrowlSmokeModerateColor @"Smoke-Priority-Moderate-Color" |
| boredzo@2402 | 10 |
#define GrowlSmokeNormalColor @"Smoke-Priority-Normal-Color" |
| boredzo@2402 | 11 |
#define GrowlSmokeHighColor @"Smoke-Priority-High-Color" |
| boredzo@2402 | 12 |
#define GrowlSmokeEmergencyColor @"Smoke-Priority-Emergency-Color" |
| boredzo@2402 | 13 |
|
| boredzo@2402 | 14 |
#define GrowlSmokeVeryLowTextColor @"Smoke-Priority-VeryLow-Text-Color" |
| boredzo@2402 | 15 |
#define GrowlSmokeModerateTextColor @"Smoke-Priority-Moderate-Text-Color" |
| boredzo@2402 | 16 |
#define GrowlSmokeNormalTextColor @"Smoke-Priority-Normal-Text-Color" |
| boredzo@2402 | 17 |
#define GrowlSmokeHighTextColor @"Smoke-Priority-High-Text-Color" |
| boredzo@2402 | 18 |
#define GrowlSmokeEmergencyTextColor @"Smoke-Priority-Emergency-Text-Color" |
| boredzo@2402 | 19 |
|
| boredzo@2402 | 20 |
#define GrowlSmokePrefDomain @"com.growl.SmokeNotificationView" |
| boredzo@2402 | 21 |
|
| boredzo@2402 | 22 |
// the default value for the opacity preference |
| boredzo@2402 | 23 |
#define GrowlSmokeAlphaPrefDefault 75.0f |
| boredzo@2402 | 24 |
// the default value for the duration preference |
| Peter@4221 | 25 |
#define GrowlSmokeDurationPrefDefault 5.0f |
| boredzo@2402 | 26 |
|
| boredzo@2402 | 27 |
#define GrowlSmokeSizeNormal 0 |
| boredzo@2402 | 28 |
#define GrowlSmokeSizeLarge 1 |
| boredzo@2402 | 29 |
|
| boredzo@2402 | 30 |
#define GrowlSmokeFloatIconPrefDefault NO |
| boredzo@2402 | 31 |
#define GrowlSmokeLimitPrefDefault NO |
| boredzo@2402 | 32 |
#define GrowlSmokeSizePrefDefault GrowlSmokeSizeNormal |
| boredzo@2402 | 33 |
|
| boredzo@2402 | 34 |
#define GrowlSmokeMaxLines 5 |
| boredzo@2402 | 35 |
|
| boredzo@2402 | 36 |
// the width of the notification view |
| boredzo@2402 | 37 |
#define GrowlSmokeNotificationWidth 300.0f |
| boredzo@2402 | 38 |
// the padding around the inside of the view |
| boredzo@2402 | 39 |
#define GrowlSmokePadding 10.0f |
| boredzo@2402 | 40 |
// the padding between the icon and the text |
| boredzo@2402 | 41 |
#define GrowlSmokeIconTextPadding 20.0f |
| boredzo@2402 | 42 |
// the padding between the icon and the progress bar |
| boredzo@2402 | 43 |
#define GrowlSmokeIconProgressPadding 5.0f |
| boredzo@2402 | 44 |
// the padding between the title and the description |
| boredzo@2402 | 45 |
#define GrowlSmokeTitleTextPadding 10.0f |
| boredzo@2402 | 46 |
// the size of the icon (it's square) |
| boredzo@2402 | 47 |
#define GrowlSmokeIconSize 32.0f |
| boredzo@2402 | 48 |
#define GrowlSmokeIconSizeLarge 48.0f |
| boredzo@2402 | 49 |
|
| boredzo@2402 | 50 |
// the size of the text used for the description |
| boredzo@2402 | 51 |
#define GrowlSmokeTextFontSize 12.0f |
| boredzo@2402 | 52 |
// the size of the text used for the title |
| boredzo@2402 | 53 |
#define GrowlSmokeTitleFontSize 13.0f |
| boredzo@2402 | 54 |
|
| boredzo@2402 | 55 |
// the radius of the rounded corners of the notification border |
| boredzo@2402 | 56 |
#define GrowlSmokeBorderRadius 9.0f |