ba19f3c1dd
git-svn-id: svn://localhost/gambas/trunk@893 867c0c6c-44f3-4631-809d-bfa615b0a4ec
89 lines
1.3 KiB
Text
89 lines
1.3 KiB
Text
' Gambas class file
|
|
|
|
EVENT Previous
|
|
EVENT {Next}
|
|
EVENT Cancel
|
|
|
|
PUBLIC SUB btnPrevious_Click()
|
|
|
|
RAISE Previous
|
|
|
|
END
|
|
|
|
PUBLIC SUB btnNext_Click()
|
|
|
|
RAISE {Next}
|
|
|
|
END
|
|
|
|
PUBLIC SUB btnCancel_Click()
|
|
|
|
RAISE Cancel
|
|
|
|
END
|
|
|
|
PUBLIC FUNCTION GetContainer() AS Container
|
|
|
|
RETURN panWizard
|
|
|
|
END
|
|
|
|
PUBLIC SUB SetTitle(sText AS String, hPict AS Picture)
|
|
|
|
DIM H AS Integer
|
|
|
|
lblTitle.Text = sText
|
|
picTitle.Picture = hPict
|
|
picTitle.Visible = hPict
|
|
|
|
H = lblTitle.Height
|
|
|
|
IF hPict THEN
|
|
H = Max(H, hPict.Height)
|
|
picTitle.Width = hPict.Width
|
|
ENDIF
|
|
|
|
H += panTitle.Padding * 2
|
|
panTitle.Height = H
|
|
|
|
END
|
|
|
|
PUBLIC SUB SetPosition(iPos AS Integer, bPrevious AS Boolean, bNext AS Boolean)
|
|
|
|
btnPrevious.Enabled = bPrevious
|
|
IF bNext THEN
|
|
btnNext.Text = ("&Next")
|
|
btnNext.Picture = Picture["icon:/small/forward"]
|
|
btnNext.Default = FALSE
|
|
ELSE
|
|
btnNext.Text = ("OK")
|
|
btnNext.Picture = NULL
|
|
btnNext.Default = TRUE
|
|
ENDIF
|
|
|
|
END
|
|
|
|
PUBLIC SUB SetShowTitle(bShow AS Boolean)
|
|
|
|
panTitle.Visible = bShow
|
|
|
|
END
|
|
|
|
PUBLIC SUB GetShowTitle() AS Boolean
|
|
|
|
RETURN panTitle.Visible
|
|
|
|
END
|
|
|
|
PUBLIC SUB SetBorder(bOn AS Boolean)
|
|
|
|
panWizard.Border = If(bOn, Border.Sunken, Border.None)
|
|
|
|
END
|
|
|
|
PUBLIC SUB GetBorder() AS Boolean
|
|
|
|
RETURN panWizard.Border <> Border.None
|
|
|
|
END
|
|
|