View Single Post
sakya's Avatar
Posts: 533 | Thanked: 1,341 times | Joined on Dec 2010 @ Italy
#320
Originally Posted by don_falcone View Post
what i miss is if Alignment="center|bottom|top|left|right" / TextAlignment="center|bottom|top|left|right"and so on is vertical or horizontal.
Alignment is...alignment.
You can use it in position (obviously a top alignment in the x position doesn't make sense):
Code:
PosL="center;0"
means "center horizontally and y=0".

TextAlignment in Notification widget is used to set the position of the text relative to the image (top means "the text is at the top of the image", left means "the text is on the left of the image"...)

I've trouble doing proper placement of battery percentage
Battery percentage doesn't have an alignment setting: it's centered in the size of the widget.

Also i would like to have information about the bounding box rendering etc that is also related to this.
In a text widget you can set the size, alignment refers to this size (it's the same for the DateTime widget)
Code:
[SlideToUnlockText]
SizeL="300;64"
SizeP="300;64"
PosL="center;430"
PosP="center;750"
Text="Slide to unlock"
Font=";14;bold;0"
Alignment="center"
For example, the declaration of widget type and name is a bit unclean. I do not get the difference between Rect_Top and Rect_Bottom. It is simply a widget of type "Rect", and we declare the name in Widget\1\Name= like "Rect.Rect_Bottom", right?
Yes, as said in the config file:
Code:
#  Name is composed by WidgetType.WidgetName
#  The WidgetName must be unique.
If so, why is then 'Notification.MissedCalls 'not a similar type.name relation, but more like type.subtype?
It is, you can call the widget as you want: it's the Type setting that makes the widget display different informations, not the name:
Code:
Type="call"
 

The Following 3 Users Say Thank You to sakya For This Useful Post: