da_csszs.pas
上传用户:szruida
上传日期:2007-06-01
资源大小:6518k
文件大小:3k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit da_csszs;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, StdCtrls, Buttons, TFlatButtonUnit,inifiles;
  6. type
  7.   Tda_cssz = class(TForm)
  8.     gbtitle: TGroupBox;
  9.     Topic: TEdit;
  10.     gbbg: TGroupBox;
  11.     open: TOpenDialog;
  12.     topicSet: TFlatButton;
  13.     BgSet: TFlatButton;
  14.     BgRestore: TFlatButton;
  15.     FlatButton4: TFlatButton;
  16.     procedure FlatButton4Click(Sender: TObject);
  17.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  18.     procedure FormShow(Sender: TObject);
  19.     procedure topicSetClick(Sender: TObject);
  20.     procedure BgSetClick(Sender: TObject);
  21.     procedure BgRestoreClick(Sender: TObject);
  22.   private
  23.     { Private declarations }
  24.   public
  25.     { Public declarations }
  26.   end;
  27. var
  28.   da_cssz: Tda_cssz;
  29. implementation
  30. uses mainfrms,da_comman;
  31. var 
  32.   inifile: TiniFile;
  33. {$R *.dfm}
  34. procedure Tda_cssz.FlatButton4Click(Sender: TObject);
  35. begin
  36.  close;
  37. end;
  38. procedure Tda_cssz.FormClose(Sender: TObject; var Action: TCloseAction);
  39. begin
  40.   da_cssz:=nil;
  41. end;
  42. procedure Tda_cssz.FormShow(Sender: TObject);
  43. begin
  44.  Topic.Text:=sTopic;
  45. end;
  46. procedure Tda_cssz.topicSetClick(Sender: TObject);
  47. begin
  48.  if Topic.Text <> '' then
  49.   begin
  50.     iniFile := TIniFile.Create(sPath + 'perset.ini');
  51.     iniFile.WriteString('sTopic', 'topic', Trim(Topic.Text));
  52.     MessageBox(self.Handle, '主题设置成功!', '提示', mb_IconInformation + mb_Ok);
  53.     mainfrm.Caption := Trim(Topic.Text);
  54.     iniFile.Free;
  55.   end
  56.   else
  57.   begin
  58.     MessageBox(self.Handle, '请输入系统主题!', '提示', mb_IconInformation + mb_Ok);
  59.     Topic.SetFocus;
  60.   end;
  61. end;
  62. procedure Tda_cssz.BgSetClick(Sender: TObject);
  63. var fName,fNameo:string;
  64. begin
  65.   if open.Execute then
  66.   begin
  67.     iniFile := TIniFile.Create(sPath + 'perset.ini');
  68.     fNameo := iniFile.ReadString('sysbg', 'bground', 'main.jpg');
  69.     if FileExists(sPath + fNameo) and (fNameo <> 'main.jpg') then
  70.       DeleteFile(sPath + fNameo);
  71.     fName := ExtractFileName(open.FileName);
  72.     CopyFile(Pchar(open.FileName),pchar('' + 'images' + fName), false);
  73.     iniFile.WriteString('sysbg', 'bground', 'images' + fName);
  74.     mainfrm.image1.Picture.LoadFromFile('' + 'images' + fName);
  75.     MessageBox(self.Handle, '背景设置成功!', '提示', mb_IconInformation + mb_Ok);
  76.     iniFile.Free;
  77.   end;
  78. end;
  79. procedure Tda_cssz.BgRestoreClick(Sender: TObject);
  80. var fName:string;
  81. begin
  82.   iniFile := TIniFile.Create(sPath + 'perset.ini');
  83.   fName := iniFile.ReadString('sysbg', 'bground', '');
  84.   if FileExists(sPath + fName) and (fName <> 'main.jpg') then
  85.     DeleteFile(sPath + fName);
  86.   iniFile.WriteString('sysbg', 'bground', 'main.jpg');
  87.   mainfrm.image1.Picture.LoadFromFile(sPath + 'main.jpg');
  88.   MessageBox(self.Handle, '背景复原成功!', '提示', mb_IconInformation + mb_Ok);
  89.   iniFile.Free;
  90. end;
  91. end.