diff options
| author | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2008-10-28 16:51:52 +0100 |
|---|---|---|
| committer | Tomas Bzatek <tbzatek@users.sourceforge.net> | 2008-10-28 16:51:52 +0100 |
| commit | a67cd9193a6ac04d34c92c1a817fb0f5e44af30f (patch) | |
| tree | 888227edebb4844efb01cd70bcbfc459b09d2a56 /ULogin.pas | |
| parent | 4234ca950044c27a1b2fcc92f45d816ef217487f (diff) | |
| download | tuxcmd-a67cd9193a6ac04d34c92c1a817fb0f5e44af30f.tar.xz | |
Password callback support from all VFS modulesv0.6.54
Cleanup, remove unused dialogs
Diffstat (limited to 'ULogin.pas')
| -rw-r--r-- | ULogin.pas | 146 |
1 files changed, 0 insertions, 146 deletions
diff --git a/ULogin.pas b/ULogin.pas deleted file mode 100644 index 8dbf5bb..0000000 --- a/ULogin.pas +++ /dev/null @@ -1,146 +0,0 @@ -(* - Tux Commander - ULogin - Login dialog - Copyright (C) 2004 Tomas Bzatek <tbzatek@users.sourceforge.net>
- Check for updates on tuxcmd.sourceforge.net
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-*) -unit ULogin; - -interface - -uses - glib2, gdk2, gtk2, pango, SysUtils, Types, Classes, Variants, GTKControls, GTKForms, GTKStdCtrls, GTKExtCtrls, GTKConsts, GTKView, - GTKUtils, GTKDialogs, GTKPixbuf, GTKClasses, GTKMenus, - UCoreClasses; - -type - TFLogin = class(TGTKDialog) - TitleFrame: TGTKFrame; - TitleLabel: TGTKLabel; - TitleEventBox: TGTKEventBox; - TitleIcon: TGTKImage; - TitleHBox: TGTKHBox; - Table: TGTKTable; - Label3, Label4: TGTKLabel; - UserEntry, PasswordEntry: TGTKEntry; - ExperimentalWarningLabel: TGTKLabel; - ExperimentalWarningIcon: TGTKImage; - AnonymousCheckButton: TGTKCheckButton; - HBox4: TGTKHBox; - procedure FormCreate(Sender: TObject); override; - procedure FormKeyDown(Sender: TObject; Key: Word; Shift: TShiftState; var Accept: boolean); - procedure AnonymousCheckButtonToggled(Sender: TObject); - end; - -var - FLogin: TFLogin; - -implementation - -uses ULocale; - - -procedure TFLogin.FormCreate(Sender: TObject); -begin - SetDefaultSize(200, 150); - Caption := LANGConnLogin_Caption; - Buttons := [mbOK, mbCancel]; - DefaultButton := mbOK; - ShowSeparator := False; - TitleEventBox := TGTKEventBox.Create(Self); - TitleLabel := TGTKLabel.Create(Self); - TitleLabel.Caption := Format('<span size="x-large" weight="ultrabold">%s</span>', [LANGConnLogin_Login]); - TitleLabel.UseMarkup := True; - TitleLabel.XAlign := 0; - TitleLabel.XPadding := 0; - TitleLabel.YPadding := 3; - TitleEventBox.ControlState := csPrelight; - TitleFrame := TGTKFrame.CreateWithoutLabel(Self); - TitleFrame.ShadowType := stShadowOut; - TitleIcon := TGTKImage.Create(Self); - TitleIcon.SetFromStock('gtk-dialog-authentication', isLargeToolbar); - TitleHBox := TGTKHBox.Create(Self); - TitleHBox.Homogeneous := False; - TitleHBox.AddControlEx(TGTKEventBox.Create(Self), False, False, 5); - TitleHBox.AddControlEx(TitleIcon, False, False, 0); - TitleHBox.AddControlEx(TitleLabel, True, True, 10); - TitleEventBox.AddControl(TitleHBox); - TitleFrame.AddControl(TitleEventBox); - ClientArea.AddControlEx(TitleFrame, False, True, 0); - - HBox4 := TGTKHBox.Create(Self); - HBox4.Homogeneous := False; - ExperimentalWarningLabel := TGTKLabel.Create(Self); - ExperimentalWarningLabel.Caption := LANGConnLogin_ExperimentalWarningLabelCaption; - ExperimentalWarningLabel.UseMarkup := True; - ExperimentalWarningLabel.LineWrap := True; - ExperimentalWarningIcon := TGTKImage.Create(Self); - ExperimentalWarningIcon.SetFromStock('gtk-dialog-authentication', isDialog); - HBox4.AddControlEx(ExperimentalWarningIcon, False, False, 7); - HBox4.AddControlEx(ExperimentalWarningLabel, True, True, 7); - HBox4.AddControlEx(TGTKEventBox.Create(Self), False, False, 8); - - - Table := TGTKTable.Create(Self); - Table.BorderWidth := 20; - ClientArea.AddControlEx(Table, True, True, 0); - Table.AddControlEx(0, 0, 2, 1, HBox4, [taoShrink, taoFill], [taoShrink, taoExpand, taoFill], 5, 0); - Table.AddControlEx(0, 1, 2, 1, TGTKEventBox.Create(Self), [taoShrink, taoFill], [taoShrink], 5, 10); - Label3 := TGTKLabel.Create(Self); - Label3.XAlign := 1; - Label3.Caption := LANGConnLogin_Username; - UserEntry := TGTKEntry.Create(Self); - Label3.FocusControl := UserEntry; - Label3.UseUnderline := True; - Label4 := TGTKLabel.Create(Self); - Label4.XAlign := 1; - Label4.Caption := LANGConnLogin_Password; - PasswordEntry := TGTKEntry.Create(Self); - PasswordEntry.Visibility := False; - Label4.FocusControl := PasswordEntry; - Label4.UseUnderline := True; - AnonymousCheckButton := TGTKCheckButton.CreateWithLabel(Self, LANGConnLogin_AnonymousCheckButton); - AnonymousCheckButton.OnToggled := AnonymousCheckButtonToggled; - AnonymousCheckButton.Checked := False; - Table.AddControlEx(0, 2, 1, 1, Label3, [taoShrink, taoFill], [taoShrink, taoExpand, taoFill], 5, 2); - Table.AddControlEx(1, 2, 1, 1, UserEntry, [taoExpand, taoFill], [taoShrink], 5, 2); - Table.AddControlEx(0, 3, 1, 1, Label4, [taoShrink, taoFill], [taoShrink, taoExpand, taoFill], 5, 2); - Table.AddControlEx(1, 3, 1, 1, PasswordEntry, [taoExpand, taoFill], [taoShrink], 5, 2); - Table.AddControlEx(0, 4, 2, 1, AnonymousCheckButton, [taoExpand, taoFill], [taoShrink], 20, 2); - - UserEntry.SetFocus; - OnKeyDown := FormKeyDown; -end; - -procedure TFLogin.FormKeyDown(Sender: TObject; Key: Word; Shift: TShiftState; var Accept: boolean); -begin - case Key of - GDK_RETURN, GDK_KP_ENTER: ModalResult := mbOK; - GDK_ESCAPE: ModalResult := mbCancel; - end; -end; - -procedure TFLogin.AnonymousCheckButtonToggled(Sender: TObject); -begin - Label3.Enabled := not AnonymousCheckButton.Checked; - Label4.Enabled := not AnonymousCheckButton.Checked; - UserEntry.Enabled := not AnonymousCheckButton.Checked; - PasswordEntry.Enabled := not AnonymousCheckButton.Checked; -end; - - -end. -
|
