From: <cod...@go...> - 2008-07-17 15:12:38
|
Author: M0E.lnx Date: Thu Jul 17 08:11:43 2008 New Revision: 47 Modified: branches/iVL/.lang/FMain.pot branches/iVL/.lang/FrmLicense.pot branches/iVL/.lang/FrmPartScheme.pot branches/iVL/.lang/FrmPartSel.pot branches/iVL/.lang/FrmSelISO.pot branches/iVL/.lang/MdlCore.pot branches/iVL/.lang/MdlSetup.pot branches/iVL/FMain.class branches/iVL/FMain.form branches/iVL/FrmLicense.form branches/iVL/FrmPartScheme.form branches/iVL/FrmPartSel.form branches/iVL/FrmSelISO.form branches/iVL/MdlCore.module Log: fixed bug in the quit button position while resizing FMain Modified: branches/iVL/.lang/FMain.pot ============================================================================== --- branches/iVL/.lang/FMain.pot (original) +++ branches/iVL/.lang/FMain.pot Thu Jul 17 08:11:43 2008 @@ -1,4 +1,4 @@ -# /home/vluser/area-51/projects/new-inst/FMain.class +# /home/moises/area-51/projects/installer/FMain.class # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. @@ -14,23 +14,23 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: FMain.class:160 +#: FMain.class:151 msgid "Process Overview" msgstr "" -#: FMain.class:173 +#: FMain.class:164 msgid "Vector Linux Install" msgstr "" -#: FMain.class:183 +#: FMain.class:174 msgid "Next" msgstr "" -#: FMain.class:189 +#: FMain.class:180 msgid "Back" msgstr "" -#: FMain.class:195 +#: FMain.class:186 msgid "Exit" msgstr "" Modified: branches/iVL/.lang/FrmLicense.pot ============================================================================== --- branches/iVL/.lang/FrmLicense.pot (original) +++ branches/iVL/.lang/FrmLicense.pot Thu Jul 17 08:11:43 2008 @@ -1,4 +1,4 @@ -# /home/vluser/area-51/projects/new-inst/FrmLicense.class +# /home/moises/area-51/projects/installer/FrmLicense.class # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. Modified: branches/iVL/.lang/FrmPartScheme.pot ============================================================================== --- branches/iVL/.lang/FrmPartScheme.pot (original) +++ branches/iVL/.lang/FrmPartScheme.pot Thu Jul 17 08:11:43 2008 @@ -1,4 +1,4 @@ -# /home/vluser/area-51/projects/new-inst/FrmPartScheme.class +# /home/moises/area-51/projects/installer/FrmPartScheme.class # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. Modified: branches/iVL/.lang/FrmPartSel.pot ============================================================================== --- branches/iVL/.lang/FrmPartSel.pot (original) +++ branches/iVL/.lang/FrmPartSel.pot Thu Jul 17 08:11:43 2008 @@ -1,4 +1,4 @@ -# /home/vluser/area-51/projects/new-inst/FrmPartSel.class +# /home/moises/area-51/projects/installer/FrmPartSel.class # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. Modified: branches/iVL/.lang/FrmSelISO.pot ============================================================================== --- branches/iVL/.lang/FrmSelISO.pot (original) +++ branches/iVL/.lang/FrmSelISO.pot Thu Jul 17 08:11:43 2008 @@ -1,4 +1,4 @@ -# /home/vluser/area-51/projects/new-inst/FrmSelISO.class +# /home/moises/area-51/projects/installer/FrmSelISO.class # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. Modified: branches/iVL/.lang/MdlCore.pot ============================================================================== --- branches/iVL/.lang/MdlCore.pot (original) +++ branches/iVL/.lang/MdlCore.pot Thu Jul 17 08:11:43 2008 @@ -1,4 +1,4 @@ -# /home/vluser/area-51/projects/new-inst/MdlCore.module +# /home/moises/area-51/projects/installer/MdlCore.module # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. Modified: branches/iVL/.lang/MdlSetup.pot ============================================================================== --- branches/iVL/.lang/MdlSetup.pot (original) +++ branches/iVL/.lang/MdlSetup.pot Thu Jul 17 08:11:43 2008 @@ -1,4 +1,4 @@ -# /home/vluser/area-51/projects/new-inst/MdlSetup.module +# /home/moises/area-51/projects/installer/MdlSetup.module # Generated by Gambas compiler # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. Modified: branches/iVL/FMain.class ============================================================================== --- branches/iVL/FMain.class (original) +++ branches/iVL/FMain.class Thu Jul 17 08:11:43 2008 @@ -52,10 +52,12 @@ PUBLIC SUB Form_Resize() + + DIM iMid AS Integer WITH ME - iMid = (.btback.Left + .btnext.left + .btnext.Width) / 2 + .btQuit.Width = MdlObjSizer.get_object_width(.btQuit.Text) + 36 END WITH @@ -66,24 +68,13 @@ .pnlWinHost.Move(.Frame1.left + .Frame1.Width + 4, .Frame1.top, .tlBanner.Width - (.Frame1.Width + 8), .Frame1.Height) .btback.Move(.pnlWinHost.Left, .pnlWinHost.Top + .pnlWinHost.Height - (.btback.Height), MdlObjSizer.get_object_width(.btback.text) + 36) .btnext.Move(.pnlWinHost.Left + .pnlWinHost.Width - (.btnext.Width + 4), .btback.Top, MdlObjSizer.get_object_width(.btnext.text) + 36) - ' for the quit button, it'll get a little tricky + ' for the quit button, it'll get a little tricky ' we want that one right in the middle - .btQuit.Move(iMid - (.btQuit.Width / 2), .btback.Top, MdlObjSizer.get_object_width(.btQuit.Text) + 36) - '.pnlWinHost.Move(ME.left + ME.Frame1.Width + 4, Frame1.Top, ME.Width - (Frame1.Width + 4)) + .btQuit.Move(.pnlWinHost.Left + (.pnlWinHost.Width / 2) - (.btQuit.Width / 2), .btback.top) END WITH END -PUBLIC SUB Frame1_MouseDown() - - - -END - - -PUBLIC SUB tvPlan_Select() - -END PUBLIC SUB tvPlan_MouseUp() Modified: branches/iVL/FMain.form ============================================================================== --- branches/iVL/FMain.form (original) +++ branches/iVL/FMain.form Thu Jul 17 08:11:43 2008 @@ -23,17 +23,17 @@ MoveScaled(28,9,66,56) } { btnext Button - MoveScaled(89,69,8,3) + MoveScaled(89,69,8,3.375) Text = ("Next") Picture = Picture["icon:/16/right"] } { btback Button - MoveScaled(28,67,8,3) + MoveScaled(28,67,8,3.375) Text = ("Back") Picture = Picture["icon:/16/left"] } { btQuit Button - MoveScaled(54,67,11,2) + MoveScaled(54,67,11,3.375) Text = ("Exit") Picture = Picture["icon:/16/cancel"] } Modified: branches/iVL/FrmLicense.form ============================================================================== --- branches/iVL/FrmLicense.form (original) +++ branches/iVL/FrmLicense.form Thu Jul 17 08:11:43 2008 @@ -13,11 +13,11 @@ ReadOnly = True } { rbYes RadioButton - MoveScaled(2,50,20,3) + MoveScaled(2,51,20,3.375) Text = ("Yes, I Agree to the License Agreement") } { rbNo RadioButton - MoveScaled(2,46,20,3) + MoveScaled(2,46,20,3.375) Text = ("No, I Do Not Agree") } } Modified: branches/iVL/FrmPartScheme.form ============================================================================== --- branches/iVL/FrmPartScheme.form (original) +++ branches/iVL/FrmPartScheme.form Thu Jul 17 08:11:43 2008 @@ -8,11 +8,11 @@ Text = ("Select your disk partition option") } { rbUseExisting RadioButton - MoveScaled(2,8,32,3) + MoveScaled(2,7,32,3.375) Text = ("Use existing disk partitions") } { rbEditPartitions RadioButton - MoveScaled(2,12,62,3) + MoveScaled(2,12,62,3.375) Text = ("Modify my disk partitions to make room for new installation") } { tlChoiceExp TextLabel Modified: branches/iVL/FrmPartSel.form ============================================================================== --- branches/iVL/FrmPartSel.form (original) +++ branches/iVL/FrmPartSel.form Thu Jul 17 08:11:43 2008 @@ -26,7 +26,7 @@ } } { cbDoWin CheckBox - MoveScaled(1,50,57,3) + MoveScaled(1,50,57,3.375) ToolTip = ("Check this box if you have a Windows installation on your system or any other windows partition (FAT, FAT32, NTFS) that you want auto-mounted as soon as your computer starts") Text = ("Detect and Setup Windows partitions for auto-mounting at boot") } Modified: branches/iVL/FrmSelISO.form ============================================================================== --- branches/iVL/FrmSelISO.form (original) +++ branches/iVL/FrmSelISO.form Thu Jul 17 08:11:43 2008 @@ -5,7 +5,7 @@ Text = ("") FullScreen = True { lstInstallableImg ComboBox - MoveScaled(1,7,45,3) + MoveScaled(1,7,45,3.375) Text = ("No installable images found.") ReadOnly = True } @@ -18,7 +18,7 @@ Text = ("TextLabel1") } { btResCan Button - MoveScaled(49,7,13,3) + MoveScaled(49,7,13,3.375) Text = ("Search Again") Picture = Picture["icon:/16/refresh"] } Modified: branches/iVL/MdlCore.module ============================================================================== --- branches/iVL/MdlCore.module (original) +++ branches/iVL/MdlCore.module Thu Jul 17 08:11:43 2008 @@ -191,6 +191,9 @@ ME.MEDIA_SCAN FMain.Show + FMain.SkipTaskbar = TRUE + FMain.Maximized = TRUE + FMain.Resize(Desktop.Width, Desktop.Height) 'FMain.tvPlan.MoveTo("Prep0") FMain.tvPlan["Prep0"].Selected = TRUE |