dong83615 / siphon

Automatically exported from code.google.com/p/siphon
0 stars 0 forks source link

Display carrier logo for gsm/cellular call #232

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
When the choice is given to user to call SIP or GSM/cellular.
Display the name of sip provider and for cellular calls displays the
carrier logo.

extract from google groups:
http://groups.google.com/group/siphon/browse_thread/thread/486c0e51dca5185f

From Bruce:
"Maybe a more intuitive solution would have been to load the GSM button
with
the current carrier logo being used in the status bar. This way if a
user was to
spot ( AT&T, VODAPHONE, T-MOBILE ) instead of ( GSM ) in the blue
button,
there would be no confusion what it was used for."

The ( CarrierName ) Key is here. Judging by the width of the STATUS
BAR it's probably a print of ("%4s")

[ Example 1 ]

iPhone $  plutil -v StatusBarImages "/private/var/mobile/Library/
Preferences/com.apple.carrier.plist"
2009-04-27 20:29:37.311 plutil[161:10b] (
       {
       AllowPrefixMatching = 0;
       CarrierName = "at&t";
       DefaultImage = "Default_CARRIER_ATT.png";
       FullScreenOpaqueImage = "FSO_CARRIER_ATT.png";
   },
       {
       AllowPrefixMatching = 0;
       CarrierName = cingular;
       DefaultImage = "Default_CARRIER_CINGULAR.png";
       FullScreenOpaqueImage = "FSO_CARRIER_CINGULAR.png";
   }
)

[ Example 2 ]

iPhone $  plutil -v StatusBarImages -v CarrierName "/private/var/
mobile/Library/Preferences/com.apple.carrier.plist"
2009-04-27 20:29:42.730 plutil[162:10b] AT&T

Original issue reported on code.google.com by samuelv0...@gmail.com on 12 May 2009 at 9:46