From: <cod...@go...> - 2008-07-31 17:35:21
|
Author: M0E.lnx Date: Thu Jul 24 21:00:10 2008 New Revision: 75 Modified: branches/iVL/.lang/FMain.pot branches/iVL/FMain.class branches/iVL/FMain.form Log: - Added .backcolor = color.selectedbackground property to the top logo - Resized the back logo and extended its background all over the screen Modified: branches/iVL/.lang/FMain.pot ============================================================================== --- branches/iVL/.lang/FMain.pot (original) +++ branches/iVL/.lang/FMain.pot Thu Jul 24 21:00:10 2008 @@ -14,23 +14,19 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: FMain.class:247 +#: FMain.class:250 msgid "Process Overview" msgstr "" -#: FMain.class:261 -msgid "VectorLinux Install" -msgstr "" - -#: FMain.class:272 +#: FMain.class:273 msgid "Next" msgstr "" -#: FMain.class:278 +#: FMain.class:279 msgid "Back" msgstr "" -#: FMain.class:284 +#: FMain.class:285 msgid "Exit" msgstr "" Modified: branches/iVL/FMain.class ============================================================================== --- branches/iVL/FMain.class (original) +++ branches/iVL/FMain.class Thu Jul 24 21:00:10 2008 @@ -35,11 +35,11 @@ FrmSelISO.Reparent(ME.pnlWinHost) FrmSelISO.Width = pnlWinHost.Width FrmSelISO.Height = pnlWinHost.Height -iImg = Image.Load("images/installer.png").Stretch(600, 80) +iImg = Image.Load("images/installer.png").Stretch(400, 50) 'iImg.Resize(600, 80) PictureBox1.Resize(iImg.Width, iImg.Height) PictureBox1.Picture = iImg.Picture - +PictureBox1.Background = Color.SelectedBackground PictureBox1.Stretch = TRUE FrmSelISO.Show @@ -54,6 +54,7 @@ .btQuit.Text = "Exit Installation" .tvPlan["Prep0"].Selected = TRUE .tvPlan["Prep0"].Picture = MdlCore.sNowPic + .tlBanner.Height = .PictureBox1.Height END WITH 'ME.TreeView1.BackColor = Color.Transparent @@ -112,6 +113,8 @@ .btQuit.Move(.pnlWinHost.Left + (.pnlWinHost.Width / 2) - (.btQuit.Width / 2), .btback.top) '.PictureBox1.Move(Desktop.Width / 2 - (.PictureBox1.Width / 2), 4) .PictureBox1.Move(.ClientWidth / 2 - (.PictureBox1.Width / 2), 4) + .tlBanner.Height = .PictureBox1.Height + .tlBanner.top = .PictureBox1.Top END WITH END Modified: branches/iVL/FMain.form ============================================================================== --- branches/iVL/FMain.form (original) +++ branches/iVL/FMain.form Thu Jul 24 21:00:10 2008 @@ -13,29 +13,27 @@ } { tlBanner TextLabel MoveScaled(0,0,26,7) - Visible = False Font = Font["+6"] Background = Color.SelectedBackground Foreground = Color.SelectedForeground - Text = ("VectorLinux Install") + Text = ("") Alignment = Align.Center - Transparent = True } { pnlWinHost VBox MoveScaled(28,9,66,56) } { btnext Button - MoveScaled(49,67,8,3.1) + MoveScaled(49,67,8,3) Text = ("Next") Picture = Picture["icon:/16/right"] } { btback Button - MoveScaled(28,67,8,3.1) + MoveScaled(28,67,8,3) Text = ("Back") Picture = Picture["icon:/16/left"] } { btQuit Button - MoveScaled(38,67,11,3.1) + MoveScaled(38,67,11,3) Text = ("Exit") Picture = Picture["icon:/16/cancel"] } |