f275928af5
* NEW: Makes better configuration warning messages when detecting libintl and libiconv libraries. [DEVELOPMENT ENVIRONMENT] * NEW: The About dialog box was redesigned. The Hall Of Fame is now displayed with a cool animation. * NEW: The entire project was adapted to the new way of calculating Desktop.Scale. * NEW: When loading a Gambas 2 form, the form editor tries to adapt to the new way of calculating Desktop.Scale automatically. [COMPILER] * BUG: Adds many error messages when a compiler limit is reached: too many static symbols in a same class, too many dynamic symbols, too many functions, and so on. [GB.GTK] * NEW: Desktop.Scale is now half the font ascent, not half the font height. * NEW: Color.Medium() method was replaced by Color.Mix(), that takes a new optional argument indicating the relative weight of the second color. [GB.QT] * NEW: Desktop.Scale is now half the font ascent, not half the font height. * NEW: Color.Medium() method was replaced by Color.Mix(), that takes a new optional argument indicating the relative weight of the second color. [GB.QT.EXT] * BUG: Editor now correctly highlight its frame according to the focus change on styles that have use of that. git-svn-id: svn://localhost/gambas/trunk@1304 867c0c6c-44f3-4631-809d-bfa615b0a4ec
65 lines
1.5 KiB
Text
65 lines
1.5 KiB
Text
# Gambas Form File 3.0
|
|
|
|
{ Form Form
|
|
MoveScaled(0,0,60,50)
|
|
Text = ("")
|
|
Border = Window.Fixed
|
|
Arrangement = Arrange.Vertical
|
|
Spacing = 4
|
|
{ panToolbar HBox
|
|
MoveScaled(1,1,55,4)
|
|
{ btnReload ToolButton
|
|
MoveScaled(0,0,4,4)
|
|
ToolTip = ("Today")
|
|
Text = ("")
|
|
Picture = Picture["icon:/small/refresh"]
|
|
}
|
|
{ btnPrevYear ToolButton
|
|
MoveScaled(4,0,4,4)
|
|
ToolTip = ("Previous year")
|
|
Text = ("")
|
|
Picture = Picture["icon:/small/rewind"]
|
|
}
|
|
{ HBox2 HBox
|
|
MoveScaled(9,0,41,4)
|
|
Expand = True
|
|
Spacing = 8
|
|
{ btnPrevMonth ToolButton
|
|
MoveScaled(1,0,4,4)
|
|
ToolTip = ("Previous month")
|
|
Text = ("")
|
|
Picture = Picture["icon:/small/previous"]
|
|
}
|
|
{ cmbMonth ComboBox
|
|
MoveScaled(5,0,19,4)
|
|
Expand = True
|
|
Text = ("")
|
|
ReadOnly = True
|
|
}
|
|
{ txtYear SpinBox
|
|
MoveScaled(25,0,10,4)
|
|
MinValue = 1600
|
|
MaxValue = 9999
|
|
}
|
|
{ btnNextMonth ToolButton
|
|
MoveScaled(36,0,4,4)
|
|
ToolTip = ("Next month")
|
|
Text = ("")
|
|
Picture = Picture["icon:/small/next"]
|
|
}
|
|
}
|
|
{ btnNextYear ToolButton
|
|
MoveScaled(51,0,4,4)
|
|
ToolTip = ("Next year")
|
|
Text = ("")
|
|
Picture = Picture["icon:/small/forward"]
|
|
}
|
|
}
|
|
{ dwgMonth DrawingArea
|
|
MoveScaled(1,6,56,29)
|
|
Background = Color.TextBackground
|
|
Expand = True
|
|
Focus = True
|
|
Border = Border.Sunken
|
|
}
|
|
}
|