iclect-commits Mailing List for iclect - Image Selection Utility
Status: Beta
Brought to you by:
mhjp
You can subscribe to this list here.
| 2003 |
Jan
(4) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(31) |
Jul
(30) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|---|
|
From: Michael P. <mh...@us...> - 2003-07-26 11:46:16
|
Update of /cvsroot/iclect/iclect/src/iclect.Forms
In directory sc8-pr-cvs1:/tmp/cvs-serv30005/iclect.Forms
Modified Files:
AddressBar.cs iclect.Forms.csproj
Log Message:
Changed MenuItems from (iclect) MenuItemWithHelp to (System) MenuItem with (iclect) MenuItemHelp extension class.
Index: AddressBar.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.Forms/AddressBar.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** AddressBar.cs 3 Jul 2003 17:32:50 -0000 1.6
--- AddressBar.cs 25 Jul 2003 17:07:48 -0000 1.7
***************
*** 26,41 ****
private System.Windows.Forms.ToolBarButton toolBarButtonOpen;
private System.Windows.Forms.ContextMenu contextMenuFolderText;
! private MenuItemWithHelp menuItemFolderEditCut;
! private MenuItemWithHelp menuItemFolderEditCopy;
! private MenuItemWithHelp menuItemFolderEditPaste;
! private MenuItemWithHelp menuItemFolderEditDelete;
! private MenuItemWithHelp menuItemFolderEditSelectAll;
! private MenuItemWithHelp menuItemFolderSep2;
! private MenuItemWithHelp menuItemFolderSep3;
! private MenuItemWithHelp menuItemFolderGo;
! private MenuItemWithHelp menuItemFolderUp;
! private MenuItemWithHelp menuItemFolderOpen;
private System.Windows.Forms.ContextMenu contextMenuFolderList;
private System.ComponentModel.IContainer components;
public AddressBar()
--- 26,42 ----
private System.Windows.Forms.ToolBarButton toolBarButtonOpen;
private System.Windows.Forms.ContextMenu contextMenuFolderText;
! private System.Windows.Forms.MenuItem menuItemFolderEditCut;
! private System.Windows.Forms.MenuItem menuItemFolderEditCopy;
! private System.Windows.Forms.MenuItem menuItemFolderEditPaste;
! private System.Windows.Forms.MenuItem menuItemFolderEditDelete;
! private System.Windows.Forms.MenuItem menuItemFolderEditSelectAll;
! private System.Windows.Forms.MenuItem menuItemFolderSep2;
! private System.Windows.Forms.MenuItem menuItemFolderSep3;
! private System.Windows.Forms.MenuItem menuItemFolderGo;
! private System.Windows.Forms.MenuItem menuItemFolderUp;
! private System.Windows.Forms.MenuItem menuItemFolderOpen;
private System.Windows.Forms.ContextMenu contextMenuFolderList;
private System.ComponentModel.IContainer components;
+ private iclect.Forms.Utility.MenuItemHelp menuItemHelp;
public AddressBar()
***************
*** 71,84 ****
this.comboBoxFolder = new System.Windows.Forms.ComboBox();
this.contextMenuFolderText = new System.Windows.Forms.ContextMenu();
! this.menuItemFolderEditCut = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuItemFolderEditCopy = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuItemFolderEditPaste = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuItemFolderEditDelete = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuItemFolderSep2 = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuItemFolderEditSelectAll = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuItemFolderSep3 = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuItemFolderUp = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuItemFolderGo = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuItemFolderOpen = new iclect.Forms.Utility.MenuItemWithHelp();
this.imageListNavigation = new System.Windows.Forms.ImageList(this.components);
this.toolBarNavigation = new System.Windows.Forms.ToolBar();
--- 72,85 ----
this.comboBoxFolder = new System.Windows.Forms.ComboBox();
this.contextMenuFolderText = new System.Windows.Forms.ContextMenu();
! this.menuItemFolderEditCut = new System.Windows.Forms.MenuItem();
! this.menuItemFolderEditCopy = new System.Windows.Forms.MenuItem();
! this.menuItemFolderEditPaste = new System.Windows.Forms.MenuItem();
! this.menuItemFolderEditDelete = new System.Windows.Forms.MenuItem();
! this.menuItemFolderSep2 = new System.Windows.Forms.MenuItem();
! this.menuItemFolderEditSelectAll = new System.Windows.Forms.MenuItem();
! this.menuItemFolderSep3 = new System.Windows.Forms.MenuItem();
! this.menuItemFolderUp = new System.Windows.Forms.MenuItem();
! this.menuItemFolderGo = new System.Windows.Forms.MenuItem();
! this.menuItemFolderOpen = new System.Windows.Forms.MenuItem();
this.imageListNavigation = new System.Windows.Forms.ImageList(this.components);
this.toolBarNavigation = new System.Windows.Forms.ToolBar();
***************
*** 87,90 ****
--- 88,92 ----
this.toolBarButtonOpen = new System.Windows.Forms.ToolBarButton();
this.contextMenuFolderList = new System.Windows.Forms.ContextMenu();
+ this.menuItemHelp = new iclect.Forms.Utility.MenuItemHelp(this.components);
this.SuspendLayout();
//
***************
*** 119,126 ****
// menuItemFolderEditCut
//
! this.menuItemFolderEditCut.HelpText = "Cut the selected text.";
this.menuItemFolderEditCut.Index = 0;
this.menuItemFolderEditCut.Shortcut = System.Windows.Forms.Shortcut.CtrlX;
- this.menuItemFolderEditCut.StatusBar = null;
this.menuItemFolderEditCut.Text = "Cu&t";
this.menuItemFolderEditCut.Click += new System.EventHandler(this.OnFolderEditCut);
--- 121,127 ----
// menuItemFolderEditCut
//
! this.menuItemHelp.SetHelpText(this.menuItemFolderEditCut, "Cut the selected text.");
this.menuItemFolderEditCut.Index = 0;
this.menuItemFolderEditCut.Shortcut = System.Windows.Forms.Shortcut.CtrlX;
this.menuItemFolderEditCut.Text = "Cu&t";
this.menuItemFolderEditCut.Click += new System.EventHandler(this.OnFolderEditCut);
***************
*** 128,135 ****
// menuItemFolderEditCopy
//
! this.menuItemFolderEditCopy.HelpText = "Copy the selected text to the clipboard.";
this.menuItemFolderEditCopy.Index = 1;
this.menuItemFolderEditCopy.Shortcut = System.Windows.Forms.Shortcut.CtrlC;
- this.menuItemFolderEditCopy.StatusBar = null;
this.menuItemFolderEditCopy.Text = "&Copy";
this.menuItemFolderEditCopy.Click += new System.EventHandler(this.OnFolderEditCopy);
--- 129,135 ----
// menuItemFolderEditCopy
//
! this.menuItemHelp.SetHelpText(this.menuItemFolderEditCopy, "Copy the selected text to the clipboard.");
this.menuItemFolderEditCopy.Index = 1;
this.menuItemFolderEditCopy.Shortcut = System.Windows.Forms.Shortcut.CtrlC;
this.menuItemFolderEditCopy.Text = "&Copy";
this.menuItemFolderEditCopy.Click += new System.EventHandler(this.OnFolderEditCopy);
***************
*** 137,144 ****
// menuItemFolderEditPaste
//
! this.menuItemFolderEditPaste.HelpText = "Paste text from the clipboard, replacing the current selection.";
this.menuItemFolderEditPaste.Index = 2;
this.menuItemFolderEditPaste.Shortcut = System.Windows.Forms.Shortcut.CtrlV;
- this.menuItemFolderEditPaste.StatusBar = null;
this.menuItemFolderEditPaste.Text = "&Paste";
this.menuItemFolderEditPaste.Click += new System.EventHandler(this.OnFolderEditPaste);
--- 137,143 ----
// menuItemFolderEditPaste
//
! this.menuItemHelp.SetHelpText(this.menuItemFolderEditPaste, "Paste text from the clipboard, replacing the current selection.");
this.menuItemFolderEditPaste.Index = 2;
this.menuItemFolderEditPaste.Shortcut = System.Windows.Forms.Shortcut.CtrlV;
this.menuItemFolderEditPaste.Text = "&Paste";
this.menuItemFolderEditPaste.Click += new System.EventHandler(this.OnFolderEditPaste);
***************
*** 146,153 ****
// menuItemFolderEditDelete
//
! this.menuItemFolderEditDelete.HelpText = "Delete the selected text.";
this.menuItemFolderEditDelete.Index = 3;
this.menuItemFolderEditDelete.Shortcut = System.Windows.Forms.Shortcut.Del;
- this.menuItemFolderEditDelete.StatusBar = null;
this.menuItemFolderEditDelete.Text = "&Delete";
this.menuItemFolderEditDelete.Click += new System.EventHandler(this.OnFolderEditDelete);
--- 145,151 ----
// menuItemFolderEditDelete
//
! this.menuItemHelp.SetHelpText(this.menuItemFolderEditDelete, "Delete the selected text.");
this.menuItemFolderEditDelete.Index = 3;
this.menuItemFolderEditDelete.Shortcut = System.Windows.Forms.Shortcut.Del;
this.menuItemFolderEditDelete.Text = "&Delete";
this.menuItemFolderEditDelete.Click += new System.EventHandler(this.OnFolderEditDelete);
***************
*** 155,169 ****
// menuItemFolderSep2
//
- this.menuItemFolderSep2.HelpText = null;
this.menuItemFolderSep2.Index = 4;
- this.menuItemFolderSep2.StatusBar = null;
this.menuItemFolderSep2.Text = "-";
//
// menuItemFolderEditSelectAll
//
! this.menuItemFolderEditSelectAll.HelpText = "Select all text.";
this.menuItemFolderEditSelectAll.Index = 5;
this.menuItemFolderEditSelectAll.Shortcut = System.Windows.Forms.Shortcut.CtrlA;
- this.menuItemFolderEditSelectAll.StatusBar = null;
this.menuItemFolderEditSelectAll.Text = "Select &All";
this.menuItemFolderEditSelectAll.Click += new System.EventHandler(this.OnFolderEditSelectAll);
--- 153,164 ----
// menuItemFolderSep2
//
this.menuItemFolderSep2.Index = 4;
this.menuItemFolderSep2.Text = "-";
//
// menuItemFolderEditSelectAll
//
! this.menuItemHelp.SetHelpText(this.menuItemFolderEditSelectAll, "Select all text.");
this.menuItemFolderEditSelectAll.Index = 5;
this.menuItemFolderEditSelectAll.Shortcut = System.Windows.Forms.Shortcut.CtrlA;
this.menuItemFolderEditSelectAll.Text = "Select &All";
this.menuItemFolderEditSelectAll.Click += new System.EventHandler(this.OnFolderEditSelectAll);
***************
*** 171,185 ****
// menuItemFolderSep3
//
- this.menuItemFolderSep3.HelpText = null;
this.menuItemFolderSep3.Index = 6;
- this.menuItemFolderSep3.StatusBar = null;
this.menuItemFolderSep3.Text = "-";
//
// menuItemFolderUp
//
! this.menuItemFolderUp.HelpText = "Navigate up one level.";
this.menuItemFolderUp.Index = 7;
this.menuItemFolderUp.Shortcut = System.Windows.Forms.Shortcut.AltBksp;
- this.menuItemFolderUp.StatusBar = null;
this.menuItemFolderUp.Text = "&Up one level";
this.menuItemFolderUp.Click += new System.EventHandler(this.OnFolderUp);
--- 166,177 ----
// menuItemFolderSep3
//
this.menuItemFolderSep3.Index = 6;
this.menuItemFolderSep3.Text = "-";
//
// menuItemFolderUp
//
! this.menuItemHelp.SetHelpText(this.menuItemFolderUp, "Navigate up one level.");
this.menuItemFolderUp.Index = 7;
this.menuItemFolderUp.Shortcut = System.Windows.Forms.Shortcut.AltBksp;
this.menuItemFolderUp.Text = "&Up one level";
this.menuItemFolderUp.Click += new System.EventHandler(this.OnFolderUp);
***************
*** 187,193 ****
// menuItemFolderGo
//
! this.menuItemFolderGo.HelpText = "Go to folder.";
this.menuItemFolderGo.Index = 8;
- this.menuItemFolderGo.StatusBar = null;
this.menuItemFolderGo.Text = "&Go";
this.menuItemFolderGo.Visible = false;
--- 179,184 ----
// menuItemFolderGo
//
! this.menuItemHelp.SetHelpText(this.menuItemFolderGo, "Go to folder.");
this.menuItemFolderGo.Index = 8;
this.menuItemFolderGo.Text = "&Go";
this.menuItemFolderGo.Visible = false;
***************
*** 196,203 ****
// menuItemFolderOpen
//
! this.menuItemFolderOpen.HelpText = "Open a folder.";
this.menuItemFolderOpen.Index = 9;
this.menuItemFolderOpen.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
- this.menuItemFolderOpen.StatusBar = null;
this.menuItemFolderOpen.Text = "&Open...";
this.menuItemFolderOpen.Visible = false;
--- 187,193 ----
// menuItemFolderOpen
//
! this.menuItemHelp.SetHelpText(this.menuItemFolderOpen, "Open a folder.");
this.menuItemFolderOpen.Index = 9;
this.menuItemFolderOpen.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
this.menuItemFolderOpen.Text = "&Open...";
this.menuItemFolderOpen.Visible = false;
***************
*** 300,304 ****
private void OnNavigation(object sender, System.Windows.Forms.ToolBarButtonClickEventArgs e)
{
! MenuItemWithHelp menuItem = e.Button.Tag as MenuItemWithHelp;
if (menuItem != null)
menuItem.PerformClick();
--- 290,294 ----
private void OnNavigation(object sender, System.Windows.Forms.ToolBarButtonClickEventArgs e)
{
! System.Windows.Forms.MenuItem menuItem = e.Button.Tag as System.Windows.Forms.MenuItem;
if (menuItem != null)
menuItem.PerformClick();
***************
*** 342,348 ****
private void OnSelectedFolder(object sender, System.EventArgs e)
{
! MenuItemWithHelp mi = sender as MenuItemWithHelp;
if (mi != null)
! GoToFolder(mi.HelpText);
}
--- 332,338 ----
private void OnSelectedFolder(object sender, System.EventArgs e)
{
! System.Windows.Forms.MenuItem mi = sender as System.Windows.Forms.MenuItem;
if (mi != null)
! GoToFolder(menuItemHelp.GetHelpText(mi));
}
***************
*** 359,365 ****
private void AddFolderToMenu(Menu m, EventHandler eh, string folder)
{
! MenuItemWithHelp mi = new MenuItemWithHelp();
mi.Text = Path.GetFileName(folder);
- mi.HelpText = folder;
mi.Click += eh;
m.MenuItems.Add(mi);
--- 349,355 ----
private void AddFolderToMenu(Menu m, EventHandler eh, string folder)
{
! System.Windows.Forms.MenuItem mi = new System.Windows.Forms.MenuItem();
! menuItemHelp.SetHelpText(mi, folder);
mi.Text = Path.GetFileName(folder);
mi.Click += eh;
m.MenuItems.Add(mi);
***************
*** 382,388 ****
foreach (string drive in drives)
{
! MenuItemWithHelp mi = new MenuItemWithHelp();
mi.Text = drive;
- mi.HelpText = drive;
mi.Click += eh;
m.MenuItems.Add(mi);
--- 372,378 ----
foreach (string drive in drives)
{
! System.Windows.Forms.MenuItem mi = new System.Windows.Forms.MenuItem();
! menuItemHelp.SetHelpText(mi, drive);
mi.Text = drive;
mi.Click += eh;
m.MenuItems.Add(mi);
***************
*** 537,548 ****
public override string Text
{
! get
! {
! return this.comboBoxFolder.Text;
! }
! set
! {
! this.comboBoxFolder.Text = value;
! }
}
}
--- 527,538 ----
public override string Text
{
! get { return this.comboBoxFolder.Text; }
! set { this.comboBoxFolder.Text = value; }
! }
!
! public StatusBar StatusBar
! {
! get { return this.menuItemHelp.StatusBar; }
! set { this.menuItemHelp.StatusBar = value; }
}
}
Index: iclect.Forms.csproj
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.Forms/iclect.Forms.csproj,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** iclect.Forms.csproj 4 Jul 2003 23:49:53 -0000 1.6
--- iclect.Forms.csproj 25 Jul 2003 17:07:48 -0000 1.7
***************
*** 175,185 ****
/>
<File
! RelPath = "Utility\MenuItemWithHelp.cs"
SubType = "Component"
BuildAction = "Compile"
/>
<File
! RelPath = "Utility\MenuItemWithHelp.resx"
! DependentUpon = "MenuItemWithHelp.cs"
BuildAction = "EmbeddedResource"
/>
--- 175,185 ----
/>
<File
! RelPath = "Utility\MenuItemHelp.cs"
SubType = "Component"
BuildAction = "Compile"
/>
<File
! RelPath = "Utility\MenuItemHelp.resx"
! DependentUpon = "MenuItemHelp.cs"
BuildAction = "EmbeddedResource"
/>
|
|
From: Michael P. <mh...@us...> - 2003-07-26 09:51:46
|
Update of /cvsroot/iclect/iclect/src/iclect.ImageManager
In directory sc8-pr-cvs1:/tmp/cvs-serv3612/iclect.ImageManager
Modified Files:
ImageFile.cs ImageFolder.cs
Log Message:
Removed FileInfo from ImageFile.
Index: ImageFile.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.ImageManager/ImageFile.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ImageFile.cs 3 Jul 2003 14:32:51 -0000 1.5
--- ImageFile.cs 25 Jul 2003 15:35:11 -0000 1.6
***************
*** 48,54 ****
}
}
! public FileInfo FileInfo
{
! get { return _fileInfo; }
}
public ImageFolder Folder
--- 48,66 ----
}
}
! public DateTime LastWriteTime
{
! get { return _fileInfo.LastWriteTime; }
! }
! public DateTime CreationTime
! {
! get { return _fileInfo.CreationTime; }
! }
! public string Name
! {
! get { return _fileInfo.Name; }
! }
! public string FullName
! {
! get { return _fileInfo.FullName; }
}
public ImageFolder Folder
***************
*** 284,289 ****
[NonSerialized] bool _selected;
! // Images
[NonSerialized] internal Image _thumb;
[NonSerialized] internal Image _high;
[NonSerialized] Stream _highStream;
--- 296,303 ----
[NonSerialized] bool _selected;
! // thumbnail image
[NonSerialized] internal Image _thumb;
+
+ // high resolution image
[NonSerialized] internal Image _high;
[NonSerialized] Stream _highStream;
Index: ImageFolder.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.ImageManager/ImageFolder.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** ImageFolder.cs 3 Jul 2003 17:32:51 -0000 1.5
--- ImageFolder.cs 25 Jul 2003 15:35:11 -0000 1.6
***************
*** 149,153 ****
ImageFile leftFile = left[lndx];
ImageFile rightFile = right[rndx];
! if (leftFile.FileInfo.LastWriteTime > rightFile.FileInfo.LastWriteTime)
{
imageFiles.Add(leftFile);
--- 149,153 ----
ImageFile leftFile = left[lndx];
ImageFile rightFile = right[rndx];
! if (leftFile.LastWriteTime > rightFile.LastWriteTime)
{
imageFiles.Add(leftFile);
***************
*** 198,202 ****
string [] names = new string[imageFiles.Length];
for (int i = 0; i < imageFiles.Length; i++)
! names[i] = imageFiles[i].FileInfo.Name.ToLower();
return names;
}
--- 198,202 ----
string [] names = new string[imageFiles.Length];
for (int i = 0; i < imageFiles.Length; i++)
! names[i] = imageFiles[i].Name.ToLower();
return names;
}
|
|
From: Michael P. <mh...@us...> - 2003-07-26 07:29:33
|
Update of /cvsroot/iclect/iclect/src/iclect.Forms
In directory sc8-pr-cvs1:/tmp/cvs-serv3612/iclect.Forms
Modified Files:
Film.cs
Log Message:
Removed FileInfo from ImageFile.
Index: Film.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.Forms/Film.cs,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** Film.cs 3 Jul 2003 14:32:51 -0000 1.6
--- Film.cs 25 Jul 2003 15:35:10 -0000 1.7
***************
*** 267,271 ****
if (imageFile.RecordingTime == DateTime.MinValue)
{
! time = imageFile.FileInfo.CreationTime;
creation = "Created";
}
--- 267,271 ----
if (imageFile.RecordingTime == DateTime.MinValue)
{
! time = imageFile.CreationTime;
creation = "Created";
}
***************
*** 276,280 ****
}
string text = string.Format("Image: {0}\r\n{1}: {2}\r\nSize: {3} x {4}",
! imageFile.FileInfo.Name,
creation, time,
imageFile.Width,
--- 276,280 ----
}
string text = string.Format("Image: {0}\r\n{1}: {2}\r\nSize: {3} x {4}",
! imageFile.Name,
creation, time,
imageFile.Width,
|
|
From: Michael P. <mh...@us...> - 2003-07-26 07:19:41
|
Update of /cvsroot/iclect/iclect/src/iclect
In directory sc8-pr-cvs1:/tmp/cvs-serv30005/iclect
Modified Files:
iclect.csproj MainForm.cs MainForm.resx
Log Message:
Changed MenuItems from (iclect) MenuItemWithHelp to (System) MenuItem with (iclect) MenuItemHelp extension class.
Index: iclect.csproj
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/iclect.csproj,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** iclect.csproj 3 Jul 2003 17:32:49 -0000 1.8
--- iclect.csproj 25 Jul 2003 17:07:47 -0000 1.9
***************
*** 111,121 ****
/>
<Reference
! Name = "iclect.Forms"
! Project = "{4F2429A3-4236-47FE-8BFA-3742FF58C5D7}"
Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}"
/>
<Reference
! Name = "iclect.ImageManager"
! Project = "{F460F43E-3368-41C6-B1EA-70D0EAA54155}"
Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}"
/>
--- 111,121 ----
/>
<Reference
! Name = "iclect.ImageManager"
! Project = "{F460F43E-3368-41C6-B1EA-70D0EAA54155}"
Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}"
/>
<Reference
! Name = "iclect.Forms"
! Project = "{4F2429A3-4236-47FE-8BFA-3742FF58C5D7}"
Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}"
/>
Index: MainForm.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/MainForm.cs,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** MainForm.cs 25 Jul 2003 15:34:14 -0000 1.15
--- MainForm.cs 25 Jul 2003 17:07:48 -0000 1.16
***************
*** 18,38 ****
public class MainForm : Form
{
! private iclect.Forms.Utility.MenuItemWithHelp menuFile;
! private iclect.Forms.Utility.MenuItemWithHelp menuFileOpenFolder;
! private iclect.Forms.Utility.MenuItemWithHelp menuFileSep1;
! private iclect.Forms.Utility.MenuItemWithHelp menuFileExit;
! private iclect.Forms.Utility.MenuItemWithHelp menuEdit;
! private iclect.Forms.Utility.MenuItemWithHelp menuEditSelectAll;
! private iclect.Forms.Utility.MenuItemWithHelp menuEditSelectAllImages;
! private iclect.Forms.Utility.MenuItemWithHelp menuEditUnselectAll;
! private iclect.Forms.Utility.MenuItemWithHelp menuEditSep1;
! private iclect.Forms.Utility.MenuItemWithHelp menuEditReverseSelection;
! private iclect.Forms.Utility.MenuItemWithHelp menuEditReverseImageSelection;
! private iclect.Forms.Utility.MenuItemWithHelp menuImages;
! private iclect.Forms.Utility.MenuItemWithHelp menuImagesCopyTo;
! private iclect.Forms.Utility.MenuItemWithHelp menuHelp;
! private iclect.Forms.Utility.MenuItemWithHelp menuHelpKeyboard;
! private iclect.Forms.Utility.MenuItemWithHelp menuHelpSep1;
! private iclect.Forms.Utility.MenuItemWithHelp menuHelpAbout;
private System.Windows.Forms.MainMenu mainMenu;
private System.Windows.Forms.Panel panelTop;
--- 18,38 ----
public class MainForm : Form
{
! private System.Windows.Forms.MenuItem menuFile;
! private System.Windows.Forms.MenuItem menuFileOpenFolder;
! private System.Windows.Forms.MenuItem menuFileSep1;
! private System.Windows.Forms.MenuItem menuFileExit;
! private System.Windows.Forms.MenuItem menuEdit;
! private System.Windows.Forms.MenuItem menuEditSelectAll;
! private System.Windows.Forms.MenuItem menuEditSelectAllImages;
! private System.Windows.Forms.MenuItem menuEditUnselectAll;
! private System.Windows.Forms.MenuItem menuEditSep1;
! private System.Windows.Forms.MenuItem menuEditReverseSelection;
! private System.Windows.Forms.MenuItem menuEditReverseImageSelection;
! private System.Windows.Forms.MenuItem menuImages;
! private System.Windows.Forms.MenuItem menuImagesCopyTo;
! private System.Windows.Forms.MenuItem menuHelp;
! private System.Windows.Forms.MenuItem menuHelpKeyboard;
! private System.Windows.Forms.MenuItem menuHelpSep1;
! private System.Windows.Forms.MenuItem menuHelpAbout;
private System.Windows.Forms.MainMenu mainMenu;
private System.Windows.Forms.Panel panelTop;
***************
*** 43,55 ****
private iclect.Forms.ImagePreview imagePreview;
private System.Windows.Forms.StatusBar statusBar;
!
! /// <summary>
! /// Required designer variable.
! /// </summary>
! private System.ComponentModel.Container components = null;
private System.Windows.Forms.StatusBarPanel statusBarText;
private System.Windows.Forms.StatusBarPanel statusBarCount;
private System.Windows.Forms.StatusBarPanel statusBarSelected;
private System.Windows.Forms.StatusBarPanel statusBarPosition;
string _title;
--- 43,52 ----
private iclect.Forms.ImagePreview imagePreview;
private System.Windows.Forms.StatusBar statusBar;
! private System.ComponentModel.IContainer components;
private System.Windows.Forms.StatusBarPanel statusBarText;
private System.Windows.Forms.StatusBarPanel statusBarCount;
private System.Windows.Forms.StatusBarPanel statusBarSelected;
private System.Windows.Forms.StatusBarPanel statusBarPosition;
+ private iclect.Forms.Utility.MenuItemHelp menuItemHelp;
string _title;
***************
*** 95,120 ****
private void InitializeComponent()
{
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm));
this.statusBar = new System.Windows.Forms.StatusBar();
this.statusBarText = new System.Windows.Forms.StatusBarPanel();
this.statusBarCount = new System.Windows.Forms.StatusBarPanel();
this.mainMenu = new System.Windows.Forms.MainMenu();
! this.menuFile = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuFileOpenFolder = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuFileSep1 = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuFileExit = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuEdit = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuEditSelectAll = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuEditSelectAllImages = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuEditUnselectAll = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuEditSep1 = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuEditReverseSelection = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuEditReverseImageSelection = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuImages = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuImagesCopyTo = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuHelp = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuHelpKeyboard = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuHelpSep1 = new iclect.Forms.Utility.MenuItemWithHelp();
! this.menuHelpAbout = new iclect.Forms.Utility.MenuItemWithHelp();
this.addressBar = new iclect.Forms.AddressBar();
this.labelAddressBar = new System.Windows.Forms.Label();
--- 92,120 ----
private void InitializeComponent()
{
+ this.components = new System.ComponentModel.Container();
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm));
this.statusBar = new System.Windows.Forms.StatusBar();
this.statusBarText = new System.Windows.Forms.StatusBarPanel();
+ this.statusBarPosition = new System.Windows.Forms.StatusBarPanel();
this.statusBarCount = new System.Windows.Forms.StatusBarPanel();
+ this.statusBarSelected = new System.Windows.Forms.StatusBarPanel();
this.mainMenu = new System.Windows.Forms.MainMenu();
! this.menuFile = new System.Windows.Forms.MenuItem();
! this.menuFileOpenFolder = new System.Windows.Forms.MenuItem();
! this.menuFileSep1 = new System.Windows.Forms.MenuItem();
! this.menuFileExit = new System.Windows.Forms.MenuItem();
! this.menuEdit = new System.Windows.Forms.MenuItem();
! this.menuEditSelectAll = new System.Windows.Forms.MenuItem();
! this.menuEditSelectAllImages = new System.Windows.Forms.MenuItem();
! this.menuEditUnselectAll = new System.Windows.Forms.MenuItem();
! this.menuEditSep1 = new System.Windows.Forms.MenuItem();
! this.menuEditReverseSelection = new System.Windows.Forms.MenuItem();
! this.menuEditReverseImageSelection = new System.Windows.Forms.MenuItem();
! this.menuImages = new System.Windows.Forms.MenuItem();
! this.menuImagesCopyTo = new System.Windows.Forms.MenuItem();
! this.menuHelp = new System.Windows.Forms.MenuItem();
! this.menuHelpKeyboard = new System.Windows.Forms.MenuItem();
! this.menuHelpSep1 = new System.Windows.Forms.MenuItem();
! this.menuHelpAbout = new System.Windows.Forms.MenuItem();
this.addressBar = new iclect.Forms.AddressBar();
this.labelAddressBar = new System.Windows.Forms.Label();
***************
*** 123,134 ****
this.panelTop = new System.Windows.Forms.Panel();
this.panelCenter = new System.Windows.Forms.Panel();
! this.statusBarSelected = new System.Windows.Forms.StatusBarPanel();
! this.statusBarPosition = new System.Windows.Forms.StatusBarPanel();
((System.ComponentModel.ISupportInitialize)(this.statusBarText)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.statusBarCount)).BeginInit();
this.panelTop.SuspendLayout();
this.panelCenter.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.statusBarSelected)).BeginInit();
- ((System.ComponentModel.ISupportInitialize)(this.statusBarPosition)).BeginInit();
this.SuspendLayout();
//
--- 123,133 ----
this.panelTop = new System.Windows.Forms.Panel();
this.panelCenter = new System.Windows.Forms.Panel();
! this.menuItemHelp = new iclect.Forms.Utility.MenuItemHelp(this.components);
((System.ComponentModel.ISupportInitialize)(this.statusBarText)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.statusBarPosition)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.statusBarCount)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.statusBarSelected)).BeginInit();
this.panelTop.SuspendLayout();
this.panelCenter.SuspendLayout();
this.SuspendLayout();
//
***************
*** 154,157 ****
--- 153,164 ----
this.statusBarText.Width = 606;
//
+ // statusBarPosition
+ //
+ this.statusBarPosition.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
+ this.statusBarPosition.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
+ this.statusBarPosition.Text = "n/a";
+ this.statusBarPosition.ToolTipText = "Current position in the folder.";
+ this.statusBarPosition.Width = 30;
+ //
// statusBarCount
//
***************
*** 162,165 ****
--- 169,180 ----
this.statusBarCount.Width = 30;
//
+ // statusBarSelected
+ //
+ this.statusBarSelected.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
+ this.statusBarSelected.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
+ this.statusBarSelected.Text = "n/a";
+ this.statusBarSelected.ToolTipText = "Number of selected file in the folder.";
+ this.statusBarSelected.Width = 30;
+ //
// mainMenu
//
***************
*** 172,176 ****
// menuFile
//
- this.menuFile.HelpText = null;
this.menuFile.Index = 0;
this.menuFile.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
--- 187,190 ----
***************
*** 178,190 ****
this.menuFileSep1,
this.menuFileExit});
- this.menuFile.StatusBar = this.statusBar;
this.menuFile.Text = "&File";
//
// menuFileOpenFolder
//
! this.menuFileOpenFolder.HelpText = "Open a folder for viewing.";
this.menuFileOpenFolder.Index = 0;
this.menuFileOpenFolder.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
- this.menuFileOpenFolder.StatusBar = this.statusBar;
this.menuFileOpenFolder.Text = "&Open Folder...";
this.menuFileOpenFolder.Click += new System.EventHandler(this.OnFileOpenFolder);
--- 192,202 ----
this.menuFileSep1,
this.menuFileExit});
this.menuFile.Text = "&File";
//
// menuFileOpenFolder
//
! this.menuItemHelp.SetHelpText(this.menuFileOpenFolder, "Open a folder for viewing.");
this.menuFileOpenFolder.Index = 0;
this.menuFileOpenFolder.Shortcut = System.Windows.Forms.Shortcut.CtrlO;
this.menuFileOpenFolder.Text = "&Open Folder...";
this.menuFileOpenFolder.Click += new System.EventHandler(this.OnFileOpenFolder);
***************
*** 192,205 ****
// menuFileSep1
//
- this.menuFileSep1.HelpText = null;
this.menuFileSep1.Index = 1;
- this.menuFileSep1.StatusBar = null;
this.menuFileSep1.Text = "-";
//
// menuFileExit
//
! this.menuFileExit.HelpText = "Exit iclect.";
this.menuFileExit.Index = 2;
- this.menuFileExit.StatusBar = this.statusBar;
this.menuFileExit.Text = "E&xit";
this.menuFileExit.Click += new System.EventHandler(this.OnFileExit);
--- 204,214 ----
// menuFileSep1
//
this.menuFileSep1.Index = 1;
this.menuFileSep1.Text = "-";
//
// menuFileExit
//
! this.menuItemHelp.SetHelpText(this.menuFileExit, "Exit iclect.");
this.menuFileExit.Index = 2;
this.menuFileExit.Text = "E&xit";
this.menuFileExit.Click += new System.EventHandler(this.OnFileExit);
***************
*** 207,211 ****
// menuEdit
//
- this.menuEdit.HelpText = null;
this.menuEdit.Index = 1;
this.menuEdit.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
--- 216,219 ----
***************
*** 216,220 ****
this.menuEditReverseSelection,
this.menuEditReverseImageSelection});
- this.menuEdit.StatusBar = this.statusBar;
this.menuEdit.Text = "&Edit";
this.menuEdit.Popup += new System.EventHandler(this.OnMenuPopup);
--- 224,227 ----
***************
*** 222,229 ****
// menuEditSelectAll
//
! this.menuEditSelectAll.HelpText = "Select all files.";
this.menuEditSelectAll.Index = 0;
this.menuEditSelectAll.Shortcut = System.Windows.Forms.Shortcut.CtrlA;
- this.menuEditSelectAll.StatusBar = this.statusBar;
this.menuEditSelectAll.Text = "Select &All";
this.menuEditSelectAll.Click += new System.EventHandler(this.OnEditSelectAll);
--- 229,235 ----
// menuEditSelectAll
//
! this.menuItemHelp.SetHelpText(this.menuEditSelectAll, "Select all files.");
this.menuEditSelectAll.Index = 0;
this.menuEditSelectAll.Shortcut = System.Windows.Forms.Shortcut.CtrlA;
this.menuEditSelectAll.Text = "Select &All";
this.menuEditSelectAll.Click += new System.EventHandler(this.OnEditSelectAll);
***************
*** 231,238 ****
// menuEditSelectAllImages
//
! this.menuEditSelectAllImages.HelpText = "Select all images.";
this.menuEditSelectAllImages.Index = 1;
this.menuEditSelectAllImages.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftA;
- this.menuEditSelectAllImages.StatusBar = this.statusBar;
this.menuEditSelectAllImages.Text = "Select All &Images";
this.menuEditSelectAllImages.Click += new System.EventHandler(this.OnEditSelectAllImages);
--- 237,243 ----
// menuEditSelectAllImages
//
! this.menuItemHelp.SetHelpText(this.menuEditSelectAllImages, "Select all images.");
this.menuEditSelectAllImages.Index = 1;
this.menuEditSelectAllImages.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftA;
this.menuEditSelectAllImages.Text = "Select All &Images";
this.menuEditSelectAllImages.Click += new System.EventHandler(this.OnEditSelectAllImages);
***************
*** 240,247 ****
// menuEditUnselectAll
//
! this.menuEditUnselectAll.HelpText = "Unselect all.";
this.menuEditUnselectAll.Index = 2;
this.menuEditUnselectAll.Shortcut = System.Windows.Forms.Shortcut.CtrlU;
- this.menuEditUnselectAll.StatusBar = this.statusBar;
this.menuEditUnselectAll.Text = "&Unselect All";
this.menuEditUnselectAll.Click += new System.EventHandler(this.OnEditUnselectAll);
--- 245,251 ----
// menuEditUnselectAll
//
! this.menuItemHelp.SetHelpText(this.menuEditUnselectAll, "Unselect all.");
this.menuEditUnselectAll.Index = 2;
this.menuEditUnselectAll.Shortcut = System.Windows.Forms.Shortcut.CtrlU;
this.menuEditUnselectAll.Text = "&Unselect All";
this.menuEditUnselectAll.Click += new System.EventHandler(this.OnEditUnselectAll);
***************
*** 249,263 ****
// menuEditSep1
//
- this.menuEditSep1.HelpText = null;
this.menuEditSep1.Index = 3;
- this.menuEditSep1.StatusBar = null;
this.menuEditSep1.Text = "-";
//
// menuEditReverseSelection
//
! this.menuEditReverseSelection.HelpText = "Reverse the selection.";
this.menuEditReverseSelection.Index = 4;
this.menuEditReverseSelection.Shortcut = System.Windows.Forms.Shortcut.CtrlR;
- this.menuEditReverseSelection.StatusBar = this.statusBar;
this.menuEditReverseSelection.Text = "&Reverse Selection";
this.menuEditReverseSelection.Click += new System.EventHandler(this.OnEditReverseSelection);
--- 253,264 ----
// menuEditSep1
//
this.menuEditSep1.Index = 3;
this.menuEditSep1.Text = "-";
//
// menuEditReverseSelection
//
! this.menuItemHelp.SetHelpText(this.menuEditReverseSelection, "Reverse the selection.");
this.menuEditReverseSelection.Index = 4;
this.menuEditReverseSelection.Shortcut = System.Windows.Forms.Shortcut.CtrlR;
this.menuEditReverseSelection.Text = "&Reverse Selection";
this.menuEditReverseSelection.Click += new System.EventHandler(this.OnEditReverseSelection);
***************
*** 265,272 ****
// menuEditReverseImageSelection
//
! this.menuEditReverseImageSelection.HelpText = "Reverse the selection of images only.";
this.menuEditReverseImageSelection.Index = 5;
this.menuEditReverseImageSelection.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftR;
- this.menuEditReverseImageSelection.StatusBar = this.statusBar;
this.menuEditReverseImageSelection.Text = "Re&verse Image Selection";
this.menuEditReverseImageSelection.Click += new System.EventHandler(this.OnEditReverseImageSelection);
--- 266,272 ----
// menuEditReverseImageSelection
//
! this.menuItemHelp.SetHelpText(this.menuEditReverseImageSelection, "Reverse the selection of images only.");
this.menuEditReverseImageSelection.Index = 5;
this.menuEditReverseImageSelection.Shortcut = System.Windows.Forms.Shortcut.CtrlShiftR;
this.menuEditReverseImageSelection.Text = "Re&verse Image Selection";
this.menuEditReverseImageSelection.Click += new System.EventHandler(this.OnEditReverseImageSelection);
***************
*** 274,282 ****
// menuImages
//
- this.menuImages.HelpText = null;
this.menuImages.Index = 2;
this.menuImages.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
this.menuImagesCopyTo});
- this.menuImages.StatusBar = this.statusBar;
this.menuImages.Text = "&Images";
this.menuImages.Popup += new System.EventHandler(this.OnMenuPopup);
--- 274,280 ----
***************
*** 284,291 ****
// menuImagesCopyTo
//
! this.menuImagesCopyTo.HelpText = "Copy selected images to a folder.";
this.menuImagesCopyTo.Index = 0;
this.menuImagesCopyTo.Shortcut = System.Windows.Forms.Shortcut.CtrlF;
- this.menuImagesCopyTo.StatusBar = this.statusBar;
this.menuImagesCopyTo.Text = "&Copy to...";
this.menuImagesCopyTo.Click += new System.EventHandler(this.OnImagesCopyToFolder);
--- 282,288 ----
// menuImagesCopyTo
//
! this.menuItemHelp.SetHelpText(this.menuImagesCopyTo, "Copy selected images to a folder.");
this.menuImagesCopyTo.Index = 0;
this.menuImagesCopyTo.Shortcut = System.Windows.Forms.Shortcut.CtrlF;
this.menuImagesCopyTo.Text = "&Copy to...";
this.menuImagesCopyTo.Click += new System.EventHandler(this.OnImagesCopyToFolder);
***************
*** 293,297 ****
// menuHelp
//
- this.menuHelp.HelpText = null;
this.menuHelp.Index = 3;
this.menuHelp.MenuItems.AddRange(new System.Windows.Forms.MenuItem[] {
--- 290,293 ----
***************
*** 299,311 ****
this.menuHelpSep1,
this.menuHelpAbout});
- this.menuHelp.StatusBar = this.statusBar;
this.menuHelp.Text = "&Help";
//
// menuHelpKeyboard
//
! this.menuHelpKeyboard.HelpText = "Show keyboard help.";
this.menuHelpKeyboard.Index = 0;
this.menuHelpKeyboard.Shortcut = System.Windows.Forms.Shortcut.F1;
- this.menuHelpKeyboard.StatusBar = this.statusBar;
this.menuHelpKeyboard.Text = "&Keyboard...";
this.menuHelpKeyboard.Click += new System.EventHandler(this.OnHelpKeyboard);
--- 295,305 ----
this.menuHelpSep1,
this.menuHelpAbout});
this.menuHelp.Text = "&Help";
//
// menuHelpKeyboard
//
! this.menuItemHelp.SetHelpText(this.menuHelpKeyboard, "Show keyboard help.");
this.menuHelpKeyboard.Index = 0;
this.menuHelpKeyboard.Shortcut = System.Windows.Forms.Shortcut.F1;
this.menuHelpKeyboard.Text = "&Keyboard...";
this.menuHelpKeyboard.Click += new System.EventHandler(this.OnHelpKeyboard);
***************
*** 313,326 ****
// menuHelpSep1
//
- this.menuHelpSep1.HelpText = null;
this.menuHelpSep1.Index = 1;
- this.menuHelpSep1.StatusBar = null;
this.menuHelpSep1.Text = "-";
//
// menuHelpAbout
//
! this.menuHelpAbout.HelpText = "Show info about iclect.";
this.menuHelpAbout.Index = 2;
- this.menuHelpAbout.StatusBar = this.statusBar;
this.menuHelpAbout.Text = "&About...";
this.menuHelpAbout.Click += new System.EventHandler(this.OnHelpAbout);
--- 307,317 ----
// menuHelpSep1
//
this.menuHelpSep1.Index = 1;
this.menuHelpSep1.Text = "-";
//
// menuHelpAbout
//
! this.menuItemHelp.SetHelpText(this.menuHelpAbout, "Show info about iclect.");
this.menuHelpAbout.Index = 2;
this.menuHelpAbout.Text = "&About...";
this.menuHelpAbout.Click += new System.EventHandler(this.OnHelpAbout);
***************
*** 334,337 ****
--- 325,329 ----
this.addressBar.Name = "addressBar";
this.addressBar.Size = new System.Drawing.Size(632, 26);
+ this.addressBar.StatusBar = this.statusBar;
this.addressBar.TabIndex = 1;
this.addressBar.FolderChanged += new iclect.Forms.AddressBar.FolderChangedHandler(this.OnFolderChanged);
***************
*** 399,417 ****
this.panelCenter.TabIndex = 3;
//
! // statusBarSelected
! //
! this.statusBarSelected.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
! this.statusBarSelected.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
! this.statusBarSelected.Text = "n/a";
! this.statusBarSelected.ToolTipText = "Number of selected file in the folder.";
! this.statusBarSelected.Width = 30;
! //
! // statusBarPosition
//
! this.statusBarPosition.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
! this.statusBarPosition.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
! this.statusBarPosition.Text = "n/a";
! this.statusBarPosition.ToolTipText = "Current position in the folder.";
! this.statusBarPosition.Width = 30;
//
// MainForm
--- 391,397 ----
this.panelCenter.TabIndex = 3;
//
! // menuItemHelp
//
! this.menuItemHelp.StatusBar = this.statusBar;
//
// MainForm
***************
*** 431,439 ****
this.MenuComplete += new System.EventHandler(this.OnMenuComplete);
((System.ComponentModel.ISupportInitialize)(this.statusBarText)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.statusBarCount)).EndInit();
this.panelTop.ResumeLayout(false);
this.panelCenter.ResumeLayout(false);
- ((System.ComponentModel.ISupportInitialize)(this.statusBarSelected)).EndInit();
- ((System.ComponentModel.ISupportInitialize)(this.statusBarPosition)).EndInit();
this.ResumeLayout(false);
--- 411,419 ----
this.MenuComplete += new System.EventHandler(this.OnMenuComplete);
((System.ComponentModel.ISupportInitialize)(this.statusBarText)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.statusBarPosition)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.statusBarCount)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.statusBarSelected)).EndInit();
this.panelTop.ResumeLayout(false);
this.panelCenter.ResumeLayout(false);
this.ResumeLayout(false);
Index: MainForm.resx
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/MainForm.resx,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** MainForm.resx 6 Jul 2003 21:13:50 -0000 1.9
--- MainForm.resx 25 Jul 2003 17:07:48 -0000 1.10
***************
*** 113,116 ****
--- 113,122 ----
<value>Private</value>
</data>
+ <data name="statusBarPosition.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="statusBarPosition.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
<data name="statusBarCount.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
***************
*** 119,122 ****
--- 125,134 ----
<value>Private</value>
</data>
+ <data name="statusBarSelected.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="statusBarSelected.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
<data name="mainMenu.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
***************
*** 266,272 ****
<value>Private</value>
</data>
- <data name="panelTop.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
- <value>True</value>
- </data>
<data name="panelTop.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
--- 278,281 ----
***************
*** 281,284 ****
--- 290,296 ----
<value>8, 8</value>
</data>
+ <data name="panelTop.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>True</value>
+ </data>
<data name="panelTop.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
***************
*** 302,315 ****
<value>Private</value>
</data>
! <data name="statusBarSelected.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="statusBarSelected.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="statusBarPosition.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
</data>
! <data name="statusBarPosition.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
--- 314,324 ----
<value>Private</value>
</data>
! <data name="menuItemHelp.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="menuItemHelp.Location" type="System.Drawing.Point, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
! <value>120, 17</value>
</data>
! <data name="menuItemHelp.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
***************
*** 317,323 ****
<value>False</value>
</data>
- <data name="$this.Name">
- <value>MainForm</value>
- </data>
<data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>(Default)</value>
--- 326,329 ----
***************
*** 331,334 ****
--- 337,343 ----
<data name="$this.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
+ </data>
+ <data name="$this.Name">
+ <value>MainForm</value>
</data>
<data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
From: Michael P. <mh...@us...> - 2003-07-26 07:19:33
|
Update of /cvsroot/iclect/iclect/src In directory sc8-pr-cvs1:/tmp/cvs-serv30005 Modified Files: iclect.sln Log Message: Changed MenuItems from (iclect) MenuItemWithHelp to (System) MenuItem with (iclect) MenuItemHelp extension class. Index: iclect.sln =================================================================== RCS file: /cvsroot/iclect/iclect/src/iclect.sln,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** iclect.sln 3 Jul 2003 17:32:49 -0000 1.6 --- iclect.sln 25 Jul 2003 17:07:47 -0000 1.7 *************** *** 50,53 **** --- 50,54 ---- iclect.ndoc = iclect.ndoc ..\web\index.html = ..\web\index.html + TODO.txt = TODO.txt EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution |
|
From: Michael P. <mh...@us...> - 2003-07-26 06:21:08
|
Update of /cvsroot/iclect/iclect/src/iclect
In directory sc8-pr-cvs1:/tmp/cvs-serv3472
Modified Files:
MainForm.cs
Log Message:
Removed FileInfo from ImageFile.
Index: MainForm.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/MainForm.cs,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** MainForm.cs 6 Jul 2003 21:13:50 -0000 1.14
--- MainForm.cs 25 Jul 2003 15:34:14 -0000 1.15
***************
*** 526,530 ****
if (imageFile != null)
{
! Debug.WriteLine(imageFile.FileInfo.Name);
imagePreview.ImageReference = imageFile.GetImageReference();
}
--- 526,530 ----
if (imageFile != null)
{
! Debug.WriteLine(imageFile.Name);
imagePreview.ImageReference = imageFile.GetImageReference();
}
***************
*** 593,598 ****
foreach (ImageFile imageFile in film.ImageFolder.SelectedImageFiles)
{
! string source = imageFile.FileInfo.FullName;
! string target = Path.Combine(selectedFolder, imageFile.FileInfo.Name);
try
{
--- 593,598 ----
foreach (ImageFile imageFile in film.ImageFolder.SelectedImageFiles)
{
! string source = imageFile.FullName;
! string target = Path.Combine(selectedFolder, imageFile.Name);
try
{
|
|
From: Michael P. <mh...@us...> - 2003-07-18 07:55:39
|
Update of /cvsroot/iclect/iclect/src/iclect.Forms
In directory sc8-pr-cvs1:/tmp/cvs-serv26134/src/iclect.Forms
Modified Files:
FilmPanels.cs
Log Message:
Check index before setting tooltip.
Index: FilmPanels.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.Forms/FilmPanels.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** FilmPanels.cs 27 Jun 2003 02:31:42 -0000 1.2
--- FilmPanels.cs 18 Jul 2003 07:55:36 -0000 1.3
***************
*** 400,404 ****
index += (panel.ID * _maxThumbsPerPanel);
! if (index != _toolTipIndex)
{
_toolTipIndex = index;
--- 400,406 ----
index += (panel.ID * _maxThumbsPerPanel);
! if ((index != _toolTipIndex)
! && (0 <= index)
! && (index < _film.ImageCount))
{
_toolTipIndex = index;
|
|
From: Michael P. <mh...@us...> - 2003-07-06 21:18:59
|
Update of /cvsroot/iclect/iclect/src/iclect.Forms/Utility In directory sc8-pr-cvs1:/tmp/cvs-serv3952 Added Files: MenuItemWithHelp.resx Log Message: no message --- NEW FILE: MenuItemWithHelp.resx --- <?xml version="1.0" encoding="utf-8" ?> <root> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="ResMimeType"> <value>text/microsoft-resx</value> </resheader> <resheader name="Version"> <value>1.0.0.0</value> </resheader> <resheader name="Reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="Writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> </root> |
|
From: Michael P. <mh...@us...> - 2003-07-06 21:13:52
|
Update of /cvsroot/iclect/iclect/src/iclect
In directory sc8-pr-cvs1:/tmp/cvs-serv3082/src/iclect
Modified Files:
AboutDialog.cs AboutDialog.resx MainForm.cs MainForm.resx
Log Message:
no message
Index: AboutDialog.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/AboutDialog.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AboutDialog.cs 4 Jul 2003 14:49:53 -0000 1.3
--- AboutDialog.cs 6 Jul 2003 21:13:50 -0000 1.4
***************
*** 15,24 ****
{
private System.Windows.Forms.Button buttonOK;
- private System.Windows.Forms.Label labelVersion;
private System.Windows.Forms.PictureBox icon;
private System.Windows.Forms.RichTextBox richTextBox;
private System.Windows.Forms.Label label2;
- private System.Windows.Forms.LinkLabel linkLabel;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label labelRuntime;
/// <summary>
--- 15,25 ----
{
private System.Windows.Forms.Button buttonOK;
private System.Windows.Forms.PictureBox icon;
private System.Windows.Forms.RichTextBox richTextBox;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.LinkLabel linkProjectHomepage;
+ private System.Windows.Forms.Label label3;
+ private System.Windows.Forms.Label labelAssembly;
private System.Windows.Forms.Label labelRuntime;
/// <summary>
***************
*** 38,42 ****
richTextBox.LoadFile(stream, RichTextBoxStreamType.RichText);
! linkLabel.Links[0].LinkData = "http://iclect.sourceforge.net";
}
--- 39,43 ----
richTextBox.LoadFile(stream, RichTextBoxStreamType.RichText);
! linkProjectHomepage.Links[0].LinkData = "http://iclect.sourceforge.net";
}
***************
*** 65,75 ****
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(AboutDialog));
this.buttonOK = new System.Windows.Forms.Button();
! this.labelVersion = new System.Windows.Forms.Label();
this.icon = new System.Windows.Forms.PictureBox();
this.richTextBox = new System.Windows.Forms.RichTextBox();
this.label2 = new System.Windows.Forms.Label();
! this.linkLabel = new System.Windows.Forms.LinkLabel();
this.label1 = new System.Windows.Forms.Label();
this.labelRuntime = new System.Windows.Forms.Label();
this.SuspendLayout();
//
--- 66,77 ----
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(AboutDialog));
this.buttonOK = new System.Windows.Forms.Button();
! this.labelAssembly = new System.Windows.Forms.Label();
this.icon = new System.Windows.Forms.PictureBox();
this.richTextBox = new System.Windows.Forms.RichTextBox();
this.label2 = new System.Windows.Forms.Label();
! this.linkProjectHomepage = new System.Windows.Forms.LinkLabel();
this.label1 = new System.Windows.Forms.Label();
this.labelRuntime = new System.Windows.Forms.Label();
+ this.label3 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
***************
*** 83,95 ****
this.buttonOK.Text = "OK";
//
! // labelVersion
//
! this.labelVersion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
! this.labelVersion.Location = new System.Drawing.Point(168, 320);
! this.labelVersion.Name = "labelVersion";
! this.labelVersion.Size = new System.Drawing.Size(176, 16);
! this.labelVersion.TabIndex = 1;
! this.labelVersion.Text = "Version";
//
// icon
--- 85,97 ----
this.buttonOK.Text = "OK";
//
! // labelAssembly
//
! this.labelAssembly.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
! this.labelAssembly.Location = new System.Drawing.Point(168, 320);
! this.labelAssembly.Name = "labelAssembly";
! this.labelAssembly.Size = new System.Drawing.Size(176, 16);
! this.labelAssembly.TabIndex = 1;
! this.labelAssembly.Text = "Version";
//
// icon
***************
*** 127,142 ****
this.label2.Text = "Assembly Version:";
//
! // linkLabel
//
! this.linkLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
! this.linkLabel.LinkArea = new System.Windows.Forms.LinkArea(22, 22);
! this.linkLabel.Location = new System.Drawing.Point(64, 304);
! this.linkLabel.Name = "linkLabel";
! this.linkLabel.Size = new System.Drawing.Size(280, 16);
! this.linkLabel.TabIndex = 5;
! this.linkLabel.TabStop = true;
! this.linkLabel.Text = "Project home page: iclect.sourceforge.net";
! this.linkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnClickedHomepage);
//
// label1
--- 129,144 ----
this.label2.Text = "Assembly Version:";
//
! // linkProjectHomepage
//
! this.linkProjectHomepage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
! this.linkProjectHomepage.LinkArea = new System.Windows.Forms.LinkArea(0, 29);
! this.linkProjectHomepage.Location = new System.Drawing.Point(168, 304);
! this.linkProjectHomepage.Name = "linkProjectHomepage";
! this.linkProjectHomepage.Size = new System.Drawing.Size(176, 16);
! this.linkProjectHomepage.TabIndex = 5;
! this.linkProjectHomepage.TabStop = true;
! this.linkProjectHomepage.Text = "http://iclect.sourceforge.net";
! this.linkProjectHomepage.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnClickedHomepage);
//
// label1
***************
*** 160,163 ****
--- 162,175 ----
this.labelRuntime.Text = "Version";
//
+ // label3
+ //
+ this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.label3.Location = new System.Drawing.Point(64, 304);
+ this.label3.Name = "label3";
+ this.label3.Size = new System.Drawing.Size(104, 16);
+ this.label3.TabIndex = 4;
+ this.label3.Text = "Project Homepage:";
+ //
// AboutDialog
//
***************
*** 166,177 ****
this.CancelButton = this.buttonOK;
this.ClientSize = new System.Drawing.Size(450, 359);
! this.Controls.Add(this.linkLabel);
this.Controls.Add(this.richTextBox);
this.Controls.Add(this.icon);
this.Controls.Add(this.buttonOK);
! this.Controls.Add(this.labelVersion);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.labelRuntime);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
--- 178,190 ----
this.CancelButton = this.buttonOK;
this.ClientSize = new System.Drawing.Size(450, 359);
! this.Controls.Add(this.linkProjectHomepage);
this.Controls.Add(this.richTextBox);
this.Controls.Add(this.icon);
this.Controls.Add(this.buttonOK);
! this.Controls.Add(this.labelAssembly);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.labelRuntime);
+ this.Controls.Add(this.label3);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
***************
*** 192,196 ****
ProcessModule main = proc.MainModule;
FileVersionInfo info = main.FileVersionInfo;
! this.labelVersion.Text = info.ProductVersion;
Assembly assembly = Assembly.GetAssembly(typeof(Assembly));
--- 205,209 ----
ProcessModule main = proc.MainModule;
FileVersionInfo info = main.FileVersionInfo;
! this.labelAssembly.Text = info.ProductVersion;
Assembly assembly = Assembly.GetAssembly(typeof(Assembly));
Index: AboutDialog.resx
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/AboutDialog.resx,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AboutDialog.resx 4 Jul 2003 14:49:53 -0000 1.3
--- AboutDialog.resx 6 Jul 2003 21:13:50 -0000 1.4
***************
*** 107,117 ****
<value>Private</value>
</data>
! <data name="labelVersion.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
! <data name="labelVersion.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="labelVersion.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
--- 107,117 ----
<value>Private</value>
</data>
! <data name="labelAssembly.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
! <data name="labelAssembly.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="labelAssembly.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
***************
*** 157,167 ****
<value>Private</value>
</data>
! <data name="linkLabel.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="linkLabel.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="linkLabel.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
--- 157,167 ----
<value>Private</value>
</data>
! <data name="linkProjectHomepage.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="linkProjectHomepage.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="linkProjectHomepage.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
***************
*** 182,185 ****
--- 182,194 ----
</data>
<data name="labelRuntime.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="label3.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="label3.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="label3.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
Index: MainForm.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/MainForm.cs,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** MainForm.cs 4 Jul 2003 23:49:53 -0000 1.13
--- MainForm.cs 6 Jul 2003 21:13:50 -0000 1.14
***************
*** 50,53 ****
--- 50,55 ----
private System.Windows.Forms.StatusBarPanel statusBarText;
private System.Windows.Forms.StatusBarPanel statusBarCount;
+ private System.Windows.Forms.StatusBarPanel statusBarSelected;
+ private System.Windows.Forms.StatusBarPanel statusBarPosition;
string _title;
***************
*** 121,128 ****
--- 123,134 ----
this.panelTop = new System.Windows.Forms.Panel();
this.panelCenter = new System.Windows.Forms.Panel();
+ this.statusBarSelected = new System.Windows.Forms.StatusBarPanel();
+ this.statusBarPosition = new System.Windows.Forms.StatusBarPanel();
((System.ComponentModel.ISupportInitialize)(this.statusBarText)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.statusBarCount)).BeginInit();
this.panelTop.SuspendLayout();
this.panelCenter.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.statusBarSelected)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.statusBarPosition)).BeginInit();
this.SuspendLayout();
//
***************
*** 133,137 ****
this.statusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
this.statusBarText,
! this.statusBarCount});
this.statusBar.ShowPanels = true;
this.statusBar.Size = new System.Drawing.Size(712, 22);
--- 139,145 ----
this.statusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
this.statusBarText,
! this.statusBarPosition,
! this.statusBarCount,
! this.statusBarSelected});
this.statusBar.ShowPanels = true;
this.statusBar.Size = new System.Drawing.Size(712, 22);
***************
*** 144,148 ****
this.statusBarText.BorderStyle = System.Windows.Forms.StatusBarPanelBorderStyle.None;
this.statusBarText.Text = "Ready.";
! this.statusBarText.Width = 666;
//
// statusBarCount
--- 152,156 ----
this.statusBarText.BorderStyle = System.Windows.Forms.StatusBarPanelBorderStyle.None;
this.statusBarText.Text = "Ready.";
! this.statusBarText.Width = 606;
//
// statusBarCount
***************
*** 391,394 ****
--- 399,418 ----
this.panelCenter.TabIndex = 3;
//
+ // statusBarSelected
+ //
+ this.statusBarSelected.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
+ this.statusBarSelected.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
+ this.statusBarSelected.Text = "n/a";
+ this.statusBarSelected.ToolTipText = "Number of selected file in the folder.";
+ this.statusBarSelected.Width = 30;
+ //
+ // statusBarPosition
+ //
+ this.statusBarPosition.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
+ this.statusBarPosition.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
+ this.statusBarPosition.Text = "n/a";
+ this.statusBarPosition.ToolTipText = "Current position in the folder.";
+ this.statusBarPosition.Width = 30;
+ //
// MainForm
//
***************
*** 410,413 ****
--- 434,439 ----
this.panelTop.ResumeLayout(false);
this.panelCenter.ResumeLayout(false);
+ ((System.ComponentModel.ISupportInitialize)(this.statusBarSelected)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.statusBarPosition)).EndInit();
this.ResumeLayout(false);
***************
*** 503,506 ****
--- 529,537 ----
imagePreview.ImageReference = imageFile.GetImageReference();
}
+ int index = e.Index;
+ if (index >= 0)
+ {
+ this.statusBarPosition.Text = (index + 1).ToString();
+ }
}
***************
*** 564,569 ****
string source = imageFile.FileInfo.FullName;
string target = Path.Combine(selectedFolder, imageFile.FileInfo.Name);
! File.Copy(source, target, true);
! File.SetAttributes(target, FileAttributes.Normal);
}
}
--- 595,607 ----
string source = imageFile.FileInfo.FullName;
string target = Path.Combine(selectedFolder, imageFile.FileInfo.Name);
! try
! {
! File.Copy(source, target, false);
! File.SetAttributes(target, FileAttributes.Normal);
! }
! catch (Exception ex)
! {
! Debug.WriteLine(ex.Message);
! }
}
}
Index: MainForm.resx
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/MainForm.resx,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** MainForm.resx 4 Jul 2003 23:49:53 -0000 1.8
--- MainForm.resx 6 Jul 2003 21:13:50 -0000 1.9
***************
*** 230,236 ****
<value>Private</value>
</data>
- <data name="addressBar.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
- <value>Private</value>
- </data>
<data name="addressBar.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
--- 230,233 ----
***************
*** 239,242 ****
--- 236,242 ----
<value>Private</value>
</data>
+ <data name="addressBar.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
<data name="labelAddressBar.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
***************
*** 266,269 ****
--- 266,272 ----
<value>Private</value>
</data>
+ <data name="panelTop.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>True</value>
+ </data>
<data name="panelTop.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
***************
*** 278,290 ****
<value>8, 8</value>
</data>
- <data name="panelTop.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
- <value>True</value>
- </data>
<data name="panelTop.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
- <data name="panelCenter.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
- <value>8, 8</value>
- </data>
<data name="panelCenter.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
--- 281,287 ----
***************
*** 296,299 ****
--- 293,299 ----
<value>Private</value>
</data>
+ <data name="panelCenter.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+ <value>8, 8</value>
+ </data>
<data name="panelCenter.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
***************
*** 302,308 ****
--- 302,323 ----
<value>Private</value>
</data>
+ <data name="statusBarSelected.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="statusBarSelected.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="statusBarPosition.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="statusBarPosition.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
<data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
+ <data name="$this.Name">
+ <value>MainForm</value>
+ </data>
<data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>(Default)</value>
***************
*** 325,331 ****
<data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
- </data>
- <data name="$this.Name">
- <value>MainForm</value>
</data>
<data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
--- 340,343 ----
|
|
From: Michael P. <mh...@us...> - 2003-07-04 23:50:09
|
Update of /cvsroot/iclect/iclect/src/iclect.Forms/Utility
In directory sc8-pr-cvs1:/tmp/cvs-serv29448/src/iclect.Forms/Utility
Modified Files:
MenuItemWithHelp.cs
Log Message:
Enhanced title and status bar.
Index: MenuItemWithHelp.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.Forms/Utility/MenuItemWithHelp.cs,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** MenuItemWithHelp.cs 22 Jun 2003 20:01:31 -0000 1.1.1.1
--- MenuItemWithHelp.cs 4 Jul 2003 23:49:53 -0000 1.2
***************
*** 74,79 ****
protected override void OnSelect(System.EventArgs e)
{
! if ((_statusBar != null) && (_helpText != null))
_statusBar.Text = _helpText;
}
}
--- 74,83 ----
protected override void OnSelect(System.EventArgs e)
{
! if (_statusBar != null)
! {
_statusBar.Text = _helpText;
+ if (_statusBar.Panels[0] != null)
+ _statusBar.Panels[0].Text = _helpText;
+ }
}
}
|
|
From: Michael P. <mh...@us...> - 2003-07-04 23:50:09
|
Update of /cvsroot/iclect/iclect/src/iclect
In directory sc8-pr-cvs1:/tmp/cvs-serv29448/src/iclect
Modified Files:
MainForm.cs MainForm.resx
Log Message:
Enhanced title and status bar.
Index: MainForm.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/MainForm.cs,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** MainForm.cs 4 Jul 2003 14:49:53 -0000 1.12
--- MainForm.cs 4 Jul 2003 23:49:53 -0000 1.13
***************
*** 48,52 ****
--- 48,55 ----
/// </summary>
private System.ComponentModel.Container components = null;
+ private System.Windows.Forms.StatusBarPanel statusBarText;
+ private System.Windows.Forms.StatusBarPanel statusBarCount;
+ string _title;
public MainForm()
{
***************
*** 55,58 ****
--- 58,63 ----
//
InitializeComponent();
+
+ _title = this.Text;
}
***************
*** 90,93 ****
--- 95,100 ----
System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(MainForm));
this.statusBar = new System.Windows.Forms.StatusBar();
+ this.statusBarText = new System.Windows.Forms.StatusBarPanel();
+ this.statusBarCount = new System.Windows.Forms.StatusBarPanel();
this.mainMenu = new System.Windows.Forms.MainMenu();
this.menuFile = new iclect.Forms.Utility.MenuItemWithHelp();
***************
*** 114,117 ****
--- 121,126 ----
this.panelTop = new System.Windows.Forms.Panel();
this.panelCenter = new System.Windows.Forms.Panel();
+ ((System.ComponentModel.ISupportInitialize)(this.statusBarText)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.statusBarCount)).BeginInit();
this.panelTop.SuspendLayout();
this.panelCenter.SuspendLayout();
***************
*** 122,129 ****
--- 131,157 ----
this.statusBar.Location = new System.Drawing.Point(0, 499);
this.statusBar.Name = "statusBar";
+ this.statusBar.Panels.AddRange(new System.Windows.Forms.StatusBarPanel[] {
+ this.statusBarText,
+ this.statusBarCount});
+ this.statusBar.ShowPanels = true;
this.statusBar.Size = new System.Drawing.Size(712, 22);
this.statusBar.TabIndex = 0;
this.statusBar.Text = "Ready.";
//
+ // statusBarText
+ //
+ this.statusBarText.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Spring;
+ this.statusBarText.BorderStyle = System.Windows.Forms.StatusBarPanelBorderStyle.None;
+ this.statusBarText.Text = "Ready.";
+ this.statusBarText.Width = 666;
+ //
+ // statusBarCount
+ //
+ this.statusBarCount.Alignment = System.Windows.Forms.HorizontalAlignment.Center;
+ this.statusBarCount.AutoSize = System.Windows.Forms.StatusBarPanelAutoSize.Contents;
+ this.statusBarCount.Text = "n/a";
+ this.statusBarCount.ToolTipText = "Number of files in the folder.";
+ this.statusBarCount.Width = 30;
+ //
// mainMenu
//
***************
*** 378,381 ****
--- 406,411 ----
this.MenuStart += new System.EventHandler(this.OnMenuStart);
this.MenuComplete += new System.EventHandler(this.OnMenuComplete);
+ ((System.ComponentModel.ISupportInitialize)(this.statusBarText)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.statusBarCount)).EndInit();
this.panelTop.ResumeLayout(false);
this.panelCenter.ResumeLayout(false);
***************
*** 405,412 ****
private void OnMenuComplete(object sender, System.EventArgs e)
{
! this.statusBar.Text = _savedStatusBarText;
}
#endregion
private void OnFolderChanged(object sender, AddressBar.FolderChangedEventArgs e)
{
--- 435,444 ----
private void OnMenuComplete(object sender, System.EventArgs e)
{
! this.statusBar.Text = _savedStatusBarText;
! this.statusBarText.Text = _savedStatusBarText;
}
#endregion
+
private void OnFolderChanged(object sender, AddressBar.FolderChangedEventArgs e)
{
***************
*** 414,417 ****
--- 446,453 ----
try
{
+ this.Text = _title;
+ this.statusBar.SuspendLayout();
+ this.statusBar.ShowPanels = false;
+
if (imagePreview.ImageReference != null)
{
***************
*** 434,440 ****
--- 470,481 ----
{
Debug.WriteLine(path);
+ this.Text = string.Format("{0} - {1}",
+ Path.GetFileName(path),
+ _title);
ImageFolder imageFolder = new ImageFolder(path);
+ this.statusBarCount.Text = imageFolder.ImageFiles.Length.ToString();
film.ImageFolder = imageFolder;
film.Focus();
+ this.statusBar.ShowPanels = true;
}
}
***************
*** 442,445 ****
--- 483,487 ----
{
film.ResumeLayout();
+ this.statusBar.ResumeLayout();
}
}
Index: MainForm.resx
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/MainForm.resx,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** MainForm.resx 4 Jul 2003 14:49:53 -0000 1.7
--- MainForm.resx 4 Jul 2003 23:49:53 -0000 1.8
***************
*** 107,110 ****
--- 107,122 ----
<value>Private</value>
</data>
+ <data name="statusBarText.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="statusBarText.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="statusBarCount.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="statusBarCount.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
<data name="mainMenu.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
***************
*** 218,221 ****
--- 230,236 ----
<value>Private</value>
</data>
+ <data name="addressBar.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
<data name="addressBar.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
***************
*** 224,230 ****
<value>Private</value>
</data>
- <data name="addressBar.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
- <value>Private</value>
- </data>
<data name="labelAddressBar.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
--- 239,242 ----
***************
*** 272,275 ****
--- 284,290 ----
<value>Private</value>
</data>
+ <data name="panelCenter.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+ <value>8, 8</value>
+ </data>
<data name="panelCenter.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
***************
*** 281,287 ****
<value>Private</value>
</data>
- <data name="panelCenter.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
- <value>8, 8</value>
- </data>
<data name="panelCenter.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
--- 296,299 ----
***************
*** 305,311 ****
<value>8, 8</value>
</data>
- <data name="$this.Name">
- <value>MainForm</value>
- </data>
<data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
--- 317,320 ----
***************
*** 316,319 ****
--- 325,331 ----
<data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
+ </data>
+ <data name="$this.Name">
+ <value>MainForm</value>
</data>
<data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
From: Michael P. <mh...@us...> - 2003-07-04 23:50:09
|
Update of /cvsroot/iclect/iclect/src/iclect.Forms
In directory sc8-pr-cvs1:/tmp/cvs-serv29448/src/iclect.Forms
Modified Files:
iclect.Forms.csproj
Log Message:
Enhanced title and status bar.
Index: iclect.Forms.csproj
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.Forms/iclect.Forms.csproj,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** iclect.Forms.csproj 3 Jul 2003 17:32:50 -0000 1.5
--- iclect.Forms.csproj 4 Jul 2003 23:49:53 -0000 1.6
***************
*** 179,182 ****
--- 179,187 ----
BuildAction = "Compile"
/>
+ <File
+ RelPath = "Utility\MenuItemWithHelp.resx"
+ DependentUpon = "MenuItemWithHelp.cs"
+ BuildAction = "EmbeddedResource"
+ />
</Include>
</Files>
|
|
From: Michael P. <mh...@us...> - 2003-07-04 22:55:11
|
Update of /cvsroot/iclect/iclect/src/iclect In directory sc8-pr-cvs1:/tmp/cvs-serv22584/src/iclect Added Files: app.config Log Message: Added config file. --- NEW FILE: app.config --- <?xml version="1.0"?> <configuration> <startup> <supportedRuntime version="v1.1.4322"/> <supportedRuntime version="v1.0.3705"/> <requiredRuntime version="v1.0.3705"/></startup><runtime> <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" appliesTo="v1.0.3705"> <dependentAssembly> <assemblyIdentity name="Accessibility" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="cscompmgd" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="7.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="CustomMarshalers" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="IEExecRemote" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="IEHost" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="IIEHost" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="ISymWrapper" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.JScript" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="7.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.VisualBasic.Compatibility.Data" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="7.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.VisualBasic.Compatibility" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="7.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.VisualBasic" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="7.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.VisualBasic.Vsa" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="7.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.VisualC" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="7.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.Vsa" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="7.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.Vsa.Vb.CodeDOMProcessor" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="7.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft_VsaVb" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="7.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="mscorcfg" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Configuration.Install" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Data" publicKeyToken="b77a5c561934e089" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Design" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.DirectoryServices" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System" publicKeyToken="b77a5c561934e089" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Drawing.Design" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Drawing" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.EnterpriseServices" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Management" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Messaging" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Runtime.Remoting" publicKeyToken="b77a5c561934e089" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Runtime.Serialization.Formatters.Soap" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Security" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.ServiceProcess" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Web" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Web.Mobile" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Web.RegularExpressions" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Web.Services" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Windows.Forms" publicKeyToken="b77a5c561934e089" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Xml" publicKeyToken="b77a5c561934e089" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="vjscor" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="VJSharpCodeProvider" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="7.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="vjslib" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="vjslibcw" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="vjswfc" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="VJSWfcBrowserStubLib" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="vjswfccw" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="vjswfchtml" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-65535.65535.65535.65535" newVersion="1.0.3300.0"/> </dependentAssembly> </assemblyBinding></runtime></configuration> |
|
From: Michael P. <mh...@us...> - 2003-07-04 14:49:56
|
Update of /cvsroot/iclect/iclect/src/iclect
In directory sc8-pr-cvs1:/tmp/cvs-serv4514/src/iclect
Modified Files:
AboutDialog.cs AboutDialog.resx MainForm.cs MainForm.resx
Log Message:
Modified About dialog to show the runtime version.
Index: AboutDialog.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/AboutDialog.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** AboutDialog.cs 18 Jan 2003 23:52:52 -0000 1.2
--- AboutDialog.cs 4 Jul 2003 14:49:53 -0000 1.3
***************
*** 20,23 ****
--- 20,25 ----
private System.Windows.Forms.Label label2;
private System.Windows.Forms.LinkLabel linkLabel;
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.Label labelRuntime;
/// <summary>
/// Required designer variable.
***************
*** 68,71 ****
--- 70,75 ----
this.label2 = new System.Windows.Forms.Label();
this.linkLabel = new System.Windows.Forms.LinkLabel();
+ this.label1 = new System.Windows.Forms.Label();
+ this.labelRuntime = new System.Windows.Forms.Label();
this.SuspendLayout();
//
***************
*** 74,78 ****
this.buttonOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
! this.buttonOK.Location = new System.Drawing.Point(360, 344);
this.buttonOK.Name = "buttonOK";
this.buttonOK.TabIndex = 0;
--- 78,82 ----
this.buttonOK.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
! this.buttonOK.Location = new System.Drawing.Point(360, 324);
this.buttonOK.Name = "buttonOK";
this.buttonOK.TabIndex = 0;
***************
*** 81,96 ****
// labelVersion
//
! this.labelVersion.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
! | System.Windows.Forms.AnchorStyles.Right);
! this.labelVersion.Location = new System.Drawing.Point(168, 348);
this.labelVersion.Name = "labelVersion";
! this.labelVersion.Size = new System.Drawing.Size(176, 20);
this.labelVersion.TabIndex = 1;
this.labelVersion.Text = "Version";
- this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// icon
//
! this.icon.Image = ((System.Drawing.Bitmap)(resources.GetObject("icon.Image")));
this.icon.Location = new System.Drawing.Point(8, 8);
this.icon.Name = "icon";
--- 85,99 ----
// labelVersion
//
! this.labelVersion.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
! | System.Windows.Forms.AnchorStyles.Right)));
! this.labelVersion.Location = new System.Drawing.Point(168, 320);
this.labelVersion.Name = "labelVersion";
! this.labelVersion.Size = new System.Drawing.Size(176, 16);
this.labelVersion.TabIndex = 1;
this.labelVersion.Text = "Version";
//
// icon
//
! this.icon.Image = ((System.Drawing.Image)(resources.GetObject("icon.Image")));
this.icon.Location = new System.Drawing.Point(8, 8);
this.icon.Name = "icon";
***************
*** 102,108 ****
// richTextBox
//
! this.richTextBox.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
! | System.Windows.Forms.AnchorStyles.Right);
this.richTextBox.BackColor = System.Drawing.SystemColors.Control;
this.richTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
--- 105,111 ----
// richTextBox
//
! this.richTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
! | System.Windows.Forms.AnchorStyles.Right)));
this.richTextBox.BackColor = System.Drawing.SystemColors.Control;
this.richTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
***************
*** 110,114 ****
this.richTextBox.Location = new System.Drawing.Point(64, 8);
this.richTextBox.Name = "richTextBox";
! this.richTextBox.Size = new System.Drawing.Size(376, 312);
this.richTextBox.TabIndex = 3;
this.richTextBox.Text = "(Text from \"About.rtf\" comes here)";
--- 113,117 ----
this.richTextBox.Location = new System.Drawing.Point(64, 8);
this.richTextBox.Name = "richTextBox";
! this.richTextBox.Size = new System.Drawing.Size(376, 288);
this.richTextBox.TabIndex = 3;
this.richTextBox.Text = "(Text from \"About.rtf\" comes here)";
***************
*** 116,124 ****
// label2
//
! this.label2.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
! | System.Windows.Forms.AnchorStyles.Right);
! this.label2.Location = new System.Drawing.Point(64, 348);
this.label2.Name = "label2";
! this.label2.Size = new System.Drawing.Size(104, 20);
this.label2.TabIndex = 4;
this.label2.Text = "Assembly Version:";
--- 119,127 ----
// label2
//
! this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
! | System.Windows.Forms.AnchorStyles.Right)));
! this.label2.Location = new System.Drawing.Point(64, 320);
this.label2.Name = "label2";
! this.label2.Size = new System.Drawing.Size(104, 16);
this.label2.TabIndex = 4;
this.label2.Text = "Assembly Version:";
***************
*** 126,135 ****
// linkLabel
//
! this.linkLabel.Anchor = ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
! | System.Windows.Forms.AnchorStyles.Right);
this.linkLabel.LinkArea = new System.Windows.Forms.LinkArea(22, 22);
! this.linkLabel.Location = new System.Drawing.Point(64, 328);
this.linkLabel.Name = "linkLabel";
! this.linkLabel.Size = new System.Drawing.Size(280, 20);
this.linkLabel.TabIndex = 5;
this.linkLabel.TabStop = true;
--- 129,138 ----
// linkLabel
//
! this.linkLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
! | System.Windows.Forms.AnchorStyles.Right)));
this.linkLabel.LinkArea = new System.Windows.Forms.LinkArea(22, 22);
! this.linkLabel.Location = new System.Drawing.Point(64, 304);
this.linkLabel.Name = "linkLabel";
! this.linkLabel.Size = new System.Drawing.Size(280, 16);
this.linkLabel.TabIndex = 5;
this.linkLabel.TabStop = true;
***************
*** 137,140 ****
--- 140,163 ----
this.linkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.OnClickedHomepage);
//
+ // label1
+ //
+ this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.label1.Location = new System.Drawing.Point(64, 336);
+ this.label1.Name = "label1";
+ this.label1.Size = new System.Drawing.Size(104, 16);
+ this.label1.TabIndex = 4;
+ this.label1.Text = "Runtime Version:";
+ //
+ // labelRuntime
+ //
+ this.labelRuntime.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
+ | System.Windows.Forms.AnchorStyles.Right)));
+ this.labelRuntime.Location = new System.Drawing.Point(168, 336);
+ this.labelRuntime.Name = "labelRuntime";
+ this.labelRuntime.Size = new System.Drawing.Size(176, 16);
+ this.labelRuntime.TabIndex = 1;
+ this.labelRuntime.Text = "Version";
+ //
// AboutDialog
//
***************
*** 142,153 ****
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.buttonOK;
! this.ClientSize = new System.Drawing.Size(450, 379);
! this.Controls.AddRange(new System.Windows.Forms.Control[] {
! this.linkLabel,
! this.richTextBox,
! this.icon,
! this.buttonOK,
! this.labelVersion,
! this.label2});
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
--- 165,177 ----
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.CancelButton = this.buttonOK;
! this.ClientSize = new System.Drawing.Size(450, 359);
! this.Controls.Add(this.linkLabel);
! this.Controls.Add(this.richTextBox);
! this.Controls.Add(this.icon);
! this.Controls.Add(this.buttonOK);
! this.Controls.Add(this.labelVersion);
! this.Controls.Add(this.label2);
! this.Controls.Add(this.label1);
! this.Controls.Add(this.labelRuntime);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
***************
*** 169,172 ****
--- 193,200 ----
FileVersionInfo info = main.FileVersionInfo;
this.labelVersion.Text = info.ProductVersion;
+
+ Assembly assembly = Assembly.GetAssembly(typeof(Assembly));
+ info = FileVersionInfo.GetVersionInfo(assembly.Location);
+ this.labelRuntime.Text = info.ProductVersion;
}
Index: AboutDialog.resx
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/AboutDialog.resx,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** AboutDialog.resx 18 Jan 2003 23:52:52 -0000 1.2
--- AboutDialog.resx 4 Jul 2003 14:49:53 -0000 1.3
***************
*** 2,61 ****
<root>
<!--
! Microsoft ResX Schema
!
! Version 1.3
! The primary goals of this format is to allow a simple XML format
! that is mostly human readable. The generation and parsing of the
! various data types are done through the TypeConverter classes
! associated with the data types.
!
! Example:
!
! ... ado.net/XML headers & schema ...
! <resheader name="resmimetype">text/microsoft-resx</resheader>
! <resheader name="version">1.3</resheader>
! <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
! <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
! <data name="Name1">this is my long string</data>
! <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
! <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
! [base64 mime encoded serialized .NET Framework object]
! </data>
! <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
! [base64 mime encoded string representing a byte array form of the .NET Framework object]
! </data>
!
! There are any number of "resheader" rows that contain simple
! name/value pairs.
!
! Each data row contains a name, and value. The row also contains a
! type or mimetype. Type corresponds to a .NET class that support
! text/value conversion through the TypeConverter architecture.
! Classes that don't support this are serialized and stored with the
! mimetype set.
!
! The mimetype is used for serialized objects, and tells the
! ResXResourceReader how to depersist the object. This is currently not
! extensible. For a given mimetype the value must be set accordingly:
!
! Note - application/x-microsoft.net.object.binary.base64 is the format
! that the ResXResourceWriter will generate, however the reader can
! read any of the formats listed below.
!
! mimetype: application/x-microsoft.net.object.binary.base64
! value : The object must be serialized with
! : System.Serialization.Formatters.Binary.BinaryFormatter
! : and then encoded with base64 encoding.
!
! mimetype: application/x-microsoft.net.object.soap.base64
! value : The object must be serialized with
! : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
! : and then encoded with base64 encoding.
! mimetype: application/x-microsoft.net.object.bytearray.base64
! value : The object must be serialized into a byte array
! : using a System.ComponentModel.TypeConverter
! : and then encoded with base64 encoding.
! -->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
--- 2,62 ----
<root>
<!--
! Microsoft ResX Schema
!
! Version 1.3
!
! The primary goals of this format is to allow a simple XML format
! that is mostly human readable. The generation and parsing of the
! various data types are done through the TypeConverter classes
! associated with the data types.
!
! Example:
!
! ... ado.net/XML headers & schema ...
! <resheader name="resmimetype">text/microsoft-resx</resheader>
! <resheader name="version">1.3</resheader>
! <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
! <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
! <data name="Name1">this is my long string</data>
! <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
! <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
! [base64 mime encoded serialized .NET Framework object]
! </data>
! <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
! [base64 mime encoded string representing a byte array form of the .NET Framework object]
! </data>
! There are any number of "resheader" rows that contain simple
! name/value pairs.
!
! Each data row contains a name, and value. The row also contains a
! type or mimetype. Type corresponds to a .NET class that support
! text/value conversion through the TypeConverter architecture.
! Classes that don't support this are serialized and stored with the
! mimetype set.
!
! The mimetype is used forserialized objects, and tells the
! ResXResourceReader how to depersist the object. This is currently not
! extensible. For a given mimetype the value must be set accordingly:
!
! Note - application/x-microsoft.net.object.binary.base64 is the format
! that the ResXResourceWriter will generate, however the reader can
! read any of the formats listed below.
!
! mimetype: application/x-microsoft.net.object.binary.base64
! value : The object must be serialized with
! : System.Serialization.Formatters.Binary.BinaryFormatter
! : and then encoded with base64 encoding.
!
! mimetype: application/x-microsoft.net.object.soap.base64
! value : The object must be serialized with
! : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
! : and then encoded with base64 encoding.
!
! mimetype: application/x-microsoft.net.object.bytearray.base64
! value : The object must be serialized into a byte array
! : using a System.ComponentModel.TypeConverter
! : and then encoded with base64 encoding.
! -->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
***************
*** 92,101 ****
</resheader>
<resheader name="reader">
! <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
! <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
! <data name="icon.Image" type="System.Drawing.Bitmap, System.Drawing, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
--- 93,129 ----
</resheader>
<resheader name="reader">
! <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
! <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
! <data name="buttonOK.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>False</value>
! </data>
! <data name="buttonOK.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="buttonOK.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="labelVersion.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>False</value>
! </data>
! <data name="labelVersion.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="labelVersion.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="icon.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>False</value>
! </data>
! <data name="icon.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="icon.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="icon.Image" type="System.Drawing.Bitmap, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
***************
*** 111,116 ****
--- 139,216 ----
</value>
</data>
+ <data name="richTextBox.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="richTextBox.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="richTextBox.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="label2.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="label2.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="label2.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="linkLabel.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="linkLabel.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="linkLabel.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="label1.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="label1.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="label1.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="labelRuntime.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="labelRuntime.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="labelRuntime.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>(Default)</value>
+ </data>
+ <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="$this.Localizable" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="$this.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+ <value>8, 8</value>
+ </data>
+ <data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>True</value>
+ </data>
+ <data name="$this.TrayHeight" type="System.Int32, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>80</value>
+ </data>
+ <data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>True</value>
+ </data>
<data name="$this.Name">
<value>AboutDialog</value>
+ </data>
+ <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
</data>
</root>
Index: MainForm.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/MainForm.cs,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** MainForm.cs 3 Jul 2003 17:32:50 -0000 1.11
--- MainForm.cs 4 Jul 2003 14:49:53 -0000 1.12
***************
*** 287,291 ****
this.menuHelpAbout.Index = 2;
this.menuHelpAbout.StatusBar = this.statusBar;
! this.menuHelpAbout.Text = "&About";
this.menuHelpAbout.Click += new System.EventHandler(this.OnHelpAbout);
//
--- 287,291 ----
this.menuHelpAbout.Index = 2;
this.menuHelpAbout.StatusBar = this.statusBar;
! this.menuHelpAbout.Text = "&About...";
this.menuHelpAbout.Click += new System.EventHandler(this.OnHelpAbout);
//
Index: MainForm.resx
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/MainForm.resx,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** MainForm.resx 3 Jul 2003 14:14:57 -0000 1.6
--- MainForm.resx 4 Jul 2003 14:49:53 -0000 1.7
***************
*** 254,260 ****
<value>Private</value>
</data>
- <data name="panelTop.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
- <value>True</value>
- </data>
<data name="panelTop.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
--- 254,257 ----
***************
*** 269,272 ****
--- 266,272 ----
<value>8, 8</value>
</data>
+ <data name="panelTop.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>True</value>
+ </data>
<data name="panelTop.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
***************
*** 293,299 ****
<value>False</value>
</data>
- <data name="$this.Name">
- <value>MainForm</value>
- </data>
<data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>(Default)</value>
--- 293,296 ----
***************
*** 307,310 ****
--- 304,310 ----
<data name="$this.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
+ </data>
+ <data name="$this.Name">
+ <value>MainForm</value>
</data>
<data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
|
From: Michael P. <mh...@us...> - 2003-07-03 17:36:32
|
Update of /cvsroot/iclect/iclect/web In directory sc8-pr-cvs1:/tmp/cvs-serv14557/web Modified Files: index.html Log Message: Updated contents. Index: index.html =================================================================== RCS file: /cvsroot/iclect/iclect/web/index.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** index.html 30 Jun 2003 18:32:13 -0000 1.2 --- index.html 3 Jul 2003 17:36:29 -0000 1.3 *************** *** 1,153 **** ! <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > ! <html> ! ! <head> ! <meta http-equiv="Content-Language" content="en-us" /> ! <meta name="GENERATOR" content="Microsoft FrontPage 5.0" /> ! <meta name="ProgId" content="FrontPage.Editor.Document" /> ! <title>iclect - Image Selection Utility</title> ! <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5" /> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ! <link rel="stylesheet" type="text/css" href="iclect.css" /> ! </head> ! ! <body> ! ! <div id="banner"> ! <table cellspacing="0" cellpadding="0" style="border-collapse: collapse" bordercolor="#111111"> ! <tbody> ! <tr> ! <td class="button"><a href="http://iclect.sourceforge.net/">Home</a></td> ! <td class="button"><a href="http://sourceforge.net/projects/iclect">Summary</a></td> ! <td class="button"> ! <a href="http://sourceforge.net/project/showfiles.php?group_id=70556">Files</a></td> ! <td class="button"><a href="http://sourceforge.net/cvs/?group_id=70556">CVS</a></td> ! <td class="button"> ! <a href="http://iclect.sourceforge.net/iclect-nightly.zip">Nightly.zip</a></td> ! <td class="button"> ! <a href="http://sourceforge.net/tracker/?group_id=70556">Tracker</a></td> ! </tr> ! </tbody> ! </table> ! </div> ! <h1>iclect - Image Selection Utility</h1> ! <table border="0" cellspacing="1" style="border-collapse: collapse" id="AutoNumber1"> ! <tbody> ! <tr> ! <td><em>iclect</em></td> ! <td> </td> ! <td>allows you to browse folders containing large numbers of images (e.g. from ! a digital camera). You can then select and copy images to another folder for ! further processing or to create collections of images for archiving or distribution.</td> ! </tr> ! <tr> ! <td> </td> ! <td> </td> ! <td> </td> ! </tr> ! <tr> ! <td><em>iclect</em></td> ! <td> </td> ! <td>does neither provide imaging facilities nor support for great numbers of ! image or other file formats. Those things are up to other, "larger" applications. ! Its sole purpose is to make image selection as quick and easy as possible. It ! therefore does not require any extra libraries other than those provided by ! the .NET Framework.</td> ! </tr> ! <tr> ! <td> </td> ! <td> </td> ! <td> </td> ! </tr> ! <tr> ! <td><em>iclect</em></td> ! <td> </td> ! <td>is written in C#, based on the Microsoft .NET Framework and runs on platforms ! for which a full .NET Framework is available.</td> ! </tr> ! <tr> ! <td> </td> ! <td> </td> ! <td> </td> ! </tr> ! </tbody> ! </table> ! <p>iclect is hosted at <a href="http://sourceforge.net/">SourceForge.net</a>. You may want to visit the ! <a href="http://sourceforge.net/projects/iclect/">project summary page</a> at SourceForge.net.</p> ! <hr /> ! <h2>How to obtain an installable version of iclect</h2> ! <p>Ready to use (binary) versions of iclect will be available via the SourceForge.net ! <a href="http://sourceforge.net/project/showfiles.php?group_id=70556">File Release ! System</a>.</p> ! <hr /> ! <h2>How to obtain a source code version of iclect</h2> ! <p>Source code for the binary versions can be found next to the binary versions ! in the <a href="http://sourceforge.net/project/showfiles.php?group_id=70556">File ! Release System</a>.</p> ! <p>The current source code, containing all recent bug fixes and other changes, can ! be obtained via CVS or via a <kbd>Nightly.zip</kbd> archive.</p> ! <p>Go to the <a href="http://sourceforge.net/cvs/?group_id=70556">CVS</a> page, ! to find out how to get CVS access or to browse the iclect sources online. The main ! <i>modulename</i> for the iclect project is "iclect".</p> ! <p>The <kbd><a href="http://iclect.sourceforge.net/iclect-nightly.zip">Nightly.zip</a></kbd> ! archive is created every night at 3AM pacific time (GMT-8). This is noon of the ! same day in Germany (GMT+1), or 8PM on the same day in Japan (GMT+9), for example. ! It can be obtained via the "Nightly.zip" link at the top of the page.</p> ! <hr /> ! <h2>Prerequisites</h2> ! <p>iclect depends on the .NET Framework, so any prerequisites of the .NET Framework ! must be met. For installation of the binary packages, Microsoft Windows Installer ! 1.5 or higher is required. Other than that there are hardly any prerequisites. Depending ! on the size of your images a fast hard disk and/or system is recommended.</p> ! <p>The .NET Framework can be obtained from Microsoft from the MSDN Online pages. ! See the following page on ! <a href="http://msdn.microsoft.com/netframework/downloads/howtoget.aspx">How to ! get the .NET Framework</a>.</p> ! <p>If you have recent versions of Microsoft Software (e.g. Windows XP, Windows 2000 ! SP3, Office), an appropriate version of Microsoft Windows Installer is probably ! already installed on your machine. Try opening the downloaded .msi file. Otherwise ! Microsoft Windows Installer 2.0 packages (<kbd>InstMsiA.exe</kbd> or <kbd>InstMsiW.exe</kbd>) ! are available from the ! <a href="http://sourceforge.net/project/showfiles.php?group_id=70556">File Release ! System</a> (see "Files" at the top of the page). Use <kbd>InstMsi<b>A</b>.exe</kbd> ! to install Windows Installer on Windows 98, Windows 98SE or Windows ME. Use <kbd> ! InstMsi<b>W</b>.exe</kbd> to install Windows Installer on Windows NT4 or Windows ! 2000.</p> ! <hr /> ! <h2>Installing/Uninstalling</h2> ! <p>iclect is distributed as a Microsoft Windows Installer (.msi) file. Installation ! is done by opening the .msi file and following the instructions of the installation ! wizard. An iclect icon will be installed in the start menu.</p> ! <p>Uninstalling iclect is done through the Software applet in the Control Panel.</p> ! <p>iclect creates hidden files named <kbd>iclect.thumbs</kbd> in every folder, containing ! images, that you visited. If you plan on not using iclect any more you might consider ! searching for all files with that name and deleting them from your hard disks permanently.</p> ! <hr /> ! <h2>Bug Reporting, Support Requests, Feature Requests</h2> ! <p>If you find a bug, please report it to the ! <a href="http://sourceforge.net/tracker/?group_id=70556&atid=528217">bug tracker</a>. ! If you already have a patch for the bug, you might also consider uploading it through ! the <a href="http://sourceforge.net/tracker/?group_id=70556&atid=528219">patch tracker</a>.</p> ! <p>If you need help on anything, please visit the ! <a href="http://sourceforge.net/tracker/?group_id=70556&atid=528218">support tracker</a>.</p> ! <p>If you are missing something, or have any other suggestion on how to make iclect ! better, please submit your ideas to the ! <a href="http://sourceforge.net/tracker/?group_id=70556&atid=528220">feature request ! tracker</a>.</p> ! <p>All trackers can also be found on the ! <a href="http://sourceforge.net/projects/iclect/">summary page</a> and the ! <a href="http://sourceforge.net/tracker/?group_id=70556&atid=528220">tracker page</a>.</p> ! <p>NOTE: If you have more than one issue to report, please submit them as separate ! items, one item at a time. Keeping issues separated helps tracking them individually.</p> ! <hr /> ! <p>Thank you for using iclect,<br /> ! <br /> ! Michael Pöttgen<br /> ! the iclect project</p> ! <hr />The iclect project is hosted at <a href="http://sourceforge.net"> ! <img src="http://sourceforge.net/sflogo.php?group_id=70556&type=1" width="88" height="31" border="0" alt="SourceForge.net Logo" align="middle" /> ! </a> ! ! </body> ! </html> --- 1,174 ---- ! <?xml version="1.0" encoding="UTF-8"?> ! <!DOCTYPE html ! PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" ! "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ! <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> ! <head> ! <title>iclect - Image Selection Utility</title> ! <meta http-equiv="Content-Language" content="en-us" /> ! <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> ! <link rel="stylesheet" type="text/css" href="iclect.css" /> ! </head> ! <body> ! <div id="banner"> ! <table cellspacing="0" cellpadding="0" style="BORDER-COLLAPSE: collapse" bordercolor="#111111"> ! <tbody> ! <tr> ! <td class="button"><a href="http://iclect.sourceforge.net/">Home</a></td> ! <td class="button"><a href="http://sourceforge.net/projects/iclect">Summary</a></td> ! <td class="button"> ! <a href="http://sourceforge.net/project/showfiles.php?group_id=70556">Files</a></td> ! <td class="button"><a href="http://sourceforge.net/cvs/?group_id=70556">CVS</a></td> ! <td class="button"> ! <a href="http://iclect.sourceforge.net/iclect-nightly.zip">Nightly.zip</a></td> ! <td class="button"> ! <a href="http://sourceforge.net/tracker/?group_id=70556">Tracker</a></td> ! </tr> ! </tbody> ! </table> ! </div> ! <h1>iclect - Image Selection Utility</h1> ! <table border="0" cellspacing="1" style="BORDER-COLLAPSE: collapse" id="AutoNumber1"> ! <tbody> ! <tr> ! <td><em>iclect</em></td> ! <td> </td> ! <td>allows you to browse folders containing large numbers of images (e.g. from a ! digital camera). You can then select and copy images to another folder for ! further processing or to create collections of images for archiving or ! distribution.</td> ! </tr> ! <tr> ! <td> </td> ! <td> </td> ! <td> </td> ! </tr> ! <tr> ! <td><em>iclect</em></td> ! <td> </td> ! <td>does neither provide imaging facilities nor support for great numbers of image ! or other file formats. Those things are up to other, "larger" applications. Its ! sole purpose is to make image selection as quick and easy as possible. It ! therefore does not require any extra libraries other than those provided by the ! .NET Framework.</td> ! </tr> ! <tr> ! <td> </td> ! <td> </td> ! <td> </td> ! </tr> ! <tr> ! <td><em>iclect</em></td> ! <td> </td> ! <td>is written in C#, based on the Microsoft .NET Framework and runs on platforms ! for which a full .NET Framework is available.</td> ! </tr> ! <tr> ! <td> </td> ! <td> </td> ! <td> </td> ! </tr> ! </tbody> ! </table> ! <p>iclect is hosted at <a href="http://sourceforge.net/">SourceForge.net</a>. You ! may want to visit the <a href="http://sourceforge.net/projects/iclect/">project ! summary page</a> at SourceForge.net.</p> ! <hr /> ! <h2>Contents</h2> ! <ul> ! <li> ! <a href="#binary">How to obtain an installable version of iclect</a> ! </li> ! <li> ! <a href="#source">How to obtain a source code version of iclect</a> ! </li> ! <li> ! <a href="#prerequisites">Prerequisites</a> ! </li> ! <li> ! <a href="#installing">Installing/Uninstalling</a> ! </li> ! <li> ! <a href="#tracker">Bug Reporting, Support Requests, Feature Requests</a></li></ul> ! <hr /> ! <h2><a name="binary"></a>How to obtain an installable version of iclect</h2> ! <p>If you only want to use iclect, then an installable version of iclect is ! just what you need. If you are a software developer, and you want to see, ! whow iclect does what it does, or you want to build your own version of iclect, ! containing all the latest features and bugfixes, that have not been released ! yet, or you even want to contribute to the project, then you probably want to ! have the source code of iclect. Obtaining the source code is described in the ! next section.</p> ! <p>Ready to use (binary) versions of iclect are available via the ! SourceForge.net <a href="http://sourceforge.net/project/showfiles.php?group_id=70556"> ! File Release System</a>. Downloading and <a href="#installing">installing</a> ! the .msi file will copy the files, that make up iclect, to your program files ! directory, and create a shortcut in the programs menu.</p> ! <hr /> ! <h2><a name="source"></a>How to obtain a source code version of iclect</h2> ! <p>Source code for the binary versions can be found next to the binary versions in ! the <a href="http://sourceforge.net/project/showfiles.php?group_id=70556">File ! Release System</a>.</p> ! <p>The current source code, containing all recent bug fixes and other changes, can ! be obtained via CVS or via a <kbd>Nightly.zip</kbd> archive.</p> ! <p>Go to the <a href="http://sourceforge.net/cvs/?group_id=70556">CVS</a> page, to ! find out how to get CVS access or to browse the iclect sources online. The main <i>modulename</i> ! for the iclect project is "iclect".</p> ! <p>The <kbd><a href="http://iclect.sourceforge.net/iclect-nightly.zip">Nightly.zip</a></kbd> ! archive is created every night at 3AM (Pacific time, GMT-8).</p> ! <hr /> ! <h2><a name="prerequisites"></a>Prerequisites</h2> ! <p>iclect depends on the .NET Framework, so any prerequisites of the .NET Framework ! must be met. For installation of the binary packages, Microsoft Windows ! Installer 1.5 or higher is required. Other than that there are hardly any ! prerequisites. Depending on the size of your images a fast hard disk and/or ! system is recommended.</p> ! <p>The .NET Framework can be obtained from Microsoft from the MSDN Online pages. ! See the following page on <a href="http://msdn.microsoft.com/netframework/downloads/howtoget.aspx"> ! How to get the .NET Framework</a>.</p> ! <p>If you have recent versions of Microsoft Software (e.g. Windows XP, Windows 2000 ! SP3, Office), an appropriate version of Microsoft Windows Installer is probably ! already installed on your machine. Try opening the downloaded .msi file. ! Otherwise Microsoft Windows Installer 2.0 packages (<kbd>InstMsiA.exe</kbd> or <kbd> ! InstMsiW.exe</kbd>) are available from the <a href="http://sourceforge.net/project/showfiles.php?group_id=70556"> ! File Release System</a> (see "Files" at the top of the page). Use <kbd>InstMsi<b>A</b>.exe</kbd> ! to install Windows Installer on Windows 98, Windows 98SE or Windows ME. Use <kbd>InstMsi<b>W</b>.exe</kbd> ! to install Windows Installer on Windows NT4 or Windows 2000.</p> ! <hr /> ! <h2><a name="installing"></a>Installing/Uninstalling</h2> ! <p> ! iclect is distributed as a Microsoft Windows Installer (.msi) file. ! Installation is done by opening the .msi file and following the instructions of ! the installation wizard. An iclect icon will be installed in the programs ! menu.</p> ! <p>Uninstalling iclect is done through the Software applet in the Control Panel.</p> ! <p>iclect creates hidden files named <kbd>iclect.thumbs</kbd> in every folder, ! containing images, that you visited. If you plan on not using iclect any more ! you might consider searching for all files with that name and deleting them ! from your hard disks permanently.</p> ! <hr /> ! <h2><a name="tracker"></a>Bug Reporting, Support Requests, Feature Requests</h2> ! <p>If you find a bug, please report it to the <a href="http://sourceforge.net/tracker/?group_id=70556&atid=528217"> ! bug tracker</a>. If you already have a patch for the bug, you might also ! consider uploading it through the <a href="http://sourceforge.net/tracker/?group_id=70556&atid=528219"> ! patch tracker</a>.</p> ! <p>If you need help on anything, please visit the <a href="http://sourceforge.net/tracker/?group_id=70556&atid=528218"> ! support tracker</a>.</p> ! <p>If you are missing something, or have any other suggestion on how to make iclect ! better, please submit your ideas to the <a href="http://sourceforge.net/tracker/?group_id=70556&atid=528220"> ! feature request tracker</a>.</p> ! <p>All trackers can also be found on the <a href="http://sourceforge.net/projects/iclect/"> ! summary page</a> and the <a href="http://sourceforge.net/tracker/?group_id=70556&atid=528220"> ! tracker page</a>.</p> ! <p> ! NOTE: If you have more than one issue to report, please submit them as separate ! items, one item at a time. Keeping issues separate helps tracking them.</p> ! <hr /> ! <p>Thank you for using iclect,<br /> ! <br /> ! Michael Pöttgen<br /> ! <a href="http://iclect.sourceforge.net">The iclect Project</a></p> ! <hr /> ! The iclect Project is hosted at <a href="http://sourceforge.net"><img src="http://sourceforge.net/sflogo.php?group_id=70556&type=1" width="88" height="31" border="0" alt="SourceForge.net Logo" align="middle" /> </a> ! </body> </html> |
|
From: Michael P. <mh...@us...> - 2003-07-03 17:32:54
|
Update of /cvsroot/iclect/iclect/src/Setup
In directory sc8-pr-cvs1:/tmp/cvs-serv13903/src/Setup
Modified Files:
Setup.vdproj
Log Message:
Modified to run on both .NET Framework 1.0 and 1.1.
Index: Setup.vdproj
===================================================================
RCS file: /cvsroot/iclect/iclect/src/Setup/Setup.vdproj,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** Setup.vdproj 3 Jul 2003 14:14:58 -0000 1.3
--- Setup.vdproj 3 Jul 2003 17:32:51 -0000 1.4
***************
*** 16,20 ****
"Entry"
{
! "MsmKey" = "8:_10086300E4104E2C883189753E242D50"
"OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
--- 16,20 ----
"Entry"
{
! "MsmKey" = "8:_16838674A28A4E78BED7DA5B85F192F9"
"OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
***************
*** 28,31 ****
--- 28,37 ----
"Entry"
{
+ "MsmKey" = "8:_311C21E4145141758FAAA3053743655A"
+ "OwnerKey" = "8:_UNDEFINED"
+ "MsmSig" = "8:_UNDEFINED"
+ }
+ "Entry"
+ {
"MsmKey" = "8:_3389CE7E890FE8EF209611D10763FCDD"
"OwnerKey" = "8:_1C014AFA75D4E323A4B029A238D3041B"
***************
*** 40,63 ****
"Entry"
{
! "MsmKey" = "8:_924CD54776CC4D6F9F689F0993ED5555"
! "OwnerKey" = "8:_3389CE7E890FE8EF209611D10763FCDD"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
! "MsmKey" = "8:_924CD54776CC4D6F9F689F0993ED5555"
! "OwnerKey" = "8:_9ADDEB838B084A109D899AF1D51AEEA9"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
! "MsmKey" = "8:_924CD54776CC4D6F9F689F0993ED5555"
! "OwnerKey" = "8:_1C014AFA75D4E323A4B029A238D3041B"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
! "MsmKey" = "8:_9ADDEB838B084A109D899AF1D51AEEA9"
! "OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
}
--- 46,69 ----
"Entry"
{
! "MsmKey" = "8:_9ADDEB838B084A109D899AF1D51AEEA9"
! "OwnerKey" = "8:_UNDEFINED"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
! "MsmKey" = "8:_BC47FAA2EF9C4D4DAC92A7711308C219"
! "OwnerKey" = "8:_3389CE7E890FE8EF209611D10763FCDD"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
! "MsmKey" = "8:_BC47FAA2EF9C4D4DAC92A7711308C219"
! "OwnerKey" = "8:_9ADDEB838B084A109D899AF1D51AEEA9"
"MsmSig" = "8:_UNDEFINED"
}
"Entry"
{
! "MsmKey" = "8:_BC47FAA2EF9C4D4DAC92A7711308C219"
! "OwnerKey" = "8:_1C014AFA75D4E323A4B029A238D3041B"
"MsmSig" = "8:_UNDEFINED"
}
***************
*** 70,83 ****
"IsDebugOnly" = "11:TRUE"
"IsReleaseOnly" = "11:FALSE"
! "OutputFilename" = "8:Debug\\Setup.msi"
"PackageFilesAs" = "3:2"
"PackageFileSize" = "3:-2147483648"
"CabType" = "3:1"
! "Compression" = "3:2"
"SignOutput" = "11:FALSE"
"CertificateFile" = "8:"
"PrivateKeyFile" = "8:"
"TimeStampServer" = "8:"
! "InstallerBootstrapper" = "3:2"
}
"Release"
--- 76,89 ----
"IsDebugOnly" = "11:TRUE"
"IsReleaseOnly" = "11:FALSE"
! "OutputFilename" = "8:Debug\\iclect.msi"
"PackageFilesAs" = "3:2"
"PackageFileSize" = "3:-2147483648"
"CabType" = "3:1"
! "Compression" = "3:3"
"SignOutput" = "11:FALSE"
"CertificateFile" = "8:"
"PrivateKeyFile" = "8:"
"TimeStampServer" = "8:"
! "InstallerBootstrapper" = "3:1"
}
"Release"
***************
*** 127,134 ****
"File"
{
! "{A582A373-4685-4296-BEFE-614B80A702C3}:_10086300E4104E2C883189753E242D50"
{
! "SourcePath" = "8:..\\..\\web\\index.html"
! "TargetName" = "8:index.html"
"Tag" = "8:"
"Folder" = "8:_29EA5F678F844608918F677AD0380294"
--- 133,140 ----
"File"
{
! "{A582A373-4685-4296-BEFE-614B80A702C3}:_16838674A28A4E78BED7DA5B85F192F9"
{
! "SourcePath" = "8:..\\..\\web\\iclect.css"
! "TargetName" = "8:iclect.css"
"Tag" = "8:"
"Folder" = "8:_29EA5F678F844608918F677AD0380294"
***************
*** 151,155 ****
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
! "AssemblyAsmDisplayName" = "8:iclect.Forms, Version=0.9.1276.35252, Culture=neutral"
"ScatterAssemblies"
{
--- 157,161 ----
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
! "AssemblyAsmDisplayName" = "8:iclect.Forms, Version=0.9.1279.29643, Culture=neutral"
"ScatterAssemblies"
{
***************
*** 178,186 ****
"IsolateTo" = "8:"
}
"{FB480208-1853-44D0-9ABD-A3B734C3FAAA}:_3389CE7E890FE8EF209611D10763FCDD"
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
! "AssemblyAsmDisplayName" = "8:iclect.ImageManager, Version=0.9.1276.35252, Culture=neutral"
"ScatterAssemblies"
{
--- 184,212 ----
"IsolateTo" = "8:"
}
+ "{A582A373-4685-4296-BEFE-614B80A702C3}:_311C21E4145141758FAAA3053743655A"
+ {
+ "SourcePath" = "8:..\\..\\web\\index.html"
+ "TargetName" = "8:ReadMe.html"
+ "Tag" = "8:"
+ "Folder" = "8:_29EA5F678F844608918F677AD0380294"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ }
"{FB480208-1853-44D0-9ABD-A3B734C3FAAA}:_3389CE7E890FE8EF209611D10763FCDD"
{
"AssemblyRegister" = "3:1"
"AssemblyIsInGAC" = "11:FALSE"
! "AssemblyAsmDisplayName" = "8:iclect.ImageManager, Version=0.9.1279.29643, Culture=neutral"
"ScatterAssemblies"
{
***************
*** 265,269 ****
"ProductName" = "8:iclect"
"ProductCode" = "8:{98B85B26-6BD6-4B1E-A1FA-5A7600D3C1BB}"
! "PackageCode" = "8:{42774A50-95A8-407B-A9E0-414287277BCA}"
"UpgradeCode" = "8:{BE51B8F5-FF19-4626-8886-A1A996C7F063}"
"RestartWWWService" = "11:FALSE"
--- 291,295 ----
"ProductName" = "8:iclect"
"ProductCode" = "8:{98B85B26-6BD6-4B1E-A1FA-5A7600D3C1BB}"
! "PackageCode" = "8:{C884DD91-88AA-4C2F-8E13-241579A32FCF}"
"UpgradeCode" = "8:{BE51B8F5-FF19-4626-8886-A1A996C7F063}"
"RestartWWWService" = "11:FALSE"
***************
*** 383,387 ****
"Name" = "8:iclect"
"Arguments" = "8:"
! "Description" = "8:iclect - image selection utility"
"ShowCmd" = "3:1"
"IconIndex" = "3:32512"
--- 409,413 ----
"Name" = "8:iclect"
"Arguments" = "8:"
! "Description" = "8:iclect - Image Selection Utility"
"ShowCmd" = "3:1"
"IconIndex" = "3:32512"
***************
*** 776,780 ****
"MergeModule"
{
! "{35A69C6E-5BA4-440D-803D-762B59A45393}:_924CD54776CC4D6F9F689F0993ED5555"
{
"UseDynamicProperties" = "11:TRUE"
--- 802,806 ----
"MergeModule"
{
! "{35A69C6E-5BA4-440D-803D-762B59A45393}:_BC47FAA2EF9C4D4DAC92A7711308C219"
{
"UseDynamicProperties" = "11:TRUE"
***************
*** 815,818 ****
--- 841,900 ----
"OutputConfiguration" = "8:"
"OutputGroupCanonicalName" = "8:Built"
+ "OutputProjectGuid" = "8:{EB5FCA52-9C0D-4505-BBB3-42743782FDE7}"
+ "ShowKeyOutput" = "11:TRUE"
+ "ExcludeFilters"
+ {
+ }
+ }
+ "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_9B1ABD0136C941269E8809F924257A72"
+ {
+ "SourcePath" = "8:"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_29EA5F678F844608918F677AD0380294"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ "ProjectOutputGroupRegister" = "3:1"
+ "OutputConfiguration" = "8:"
+ "OutputGroupCanonicalName" = "8:LocalizedResourceDlls"
+ "OutputProjectGuid" = "8:{EB5FCA52-9C0D-4505-BBB3-42743782FDE7}"
+ "ShowKeyOutput" = "11:TRUE"
+ "ExcludeFilters"
+ {
+ }
+ }
+ "{8062640A-2EEE-46E9-AB67-688E9A886E9F}:_E11FB70D251949418C303936A3968482"
+ {
+ "SourcePath" = "8:"
+ "TargetName" = "8:"
+ "Tag" = "8:"
+ "Folder" = "8:_29EA5F678F844608918F677AD0380294"
+ "Condition" = "8:"
+ "Transitive" = "11:FALSE"
+ "Vital" = "11:TRUE"
+ "ReadOnly" = "11:FALSE"
+ "Hidden" = "11:FALSE"
+ "System" = "11:FALSE"
+ "Permanent" = "11:FALSE"
+ "SharedLegacy" = "11:FALSE"
+ "PackageAs" = "3:1"
+ "Register" = "3:1"
+ "Exclude" = "11:FALSE"
+ "IsDependency" = "11:FALSE"
+ "IsolateTo" = "8:"
+ "ProjectOutputGroupRegister" = "3:1"
+ "OutputConfiguration" = "8:"
+ "OutputGroupCanonicalName" = "8:ContentFiles"
"OutputProjectGuid" = "8:{EB5FCA52-9C0D-4505-BBB3-42743782FDE7}"
"ShowKeyOutput" = "11:TRUE"
|
|
From: Michael P. <mh...@us...> - 2003-07-03 17:32:54
|
Update of /cvsroot/iclect/iclect/src/iclect.ImageManager
In directory sc8-pr-cvs1:/tmp/cvs-serv13903/src/iclect.ImageManager
Modified Files:
AssemblyInfo.cs ImageFolder.cs
Log Message:
Modified to run on both .NET Framework 1.0 and 1.1.
Index: AssemblyInfo.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.ImageManager/AssemblyInfo.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** AssemblyInfo.cs 27 Jun 2003 02:31:42 -0000 1.2
--- AssemblyInfo.cs 3 Jul 2003 17:32:50 -0000 1.3
***************
*** 8,14 ****
//
[assembly: AssemblyTitle("iclect - image selection utility")]
[assembly: AssemblyDescription("http://iclect.sourceforge.net")]
! [assembly: AssemblyConfiguration("")]
! [assembly: AssemblyCompany("iclect.sourceforge.net")]
[assembly: AssemblyProduct("iclect")]
[assembly: AssemblyCopyright("Copyright (c) 2003 Michael Poettgen")]
--- 8,22 ----
//
[assembly: AssemblyTitle("iclect - image selection utility")]
+ #if DEBUG
+ [assembly: AssemblyDescription("Debug Version!")]
+ [assembly: AssemblyConfiguration("debug")]
+ #elif DOC
+ [assembly: AssemblyDescription("Doc Version!")]
+ [assembly: AssemblyConfiguration("doc")]
+ #else
[assembly: AssemblyDescription("http://iclect.sourceforge.net")]
! [assembly: AssemblyConfiguration("release")]
! #endif
! [assembly: AssemblyCompany("The iclect project at SourceForge.net. See http://iclect.sourceforge.net")]
[assembly: AssemblyProduct("iclect")]
[assembly: AssemblyCopyright("Copyright (c) 2003 Michael Poettgen")]
Index: ImageFolder.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.ImageManager/ImageFolder.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ImageFolder.cs 3 Jul 2003 14:14:58 -0000 1.4
--- ImageFolder.cs 3 Jul 2003 17:32:51 -0000 1.5
***************
*** 263,266 ****
--- 263,267 ----
}
}
+ Debug.WriteLine("Loaded '" + path + "'.");
return imageFiles;
}
|
|
From: Michael P. <mh...@us...> - 2003-07-03 17:32:53
|
Update of /cvsroot/iclect/iclect/src/iclect.Forms
In directory sc8-pr-cvs1:/tmp/cvs-serv13903/src/iclect.Forms
Modified Files:
AddressBar.cs AssemblyInfo.cs iclect.Forms.csproj
Log Message:
Modified to run on both .NET Framework 1.0 and 1.1.
Index: AddressBar.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.Forms/AddressBar.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** AddressBar.cs 27 Jun 2003 02:31:42 -0000 1.5
--- AddressBar.cs 3 Jul 2003 17:32:50 -0000 1.6
***************
*** 324,328 ****
public void OpenFolderDialog()
{
! FolderBrowserDialog dlg = new FolderBrowserDialog();
if (this.comboBoxFolder.Text == string.Empty)
dlg.SelectedPath = GetMyPicturesFolderPath();
--- 324,328 ----
public void OpenFolderDialog()
{
! iclect.Forms.Utility.FolderBrowserDialog dlg = new iclect.Forms.Utility.FolderBrowserDialog();
if (this.comboBoxFolder.Text == string.Empty)
dlg.SelectedPath = GetMyPicturesFolderPath();
Index: AssemblyInfo.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.Forms/AssemblyInfo.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** AssemblyInfo.cs 27 Jun 2003 02:31:42 -0000 1.2
--- AssemblyInfo.cs 3 Jul 2003 17:32:50 -0000 1.3
***************
*** 8,14 ****
//
[assembly: AssemblyTitle("iclect - image selection utility")]
[assembly: AssemblyDescription("http://iclect.sourceforge.net")]
! [assembly: AssemblyConfiguration("")]
! [assembly: AssemblyCompany("iclect.sourceforge.net")]
[assembly: AssemblyProduct("iclect")]
[assembly: AssemblyCopyright("Copyright (c) 2003 Michael Poettgen")]
--- 8,22 ----
//
[assembly: AssemblyTitle("iclect - image selection utility")]
+ #if DEBUG
+ [assembly: AssemblyDescription("Debug Version!")]
+ [assembly: AssemblyConfiguration("debug")]
+ #elif DOC
+ [assembly: AssemblyDescription("Doc Version!")]
+ [assembly: AssemblyConfiguration("doc")]
+ #else
[assembly: AssemblyDescription("http://iclect.sourceforge.net")]
! [assembly: AssemblyConfiguration("release")]
! #endif
! [assembly: AssemblyCompany("The iclect project at SourceForge.net. See http://iclect.sourceforge.net")]
[assembly: AssemblyProduct("iclect")]
[assembly: AssemblyCopyright("Copyright (c) 2003 Michael Poettgen")]
Index: iclect.Forms.csproj
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.Forms/iclect.Forms.csproj,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** iclect.Forms.csproj 3 Jul 2003 14:14:57 -0000 1.4
--- iclect.Forms.csproj 3 Jul 2003 17:32:50 -0000 1.5
***************
*** 171,175 ****
<File
RelPath = "Utility\FolderBrowserDialog.cs"
! SubType = "Code"
BuildAction = "Compile"
/>
--- 171,175 ----
<File
RelPath = "Utility\FolderBrowserDialog.cs"
! SubType = "Component"
BuildAction = "Compile"
/>
|
|
From: Michael P. <mh...@us...> - 2003-07-03 17:32:53
|
Update of /cvsroot/iclect/iclect/src/iclect
In directory sc8-pr-cvs1:/tmp/cvs-serv13903/src/iclect
Modified Files:
AssemblyInfo.cs iclect.csproj KeyboardHelpForm.cs
KeyboardHelpForm.resx MainForm.cs
Log Message:
Modified to run on both .NET Framework 1.0 and 1.1.
Index: AssemblyInfo.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/AssemblyInfo.cs,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** AssemblyInfo.cs 27 Jun 2003 02:31:42 -0000 1.3
--- AssemblyInfo.cs 3 Jul 2003 17:32:49 -0000 1.4
***************
*** 8,14 ****
//
[assembly: AssemblyTitle("iclect - image selection utility")]
[assembly: AssemblyDescription("http://iclect.sourceforge.net")]
! [assembly: AssemblyConfiguration("")]
! [assembly: AssemblyCompany("iclect.sourceforge.net")]
[assembly: AssemblyProduct("iclect")]
[assembly: AssemblyCopyright("Copyright (c) 2003 Michael Poettgen")]
--- 8,22 ----
//
[assembly: AssemblyTitle("iclect - image selection utility")]
+ #if DEBUG
+ [assembly: AssemblyDescription("Debug Version!")]
+ [assembly: AssemblyConfiguration("debug")]
+ #elif DOC
+ [assembly: AssemblyDescription("Doc Version!")]
+ [assembly: AssemblyConfiguration("doc")]
+ #else
[assembly: AssemblyDescription("http://iclect.sourceforge.net")]
! [assembly: AssemblyConfiguration("release")]
! #endif
! [assembly: AssemblyCompany("The iclect project at SourceForge.net. See http://iclect.sourceforge.net")]
[assembly: AssemblyProduct("iclect")]
[assembly: AssemblyCopyright("Copyright (c) 2003 Michael Poettgen")]
Index: iclect.csproj
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/iclect.csproj,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** iclect.csproj 3 Jul 2003 14:14:57 -0000 1.7
--- iclect.csproj 3 Jul 2003 17:32:49 -0000 1.8
***************
*** 139,144 ****
/>
<File
RelPath = "App.ico"
! BuildAction = "Content"
/>
<File
--- 139,148 ----
/>
<File
+ RelPath = "app.config"
+ BuildAction = "None"
+ />
+ <File
RelPath = "App.ico"
! BuildAction = "None"
/>
<File
Index: KeyboardHelpForm.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/KeyboardHelpForm.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** KeyboardHelpForm.cs 29 Jun 2003 00:50:13 -0000 1.2
--- KeyboardHelpForm.cs 3 Jul 2003 17:32:50 -0000 1.3
***************
*** 60,64 ****
// buttonOK
//
! this.buttonOK.Anchor = (System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right);
this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.buttonOK.Location = new System.Drawing.Point(336, 400);
--- 60,64 ----
// buttonOK
//
! this.buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.buttonOK.Location = new System.Drawing.Point(336, 400);
***************
*** 69,80 ****
// richTextBox
//
! this.richTextBox.Anchor = (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
! | System.Windows.Forms.AnchorStyles.Right);
this.richTextBox.BackColor = System.Drawing.SystemColors.Control;
this.richTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.richTextBox.Name = "richTextBox";
this.richTextBox.ReadOnly = true;
! this.richTextBox.Size = new System.Drawing.Size(432, 400);
this.richTextBox.TabIndex = 1;
this.richTextBox.Text = "(Contents comes from Help.rtf)";
--- 69,81 ----
// richTextBox
//
! this.richTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
! | System.Windows.Forms.AnchorStyles.Right)));
this.richTextBox.BackColor = System.Drawing.SystemColors.Control;
this.richTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
+ this.richTextBox.Location = new System.Drawing.Point(16, 8);
this.richTextBox.Name = "richTextBox";
this.richTextBox.ReadOnly = true;
! this.richTextBox.Size = new System.Drawing.Size(400, 392);
this.richTextBox.TabIndex = 1;
this.richTextBox.Text = "(Contents comes from Help.rtf)";
***************
*** 85,92 ****
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(432, 429);
! this.Controls.AddRange(new System.Windows.Forms.Control[] {
! this.buttonOK,
! this.richTextBox});
this.Name = "KeyboardHelpForm";
this.Text = "Keyboard Help - iclect";
this.ResumeLayout(false);
--- 86,93 ----
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(432, 429);
! this.Controls.Add(this.buttonOK);
! this.Controls.Add(this.richTextBox);
this.Name = "KeyboardHelpForm";
+ this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Keyboard Help - iclect";
this.ResumeLayout(false);
Index: KeyboardHelpForm.resx
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/KeyboardHelpForm.resx,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** KeyboardHelpForm.resx 27 Jun 2003 02:31:42 -0000 1.1
--- KeyboardHelpForm.resx 3 Jul 2003 17:32:50 -0000 1.2
***************
*** 2,61 ****
<root>
<!--
! Microsoft ResX Schema
!
! Version 1.3
! The primary goals of this format is to allow a simple XML format
! that is mostly human readable. The generation and parsing of the
! various data types are done through the TypeConverter classes
! associated with the data types.
!
! Example:
!
! ... ado.net/XML headers & schema ...
! <resheader name="resmimetype">text/microsoft-resx</resheader>
! <resheader name="version">1.3</resheader>
! <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
! <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
! <data name="Name1">this is my long string</data>
! <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
! <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
! [base64 mime encoded serialized .NET Framework object]
! </data>
! <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
! [base64 mime encoded string representing a byte array form of the .NET Framework object]
! </data>
!
! There are any number of "resheader" rows that contain simple
! name/value pairs.
!
! Each data row contains a name, and value. The row also contains a
! type or mimetype. Type corresponds to a .NET class that support
! text/value conversion through the TypeConverter architecture.
! Classes that don't support this are serialized and stored with the
! mimetype set.
!
! The mimetype is used for serialized objects, and tells the
! ResXResourceReader how to depersist the object. This is currently not
! extensible. For a given mimetype the value must be set accordingly:
!
! Note - application/x-microsoft.net.object.binary.base64 is the format
! that the ResXResourceWriter will generate, however the reader can
! read any of the formats listed below.
!
! mimetype: application/x-microsoft.net.object.binary.base64
! value : The object must be serialized with
! : System.Serialization.Formatters.Binary.BinaryFormatter
! : and then encoded with base64 encoding.
!
! mimetype: application/x-microsoft.net.object.soap.base64
! value : The object must be serialized with
! : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
! : and then encoded with base64 encoding.
! mimetype: application/x-microsoft.net.object.bytearray.base64
! value : The object must be serialized into a byte array
! : using a System.ComponentModel.TypeConverter
! : and then encoded with base64 encoding.
! -->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
--- 2,62 ----
<root>
<!--
! Microsoft ResX Schema
!
! Version 1.3
!
! The primary goals of this format is to allow a simple XML format
! that is mostly human readable. The generation and parsing of the
! various data types are done through the TypeConverter classes
! associated with the data types.
!
! Example:
!
! ... ado.net/XML headers & schema ...
! <resheader name="resmimetype">text/microsoft-resx</resheader>
! <resheader name="version">1.3</resheader>
! <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
! <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
! <data name="Name1">this is my long string</data>
! <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
! <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
! [base64 mime encoded serialized .NET Framework object]
! </data>
! <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
! [base64 mime encoded string representing a byte array form of the .NET Framework object]
! </data>
! There are any number of "resheader" rows that contain simple
! name/value pairs.
!
! Each data row contains a name, and value. The row also contains a
! type or mimetype. Type corresponds to a .NET class that support
! text/value conversion through the TypeConverter architecture.
! Classes that don't support this are serialized and stored with the
! mimetype set.
!
! The mimetype is used forserialized objects, and tells the
! ResXResourceReader how to depersist the object. This is currently not
! extensible. For a given mimetype the value must be set accordingly:
!
! Note - application/x-microsoft.net.object.binary.base64 is the format
! that the ResXResourceWriter will generate, however the reader can
! read any of the formats listed below.
!
! mimetype: application/x-microsoft.net.object.binary.base64
! value : The object must be serialized with
! : System.Serialization.Formatters.Binary.BinaryFormatter
! : and then encoded with base64 encoding.
!
! mimetype: application/x-microsoft.net.object.soap.base64
! value : The object must be serialized with
! : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
! : and then encoded with base64 encoding.
!
! mimetype: application/x-microsoft.net.object.bytearray.base64
! value : The object must be serialized into a byte array
! : using a System.ComponentModel.TypeConverter
! : and then encoded with base64 encoding.
! -->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
***************
*** 92,102 ****
</resheader>
<resheader name="reader">
! <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
! <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="$this.Name">
<value>KeyboardHelpForm</value>
</data>
</root>
--- 93,148 ----
</resheader>
<resheader name="reader">
! <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
! <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
+ <data name="buttonOK.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="buttonOK.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="buttonOK.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="richTextBox.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="richTextBox.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="richTextBox.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
+ </data>
+ <data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>(Default)</value>
+ </data>
+ <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="$this.Localizable" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>False</value>
+ </data>
+ <data name="$this.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+ <value>8, 8</value>
+ </data>
+ <data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>True</value>
+ </data>
+ <data name="$this.TrayHeight" type="System.Int32, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>80</value>
+ </data>
<data name="$this.Name">
<value>KeyboardHelpForm</value>
+ </data>
+ <data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>True</value>
+ </data>
+ <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+ <value>Private</value>
</data>
</root>
Index: MainForm.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect/MainForm.cs,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** MainForm.cs 3 Jul 2003 14:31:45 -0000 1.10
--- MainForm.cs 3 Jul 2003 17:32:50 -0000 1.11
***************
*** 502,506 ****
while (true)
{
! FolderBrowserDialog dlg = new FolderBrowserDialog();
dlg.ShowNewFolderButton = true;
dlg.SelectedPath = selectedFolder;
--- 502,506 ----
while (true)
{
! iclect.Forms.Utility.FolderBrowserDialog dlg = new iclect.Forms.Utility.FolderBrowserDialog();
dlg.ShowNewFolderButton = true;
dlg.SelectedPath = selectedFolder;
|
|
From: Michael P. <mh...@us...> - 2003-07-03 17:32:53
|
Update of /cvsroot/iclect/iclect/src/iclect.Forms/Utility In directory sc8-pr-cvs1:/tmp/cvs-serv13903/src/iclect.Forms/Utility Modified Files: FolderBrowserDialog.cs Log Message: Modified to run on both .NET Framework 1.0 and 1.1. Index: FolderBrowserDialog.cs =================================================================== RCS file: /cvsroot/iclect/iclect/src/iclect.Forms/Utility/FolderBrowserDialog.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** FolderBrowserDialog.cs 3 Jul 2003 14:14:58 -0000 1.3 --- FolderBrowserDialog.cs 3 Jul 2003 17:32:50 -0000 1.4 *************** *** 1,3 **** - #if FCL_1_0 using System; using System.ComponentModel; --- 1,2 ---- *************** *** 212,214 **** } } - #endif \ No newline at end of file --- 211,212 ---- |
|
From: Michael P. <mh...@us...> - 2003-07-03 17:32:53
|
Update of /cvsroot/iclect/iclect/src
In directory sc8-pr-cvs1:/tmp/cvs-serv13903/src
Modified Files:
iclect.sln
Log Message:
Modified to run on both .NET Framework 1.0 and 1.1.
Index: iclect.sln
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.sln,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** iclect.sln 3 Jul 2003 14:14:57 -0000 1.5
--- iclect.sln 3 Jul 2003 17:32:49 -0000 1.6
***************
*** 44,47 ****
--- 44,48 ----
{EC9DE818-B90C-4CB4-B0B6-DCD2724D48A2}.Doc.ActiveCfg = Debug
{EC9DE818-B90C-4CB4-B0B6-DCD2724D48A2}.Release.ActiveCfg = Release
+ {EC9DE818-B90C-4CB4-B0B6-DCD2724D48A2}.Release.Build.0 = Release
EndGlobalSection
GlobalSection(SolutionItems) = postSolution
|
|
From: Michael P. <mh...@us...> - 2003-07-03 14:32:55
|
Update of /cvsroot/iclect/iclect/src/iclect.Forms
In directory sc8-pr-cvs1:/tmp/cvs-serv15539/src/iclect.Forms
Modified Files:
Film.cs
Log Message:
Distinguish between the time an image was taken, if available, and the time the file was created.
Index: Film.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.Forms/Film.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Film.cs 29 Jun 2003 00:51:52 -0000 1.5
--- Film.cs 3 Jul 2003 14:32:51 -0000 1.6
***************
*** 263,269 ****
toolTip.Active = false;
ImageFile imageFile = _imageFolder.ImageFiles[index];
! string text = string.Format("Image: {0}\r\nCreated: {1}\r\nSize: {2} x {3}",
imageFile.FileInfo.Name,
! imageFile.CreationTime,
imageFile.Width,
imageFile.Height
--- 263,281 ----
toolTip.Active = false;
ImageFile imageFile = _imageFolder.ImageFiles[index];
! DateTime time;
! string creation;
! if (imageFile.RecordingTime == DateTime.MinValue)
! {
! time = imageFile.FileInfo.CreationTime;
! creation = "Created";
! }
! else
! {
! time = imageFile.RecordingTime;
! creation = "Taken";
! }
! string text = string.Format("Image: {0}\r\n{1}: {2}\r\nSize: {3} x {4}",
imageFile.FileInfo.Name,
! creation, time,
imageFile.Width,
imageFile.Height
|
|
From: Michael P. <mh...@us...> - 2003-07-03 14:32:55
|
Update of /cvsroot/iclect/iclect/src/iclect.ImageManager
In directory sc8-pr-cvs1:/tmp/cvs-serv15539/src/iclect.ImageManager
Modified Files:
ImageFile.cs
Log Message:
Distinguish between the time an image was taken, if available, and the time the file was created.
Index: ImageFile.cs
===================================================================
RCS file: /cvsroot/iclect/iclect/src/iclect.ImageManager/ImageFile.cs,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** ImageFile.cs 27 Jun 2003 02:31:42 -0000 1.4
--- ImageFile.cs 3 Jul 2003 14:32:51 -0000 1.5
***************
*** 162,173 ****
get { return _height; }
}
! public DateTime CreationTime
{
! get
! {
! if (_recordingTime == DateTime.MinValue)
! return _fileInfo.CreationTime;
! return _recordingTime;
! }
}
--- 162,168 ----
get { return _height; }
}
! public DateTime RecordingTime
{
! get { return _recordingTime; }
}
|
|
From: Michael P. <mh...@us...> - 2003-07-03 14:31:48
|
Update of /cvsroot/iclect/iclect/src/iclect In directory sc8-pr-cvs1:/tmp/cvs-serv15400/src/iclect Modified Files: MainForm.cs Log Message: Setting file attributes of copied files to normal. Index: MainForm.cs =================================================================== RCS file: /cvsroot/iclect/iclect/src/iclect/MainForm.cs,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** MainForm.cs 3 Jul 2003 14:14:57 -0000 1.9 --- MainForm.cs 3 Jul 2003 14:31:45 -0000 1.10 *************** *** 523,526 **** --- 523,527 ---- string target = Path.Combine(selectedFolder, imageFile.FileInfo.Name); File.Copy(source, target, true); + File.SetAttributes(target, FileAttributes.Normal); } } |
|
From: Michael P. <mh...@us...> - 2003-07-03 14:15:01
|
Update of /cvsroot/iclect/iclect/src/iclect.ImageManager In directory sc8-pr-cvs1:/tmp/cvs-serv12939/iclect.ImageManager Modified Files: iclect.ImageManager.csproj ImageFolder.cs Log Message: Updated to VS.NET 2003 Index: iclect.ImageManager.csproj =================================================================== RCS file: /cvsroot/iclect/iclect/src/iclect.ImageManager/iclect.ImageManager.csproj,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** iclect.ImageManager.csproj 24 Jun 2003 01:38:18 -0000 1.3 --- iclect.ImageManager.csproj 3 Jul 2003 14:14:58 -0000 1.4 *************** *** 2,7 **** <CSHARP ProjectType = "Local" ! ProductVersion = "7.0.9466" ! SchemaVersion = "1.0" ProjectGuid = "{F460F43E-3368-41C6-B1EA-70D0EAA54155}" > --- 2,7 ---- <CSHARP ProjectType = "Local" ! ProductVersion = "7.10.3077" ! SchemaVersion = "2.0" ProjectGuid = "{F460F43E-3368-41C6-B1EA-70D0EAA54155}" > *************** *** 17,21 **** --- 17,24 ---- DelaySign = "false" OutputType = "Library" + PreBuildEvent = "" + PostBuildEvent = "" RootNamespace = "iclect.ImageManager" + RunPostBuildEvent = "OnBuildSuccess" StartupObject = "" > *************** *** 31,34 **** --- 34,39 ---- FileAlignment = "4096" IncrementalBuild = "true" + NoStdLib = "false" + NoWarn = "" Optimize = "false" OutputPath = "bin\Debug\" *************** *** 49,52 **** --- 54,59 ---- FileAlignment = "4096" IncrementalBuild = "false" + NoStdLib = "false" + NoWarn = "" Optimize = "true" OutputPath = "bin\Release\" *************** *** 67,70 **** --- 74,79 ---- FileAlignment = "4096" IncrementalBuild = "false" + NoStdLib = "false" + NoWarn = "" Optimize = "false" OutputPath = "bin\Doc\" Index: ImageFolder.cs =================================================================== RCS file: /cvsroot/iclect/iclect/src/iclect.ImageManager/ImageFolder.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ImageFolder.cs 24 Jun 2003 01:38:18 -0000 1.3 --- ImageFolder.cs 3 Jul 2003 14:14:58 -0000 1.4 *************** *** 42,48 **** protected void Dispose(bool disposing) { - _thumbLoader.Stop(); if (disposing) { if (_imageFiles != null) { --- 42,48 ---- protected void Dispose(bool disposing) { if (disposing) { + _thumbLoader.Stop(); if (_imageFiles != null) { |