home *** CD-ROM | disk | FTP | other *** search
/ PC Open 19 / pcopen19.iso / Win31 / Calmira / SOURCE.ZIP / SRC / RUNPROG.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1998-02-20  |  5.5 KB  |  177 lines

  1. {**************************************************************************}
  2. {                                                                          }
  3. {    Calmira shell for Microsoft« Windows(TM) 3.1                          }
  4. {    Source Release 2.1                                                    }
  5. {    Copyright (C) 1997-1998 Li-Hsin Huang                                 }
  6. {                                                                          }
  7. {    This program is free software; you can redistribute it and/or modify  }
  8. {    it under the terms of the GNU General Public License as published by  }
  9. {    the Free Software Foundation; either version 2 of the License, or     }
  10. {    (at your option) any later version.                                   }
  11. {                                                                          }
  12. {    This program is distributed in the hope that it will be useful,       }
  13. {    but WITHOUT ANY WARRANTY; without even the implied warranty of        }
  14. {    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         }
  15. {    GNU General Public License for more details.                          }
  16. {                                                                          }
  17. {    You should have received a copy of the GNU General Public License     }
  18. {    along with this program; if not, write to the Free Software           }
  19. {    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.             }
  20. {                                                                          }
  21. {**************************************************************************}
  22.  
  23. unit Runprog;
  24.  
  25. interface
  26.  
  27. uses Classes, Forms, Controls, Buttons, StdCtrls, Dialogs, CalForm, Settings,
  28.   ExtCtrls, SysUtils;
  29.  
  30. type
  31.   TRunDlg = class(TCalForm)
  32.     OKBtn: TBitBtn;
  33.     CloseBtn: TBitBtn;
  34.     Label1: TLabel;
  35.     Combo: TComboBox;
  36.     RunMin: TCheckBox;
  37.     DosCommand: TCheckBox;
  38.     OpenDialog: TOpenDialog;
  39.     BrowseBtn: TBitBtn;
  40.     Image: TImage;
  41.     procedure OKBtnClick(Sender: TObject);
  42.     procedure FormCreate(Sender: TObject);
  43.     procedure FormClose(Sender: TObject; var Action: TCloseAction);
  44.     procedure FormDestroy(Sender: TObject);
  45.     procedure CloseBtnClick(Sender: TObject);
  46.     procedure BrowseBtnClick(Sender: TObject);
  47.     procedure FormPaint(Sender: TObject);
  48.     procedure FormResize(Sender: TObject);
  49.   private
  50.     { Private declarations }
  51.     Changed : Boolean;
  52.     DefaultDir : TFilename;
  53.   public
  54.     { Public declarations }
  55.     procedure SettingsChanged(Changes : TSettingChanges); override;
  56.   end;
  57.  
  58. procedure RunExecute(const command: string; const Dir: TFilename);
  59.  
  60. implementation
  61.  
  62. {$R *.DFM}
  63.  
  64. uses Files, WinProcs, WinTypes, MiscUtil, Resource, Environs,
  65.   Strings, Fileman, Desk;
  66.  
  67. var RunDlg: TRunDlg;
  68.  
  69. procedure RunExecute(const command: string; const Dir: TFilename);
  70. begin
  71.   ShowHourglass;
  72.   if RunDlg = nil then RunDlg := TRunDlg.Create(Application);
  73.  
  74.   with RunDlg do begin
  75.     AssignHistoryText(Combo, command);
  76.     WindowState := wsNormal;
  77.     if Dir >'' then DefaultDir := Dir
  78.     else DefaultDir := Environment.Values['WinDir'];
  79.     Show;
  80.   end;
  81. end;
  82.  
  83.  
  84. procedure TRunDlg.OKBtnClick(Sender: TObject);
  85. const
  86.   Commands: array[Boolean] of Word = (SW_SHOW, SW_SHOWMINNOACTIVE);
  87. var
  88.   filename, newdir: TFilename;
  89.   params : string;
  90. begin
  91.   Changed := AddHistory(Combo) or Changed;
  92.   with Combo do
  93.     if Text > '' then begin
  94.       newdir := '';
  95.       if DosCommand.Checked then begin
  96.         filename := Environment.Values['COMSPEC'];
  97.         params := '/c ' + Text;
  98.       end
  99.       else begin
  100.         filename := FirstWord(EnvironSubst(Text));
  101.         newdir := ExtractFileDir(filename);
  102.         params := '';
  103.         if Length(filename) < Length(Text) then
  104.           params := Copy(Text, Length(filename)+2, 255);
  105.       end;
  106.       if newdir = '' then newdir := DefaultDir;
  107.  
  108.       if (Length(filename) = 2) and (filename[1] in Alphas) and (filename[2] = ':') then
  109.         AppendStr(filename, '\');
  110.  
  111.       if HDirectoryExists(filename) then begin
  112.         Desktop.OpenFolder(filename);
  113.         if RunAutoClose then Close;
  114.       end
  115.       else if (DefaultExec(filename, params, DefaultDir, SW_SHOW) > 32) and
  116.         RunAutoClose then Close;
  117.     end;
  118. end;
  119.  
  120.  
  121. procedure TRunDlg.FormCreate(Sender: TObject);
  122. begin
  123.   Icon.Assign(Icons.Get('RunDialog'));
  124.   Image.Picture.Icon.Assign(Icon);
  125.   ini.ReadStrings('RunProgram', Combo.Items);
  126.   LoadPosition(ini, 'Run Dialog');
  127.   CloseBtn.Cancel := True;
  128. end;
  129.  
  130.  
  131. procedure TRunDlg.FormClose(Sender: TObject; var Action: TCloseAction);
  132. begin
  133.   Action := caFree;
  134.   SavePosition(ini, 'Run Dialog');
  135. end;
  136.  
  137.  
  138. procedure TRunDlg.FormDestroy(Sender: TObject);
  139. begin
  140.   if Changed then ini.RewriteSectionStrings('RunProgram', Combo.Items);
  141.   RunDlg := nil;
  142. end;
  143.  
  144.  
  145. procedure TRunDlg.CloseBtnClick(Sender: TObject);
  146. begin
  147.   Close;
  148. end;
  149.  
  150.  
  151. procedure TRunDlg.BrowseBtnClick(Sender: TObject);
  152. begin
  153.   if OpenDialog.Execute then
  154.     Combo.Text := Lowercase(OpenDialog.Filename);
  155. end;
  156.  
  157.  
  158. procedure TRunDlg.FormPaint(Sender: TObject);
  159. begin
  160.   Border3D(Canvas, ClientWidth-1, ClientHeight-1);
  161. end;
  162.  
  163. procedure TRunDlg.SettingsChanged(Changes : TSettingChanges);
  164. begin
  165.   if scSystem in Changes then
  166.     ini.ReadNewStrings('RunProgram', Combo.Items);
  167. end;
  168.  
  169. procedure TRunDlg.FormResize(Sender: TObject);
  170. begin
  171.   Invalidate;
  172.   StretchShift([CloseBtn, OKBtn, BrowseBtn, DosCommand, RunMin], [stLeft]);
  173.   StretchShift([Combo], [stWidth]);
  174. end;
  175.  
  176. end.
  177.