View Single Post
  #18  
Old 29th April 2009, 06:05 PM
MiToNiOeS MiToNiOeS is offline
Senior Member
 
Join Date: Jul 2008
Posts: 217
Default

Icons Settings: (icons.xml)
Example:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<root>
    <screen>
        <icon name="Phone" image="phone.png" exec="program1.exe" parameters="" type="0" execAlt="program2.exe" parametersAlt=""/>
    </screen>
    <screen>
        <icon name="SMS" image="sms.png" exec="\Windows\calendar.exe" parameters="tasks" type="5"/>
    </screen>
</root>
name: The icon name or text
image: image file (the image will be in \iPhoneToday\icons folder)
exec: Main executable
parameters: Parameters for main executable
execAlt: Alternative executable, run when we have notifications
parametersAlt: Parameters for alternative executable
Type: Type of icon (0:Normal, 1: Missed Calls, 2: Unread SMS, 3: Unread MMS, 4: Unread Email, 5: Calendar + Nexts Appointments, 6: Incompleted Tasks, 7: Calendar without notification bubble)

Options: (settings.xml)
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
Example for VGA:
<root>
    <iconWidth>90</iconWidth>
    <numIcons>4</numIcons>
    <moveThreshold>15</moveThreshold>
    <maxVelocitiy>240</maxVelocitiy>
    <minVelocitiy>10</minVelocitiy>
    <refreshTime>15</refreshTime>
    <screenHeigth>460</screenHeigth>
    <fontSize>7</fontSize>
    <fontBold>1</fontBold>
    <factorMov>4</factorMov>
    <Sunday>Sun</Sunday>
    <Monday>Mon</Monday>
    <Tuesday>Tue</Tuesday>
    <Wednesday>Wed</Wednesday>
    <Thursday>Thu</Thursday>
    <Friday>Fri</Friday>
    <Saturday>Sat</Saturday>
</root>
iconWidth: Width of icons in pixels
numIcons: Num icons for row
moveThreshold: Mix movement in pixels for init movement
maxVelocitiy: Range of velocity for animations
minVelocitiy: Range of velocity for animations
refreshTime: Refresh time for repaint in millisecons
screenHeigth: Heigth of screen for combine with other todays, 0 for all heigth screen
fontSize: Font size
fontBold: 0 For normal font and 1 for Bold font
factorMov: Factor of movement. 0 for real movement and other for to multiply your fingers movement (The formule is "FinalMovement = YourMovement * (1 + factorMov / 10)")
Sunday: Texts for days of week (For translations)
Monday: Texts for days of week (For translations)
Tuesday: Texts for days of week (For translations)
Wednesday: Texts for days of week (For translations)
Thursday: Texts for days of week (For translations)
Friday: Texts for days of week (For translations)
Saturday: Texts for days of week (For translations)
__________________
My contributions:
iPhoneToday - Fast iPhone interface clone
iContact & iDialer iPhone Skin VGA

I spend many hours on this projects, do you think I should be rewarded?:

Last edited by MiToNiOeS; 3rd May 2009 at 07:56 PM..
Reply With Quote