@ -32,11 +32,15 @@ namespace photo_sorter
System . ComponentModel . ComponentResourceManager resources = new System . ComponentModel . ComponentResourceManager ( typeof ( form_main ) ) ;
System . ComponentModel . ComponentResourceManager resources = new System . ComponentModel . ComponentResourceManager ( typeof ( form_main ) ) ;
this . menuStrip1 = new System . Windows . Forms . MenuStrip ( ) ;
this . menuStrip1 = new System . Windows . Forms . MenuStrip ( ) ;
this . fileToolStripMenuItem = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . fileToolStripMenuItem = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . openDirectoryToolStripMenuItem = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . tsi_openDirectory = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . selectDestinationDirectoryToolStripMenuItem = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . tsi_selectDestinationDirectory = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . quitApplicationToolStripMenuItem = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . toolStripSeparator2 = new System . Windows . Forms . ToolStripSeparator ( ) ;
this . tsi_quitApplication = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . helpToolStripMenuItem = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . helpToolStripMenuItem = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . aboutToolStripMenuItem = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . tsi_globalHotkeysList = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . tsi_enableGlobalHotkeys = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . toolStripSeparator1 = new System . Windows . Forms . ToolStripSeparator ( ) ;
this . tsi_about = new System . Windows . Forms . ToolStripMenuItem ( ) ;
this . gbox_preview = new System . Windows . Forms . GroupBox ( ) ;
this . gbox_preview = new System . Windows . Forms . GroupBox ( ) ;
this . lbl_counter = new System . Windows . Forms . Label ( ) ;
this . lbl_counter = new System . Windows . Forms . Label ( ) ;
this . lbl_current_fname = new System . Windows . Forms . Label ( ) ;
this . lbl_current_fname = new System . Windows . Forms . Label ( ) ;
@ -92,55 +96,86 @@ namespace photo_sorter
this . helpToolStripMenuItem } ) ;
this . helpToolStripMenuItem } ) ;
this . menuStrip1 . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . menuStrip1 . Location = new System . Drawing . Point ( 0 , 0 ) ;
this . menuStrip1 . Name = "menuStrip1" ;
this . menuStrip1 . Name = "menuStrip1" ;
this . menuStrip1 . Size = new System . Drawing . Size ( 110 1 , 24 ) ;
this . menuStrip1 . Size = new System . Drawing . Size ( 110 4 , 24 ) ;
this . menuStrip1 . TabIndex = 0 ;
this . menuStrip1 . TabIndex = 0 ;
this . menuStrip1 . Text = "menuStrip1" ;
this . menuStrip1 . Text = "menuStrip1" ;
//
//
// fileToolStripMenuItem
// fileToolStripMenuItem
//
//
this . fileToolStripMenuItem . DropDownItems . AddRange ( new System . Windows . Forms . ToolStripItem [ ] {
this . fileToolStripMenuItem . DropDownItems . AddRange ( new System . Windows . Forms . ToolStripItem [ ] {
this . openDirectoryToolStripMenuItem ,
this . tsi_openDirectory ,
this . selectDestinationDirectoryToolStripMenuItem ,
this . tsi_selectDestinationDirectory ,
this . quitApplicationToolStripMenuItem } ) ;
this . toolStripSeparator2 ,
this . tsi_quitApplication } ) ;
this . fileToolStripMenuItem . Name = "fileToolStripMenuItem" ;
this . fileToolStripMenuItem . Name = "fileToolStripMenuItem" ;
this . fileToolStripMenuItem . Size = new System . Drawing . Size ( 37 , 20 ) ;
this . fileToolStripMenuItem . Size = new System . Drawing . Size ( 37 , 20 ) ;
this . fileToolStripMenuItem . Text = "&File" ;
this . fileToolStripMenuItem . Text = "&File" ;
//
//
// openDirectoryToolStripMenuItem
// tsi_ openDirectory
//
//
this . openDirectoryToolStripMenuItem . Name = " openDirectoryToolStripMenuItem ";
this . tsi_ openDirectory. Name = " tsi_ openDirectory";
this . openDirectoryToolStripMenuItem . Size = new System . Drawing . Size ( 219 , 22 ) ;
this . tsi_ openDirectory. Size = new System . Drawing . Size ( 219 , 22 ) ;
this . openDirectoryToolStripMenuItem . Text = "&Open Source Directory" ;
this . tsi_ openDirectory. Text = "&Open Source Directory" ;
this . openDirectoryToolStripMenuItem . Click + = new System . EventHandler ( this . openDirectoryToolStripMenuItem_Click ) ;
this . tsi_ openDirectory. Click + = new System . EventHandler ( this . openDirectoryToolStripMenuItem_Click ) ;
//
//
// selectDestinationDirectoryToolStripMenuItem
// tsi_ selectDestinationDirectory
//
//
this . selectDestinationDirectoryToolStripMenuItem . Name = " selectDestinationDirectoryToolStripMenuItem ";
this . tsi_ selectDestinationDirectory. Name = " tsi_ selectDestinationDirectory";
this . selectDestinationDirectoryToolStripMenuItem . Size = new System . Drawing . Size ( 219 , 22 ) ;
this . tsi_ selectDestinationDirectory. Size = new System . Drawing . Size ( 219 , 22 ) ;
this . selectDestinationDirectoryToolStripMenuItem . Text = "Select &Destination Directory" ;
this . tsi_ selectDestinationDirectory. Text = "Select &Destination Directory" ;
this . selectDestinationDirectoryToolStripMenuItem . Click + = new System . EventHandler ( this . selectDestinationDirectoryToolStripMenuItem_Click ) ;
this . tsi_ selectDestinationDirectory. Click + = new System . EventHandler ( this . selectDestinationDirectoryToolStripMenuItem_Click ) ;
//
//
// quitApplicationToolStripMenuItem
// toolStripSeparator2
//
//
this . quitApplicationToolStripMenuItem . Name = "quitApplicationToolStripMenuItem" ;
this . toolStripSeparator2 . Name = "toolStripSeparator2" ;
this . quitApplicationToolStripMenuItem . Size = new System . Drawing . Size ( 219 , 22 ) ;
this . toolStripSeparator2 . Size = new System . Drawing . Size ( 216 , 6 ) ;
this . quitApplicationToolStripMenuItem . Text = "&Quit Application" ;
//
this . quitApplicationToolStripMenuItem . Click + = new System . EventHandler ( this . quitApplicationToolStripMenuItem_Click ) ;
// tsi_quitApplication
//
this . tsi_quitApplication . Name = "tsi_quitApplication" ;
this . tsi_quitApplication . Size = new System . Drawing . Size ( 219 , 22 ) ;
this . tsi_quitApplication . Text = "&Quit Application" ;
this . tsi_quitApplication . Click + = new System . EventHandler ( this . quitApplicationToolStripMenuItem_Click ) ;
//
//
// helpToolStripMenuItem
// helpToolStripMenuItem
//
//
this . helpToolStripMenuItem . DropDownItems . AddRange ( new System . Windows . Forms . ToolStripItem [ ] {
this . helpToolStripMenuItem . DropDownItems . AddRange ( new System . Windows . Forms . ToolStripItem [ ] {
this . aboutToolStripMenuItem } ) ;
this . tsi_globalHotkeysList ,
this . tsi_enableGlobalHotkeys ,
this . toolStripSeparator1 ,
this . tsi_about } ) ;
this . helpToolStripMenuItem . Name = "helpToolStripMenuItem" ;
this . helpToolStripMenuItem . Name = "helpToolStripMenuItem" ;
this . helpToolStripMenuItem . Size = new System . Drawing . Size ( 44 , 20 ) ;
this . helpToolStripMenuItem . Size = new System . Drawing . Size ( 44 , 20 ) ;
this . helpToolStripMenuItem . Text = "&Help" ;
this . helpToolStripMenuItem . Text = "&Help" ;
//
//
// aboutToolStripMenuItem
// tsi_globalHotkeysList
//
//
this . aboutToolStripMenuItem . Name = "aboutToolStripMenuItem" ;
this . tsi_globalHotkeysList . Name = "tsi_globalHotkeysList" ;
this . aboutToolStripMenuItem . Size = new System . Drawing . Size ( 107 , 22 ) ;
this . tsi_globalHotkeysList . Size = new System . Drawing . Size ( 192 , 22 ) ;
this . aboutToolStripMenuItem . Text = "&About" ;
this . tsi_globalHotkeysList . Text = "&Global Hotkeys List" ;
this . aboutToolStripMenuItem . Click + = new System . EventHandler ( this . aboutToolStripMenuItem_Click ) ;
this . tsi_globalHotkeysList . Click + = new System . EventHandler ( this . globalHotkeysListToolStripMenuItem_Click ) ;
//
// tsi_enableGlobalHotkeys
//
this . tsi_enableGlobalHotkeys . Checked = true ;
this . tsi_enableGlobalHotkeys . CheckOnClick = true ;
this . tsi_enableGlobalHotkeys . CheckState = System . Windows . Forms . CheckState . Checked ;
this . tsi_enableGlobalHotkeys . Name = "tsi_enableGlobalHotkeys" ;
this . tsi_enableGlobalHotkeys . Size = new System . Drawing . Size ( 192 , 22 ) ;
this . tsi_enableGlobalHotkeys . Text = "&Enable Global Hotkeys" ;
this . tsi_enableGlobalHotkeys . Click + = new System . EventHandler ( this . tsi_enableGlobalHotkeys_Click ) ;
//
// toolStripSeparator1
//
this . toolStripSeparator1 . Name = "toolStripSeparator1" ;
this . toolStripSeparator1 . Size = new System . Drawing . Size ( 189 , 6 ) ;
//
// tsi_about
//
this . tsi_about . Name = "tsi_about" ;
this . tsi_about . Size = new System . Drawing . Size ( 192 , 22 ) ;
this . tsi_about . Text = "&About" ;
this . tsi_about . Click + = new System . EventHandler ( this . aboutToolStripMenuItem_Click ) ;
//
//
// gbox_preview
// gbox_preview
//
//
@ -155,8 +190,9 @@ namespace photo_sorter
this . gbox_preview . Controls . Add ( this . img_preview ) ;
this . gbox_preview . Controls . Add ( this . img_preview ) ;
this . gbox_preview . Enabled = false ;
this . gbox_preview . Enabled = false ;
this . gbox_preview . Location = new System . Drawing . Point ( 3 , 3 ) ;
this . gbox_preview . Location = new System . Drawing . Point ( 3 , 3 ) ;
this . gbox_preview . MinimumSize = new System . Drawing . Size ( 640 , 0 ) ;
this . gbox_preview . Name = "gbox_preview" ;
this . gbox_preview . Name = "gbox_preview" ;
this . gbox_preview . Size = new System . Drawing . Size ( 7 08, 533 ) ;
this . gbox_preview . Size = new System . Drawing . Size ( 7 10, 540 ) ;
this . gbox_preview . TabIndex = 1 ;
this . gbox_preview . TabIndex = 1 ;
this . gbox_preview . TabStop = false ;
this . gbox_preview . TabStop = false ;
this . gbox_preview . Text = "Preview" ;
this . gbox_preview . Text = "Preview" ;
@ -164,7 +200,7 @@ namespace photo_sorter
// lbl_counter
// lbl_counter
//
//
this . lbl_counter . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . lbl_counter . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . lbl_counter . Location = new System . Drawing . Point ( 60 7 , 18 ) ;
this . lbl_counter . Location = new System . Drawing . Point ( 60 9 , 18 ) ;
this . lbl_counter . Name = "lbl_counter" ;
this . lbl_counter . Name = "lbl_counter" ;
this . lbl_counter . RightToLeft = System . Windows . Forms . RightToLeft . No ;
this . lbl_counter . RightToLeft = System . Windows . Forms . RightToLeft . No ;
this . lbl_counter . Size = new System . Drawing . Size ( 95 , 23 ) ;
this . lbl_counter . Size = new System . Drawing . Size ( 95 , 23 ) ;
@ -177,14 +213,14 @@ namespace photo_sorter
this . lbl_current_fname . AutoSize = true ;
this . lbl_current_fname . AutoSize = true ;
this . lbl_current_fname . Location = new System . Drawing . Point ( 9 , 18 ) ;
this . lbl_current_fname . Location = new System . Drawing . Point ( 9 , 18 ) ;
this . lbl_current_fname . Name = "lbl_current_fname" ;
this . lbl_current_fname . Name = "lbl_current_fname" ;
this . lbl_current_fname . Size = new System . Drawing . Size ( 202 , 13 ) ;
this . lbl_current_fname . Size = new System . Drawing . Size ( 160 , 13 ) ;
this . lbl_current_fname . TabIndex = 7 ;
this . lbl_current_fname . TabIndex = 7 ;
this . lbl_current_fname . Text = " reckoning_2 .file - Select Source to begin!";
this . lbl_current_fname . Text = " test .file - Select Source to begin!";
//
//
// btn_next
// btn_next
//
//
this . btn_next . Anchor = System . Windows . Forms . AnchorStyles . Top ;
this . btn_next . Anchor = System . Windows . Forms . AnchorStyles . Top ;
this . btn_next . Location = new System . Drawing . Point ( 39 7 , 13 ) ;
this . btn_next . Location = new System . Drawing . Point ( 39 8 , 13 ) ;
this . btn_next . Name = "btn_next" ;
this . btn_next . Name = "btn_next" ;
this . btn_next . Size = new System . Drawing . Size ( 75 , 23 ) ;
this . btn_next . Size = new System . Drawing . Size ( 75 , 23 ) ;
this . btn_next . TabIndex = 8 ;
this . btn_next . TabIndex = 8 ;
@ -195,7 +231,7 @@ namespace photo_sorter
// btn_prev
// btn_prev
//
//
this . btn_prev . Anchor = System . Windows . Forms . AnchorStyles . Top ;
this . btn_prev . Anchor = System . Windows . Forms . AnchorStyles . Top ;
this . btn_prev . Location = new System . Drawing . Point ( 23 5 , 13 ) ;
this . btn_prev . Location = new System . Drawing . Point ( 23 6 , 13 ) ;
this . btn_prev . Name = "btn_prev" ;
this . btn_prev . Name = "btn_prev" ;
this . btn_prev . Size = new System . Drawing . Size ( 75 , 23 ) ;
this . btn_prev . Size = new System . Drawing . Size ( 75 , 23 ) ;
this . btn_prev . TabIndex = 6 ;
this . btn_prev . TabIndex = 6 ;
@ -206,7 +242,7 @@ namespace photo_sorter
// btn_sort
// btn_sort
//
//
this . btn_sort . Anchor = System . Windows . Forms . AnchorStyles . Top ;
this . btn_sort . Anchor = System . Windows . Forms . AnchorStyles . Top ;
this . btn_sort . Location = new System . Drawing . Point ( 31 6 , 13 ) ;
this . btn_sort . Location = new System . Drawing . Point ( 31 7 , 13 ) ;
this . btn_sort . Name = "btn_sort" ;
this . btn_sort . Name = "btn_sort" ;
this . btn_sort . Size = new System . Drawing . Size ( 75 , 23 ) ;
this . btn_sort . Size = new System . Drawing . Size ( 75 , 23 ) ;
this . btn_sort . TabIndex = 7 ;
this . btn_sort . TabIndex = 7 ;
@ -223,7 +259,7 @@ namespace photo_sorter
this . img_preview . InitialImage = null ;
this . img_preview . InitialImage = null ;
this . img_preview . Location = new System . Drawing . Point ( 6 , 42 ) ;
this . img_preview . Location = new System . Drawing . Point ( 6 , 42 ) ;
this . img_preview . Name = "img_preview" ;
this . img_preview . Name = "img_preview" ;
this . img_preview . Size = new System . Drawing . Size ( 69 6, 485 ) ;
this . img_preview . Size = new System . Drawing . Size ( 69 8, 492 ) ;
this . img_preview . SizeMode = System . Windows . Forms . PictureBoxSizeMode . Zoom ;
this . img_preview . SizeMode = System . Windows . Forms . PictureBoxSizeMode . Zoom ;
this . img_preview . TabIndex = 0 ;
this . img_preview . TabIndex = 0 ;
this . img_preview . TabStop = false ;
this . img_preview . TabStop = false ;
@ -247,8 +283,9 @@ namespace photo_sorter
this . gbox_info . Controls . Add ( this . tbox_sort_primary ) ;
this . gbox_info . Controls . Add ( this . tbox_sort_primary ) ;
this . gbox_info . Controls . Add ( this . lbl_sort_primary ) ;
this . gbox_info . Controls . Add ( this . lbl_sort_primary ) ;
this . gbox_info . Location = new System . Drawing . Point ( 3 , 3 ) ;
this . gbox_info . Location = new System . Drawing . Point ( 3 , 3 ) ;
this . gbox_info . MinimumSize = new System . Drawing . Size ( 280 , 320 ) ;
this . gbox_info . Name = "gbox_info" ;
this . gbox_info . Name = "gbox_info" ;
this . gbox_info . Size = new System . Drawing . Size ( 35 3, 533 ) ;
this . gbox_info . Size = new System . Drawing . Size ( 35 4, 540 ) ;
this . gbox_info . TabIndex = 2 ;
this . gbox_info . TabIndex = 2 ;
this . gbox_info . TabStop = false ;
this . gbox_info . TabStop = false ;
this . gbox_info . Text = "Sorting Info" ;
this . gbox_info . Text = "Sorting Info" ;
@ -323,7 +360,7 @@ namespace photo_sorter
//
//
this . btn_reload_src . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . btn_reload_src . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . btn_reload_src . Enabled = false ;
this . btn_reload_src . Enabled = false ;
this . btn_reload_src . Location = new System . Drawing . Point ( 27 3, 481 ) ;
this . btn_reload_src . Location = new System . Drawing . Point ( 27 4, 488 ) ;
this . btn_reload_src . Name = "btn_reload_src" ;
this . btn_reload_src . Name = "btn_reload_src" ;
this . btn_reload_src . Size = new System . Drawing . Size ( 75 , 23 ) ;
this . btn_reload_src . Size = new System . Drawing . Size ( 75 , 23 ) ;
this . btn_reload_src . TabIndex = 902 ;
this . btn_reload_src . TabIndex = 902 ;
@ -334,7 +371,7 @@ namespace photo_sorter
// btn_open_src_dir
// btn_open_src_dir
//
//
this . btn_open_src_dir . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . btn_open_src_dir . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . btn_open_src_dir . Location = new System . Drawing . Point ( 32 2, 505 ) ;
this . btn_open_src_dir . Location = new System . Drawing . Point ( 32 3, 512 ) ;
this . btn_open_src_dir . Name = "btn_open_src_dir" ;
this . btn_open_src_dir . Name = "btn_open_src_dir" ;
this . btn_open_src_dir . Size = new System . Drawing . Size ( 26 , 23 ) ;
this . btn_open_src_dir . Size = new System . Drawing . Size ( 26 , 23 ) ;
this . btn_open_src_dir . TabIndex = 901 ;
this . btn_open_src_dir . TabIndex = 901 ;
@ -345,7 +382,7 @@ namespace photo_sorter
// btn_open_dest_dir
// btn_open_dest_dir
//
//
this . btn_open_dest_dir . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . btn_open_dest_dir . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . btn_open_dest_dir . Location = new System . Drawing . Point ( 32 2 , 34 ) ;
this . btn_open_dest_dir . Location = new System . Drawing . Point ( 32 3 , 34 ) ;
this . btn_open_dest_dir . Name = "btn_open_dest_dir" ;
this . btn_open_dest_dir . Name = "btn_open_dest_dir" ;
this . btn_open_dest_dir . Size = new System . Drawing . Size ( 26 , 23 ) ;
this . btn_open_dest_dir . Size = new System . Drawing . Size ( 26 , 23 ) ;
this . btn_open_dest_dir . TabIndex = 1 ;
this . btn_open_dest_dir . TabIndex = 1 ;
@ -357,10 +394,10 @@ namespace photo_sorter
//
//
this . tbox_source_dir . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Left )
this . tbox_source_dir . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Left )
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . tbox_source_dir . Location = new System . Drawing . Point ( 5 , 5 06 ) ;
this . tbox_source_dir . Location = new System . Drawing . Point ( 5 , 5 13 ) ;
this . tbox_source_dir . Name = "tbox_source_dir" ;
this . tbox_source_dir . Name = "tbox_source_dir" ;
this . tbox_source_dir . ReadOnly = true ;
this . tbox_source_dir . ReadOnly = true ;
this . tbox_source_dir . Size = new System . Drawing . Size ( 31 5 , 20 ) ;
this . tbox_source_dir . Size = new System . Drawing . Size ( 31 6 , 20 ) ;
this . tbox_source_dir . TabIndex = 900 ;
this . tbox_source_dir . TabIndex = 900 ;
this . tbox_source_dir . TabStop = false ;
this . tbox_source_dir . TabStop = false ;
//
//
@ -368,7 +405,7 @@ namespace photo_sorter
//
//
this . lbl_source_dir . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Left ) ) ) ;
this . lbl_source_dir . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Left ) ) ) ;
this . lbl_source_dir . AutoSize = true ;
this . lbl_source_dir . AutoSize = true ;
this . lbl_source_dir . Location = new System . Drawing . Point ( 6 , 49 1 ) ;
this . lbl_source_dir . Location = new System . Drawing . Point ( 6 , 49 8 ) ;
this . lbl_source_dir . Name = "lbl_source_dir" ;
this . lbl_source_dir . Name = "lbl_source_dir" ;
this . lbl_source_dir . Size = new System . Drawing . Size ( 89 , 13 ) ;
this . lbl_source_dir . Size = new System . Drawing . Size ( 89 , 13 ) ;
this . lbl_source_dir . TabIndex = 7 ;
this . lbl_source_dir . TabIndex = 7 ;
@ -381,7 +418,7 @@ namespace photo_sorter
this . tbox_dest_dir . Location = new System . Drawing . Point ( 6 , 35 ) ;
this . tbox_dest_dir . Location = new System . Drawing . Point ( 6 , 35 ) ;
this . tbox_dest_dir . Name = "tbox_dest_dir" ;
this . tbox_dest_dir . Name = "tbox_dest_dir" ;
this . tbox_dest_dir . ReadOnly = true ;
this . tbox_dest_dir . ReadOnly = true ;
this . tbox_dest_dir . Size = new System . Drawing . Size ( 31 4 , 20 ) ;
this . tbox_dest_dir . Size = new System . Drawing . Size ( 31 5 , 20 ) ;
this . tbox_dest_dir . TabIndex = 0 ;
this . tbox_dest_dir . TabIndex = 0 ;
//
//
// lbl_dest_dir
// lbl_dest_dir
@ -398,7 +435,7 @@ namespace photo_sorter
this . gbox_copybool . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . gbox_copybool . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Top | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . gbox_copybool . Controls . Add ( this . rad_sort_move ) ;
this . gbox_copybool . Controls . Add ( this . rad_sort_move ) ;
this . gbox_copybool . Controls . Add ( this . rad_sort_copy ) ;
this . gbox_copybool . Controls . Add ( this . rad_sort_copy ) ;
this . gbox_copybool . Location = new System . Drawing . Point ( 23 4 , 151 ) ;
this . gbox_copybool . Location = new System . Drawing . Point ( 23 5 , 151 ) ;
this . gbox_copybool . Name = "gbox_copybool" ;
this . gbox_copybool . Name = "gbox_copybool" ;
this . gbox_copybool . Size = new System . Drawing . Size ( 111 , 71 ) ;
this . gbox_copybool . Size = new System . Drawing . Size ( 111 , 71 ) ;
this . gbox_copybool . TabIndex = 4 ;
this . gbox_copybool . TabIndex = 4 ;
@ -433,7 +470,7 @@ namespace photo_sorter
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . tbox_sort_secondary . Location = new System . Drawing . Point ( 6 , 123 ) ;
this . tbox_sort_secondary . Location = new System . Drawing . Point ( 6 , 123 ) ;
this . tbox_sort_secondary . Name = "tbox_sort_secondary" ;
this . tbox_sort_secondary . Name = "tbox_sort_secondary" ;
this . tbox_sort_secondary . Size = new System . Drawing . Size ( 34 1 , 20 ) ;
this . tbox_sort_secondary . Size = new System . Drawing . Size ( 34 2 , 20 ) ;
this . tbox_sort_secondary . TabIndex = 3 ;
this . tbox_sort_secondary . TabIndex = 3 ;
//
//
// lbl_sort_secondary
// lbl_sort_secondary
@ -451,7 +488,7 @@ namespace photo_sorter
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
| System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . tbox_sort_primary . Location = new System . Drawing . Point ( 6 , 79 ) ;
this . tbox_sort_primary . Location = new System . Drawing . Point ( 6 , 79 ) ;
this . tbox_sort_primary . Name = "tbox_sort_primary" ;
this . tbox_sort_primary . Name = "tbox_sort_primary" ;
this . tbox_sort_primary . Size = new System . Drawing . Size ( 34 1 , 20 ) ;
this . tbox_sort_primary . Size = new System . Drawing . Size ( 34 2 , 20 ) ;
this . tbox_sort_primary . TabIndex = 2 ;
this . tbox_sort_primary . TabIndex = 2 ;
//
//
// lbl_sort_primary
// lbl_sort_primary
@ -470,9 +507,9 @@ namespace photo_sorter
this . toolStripSpacer ,
this . toolStripSpacer ,
this . stat_bar_label ,
this . stat_bar_label ,
this . pbar } ) ;
this . pbar } ) ;
this . status_bar . Location = new System . Drawing . Point ( 0 , 57 2 ) ;
this . status_bar . Location = new System . Drawing . Point ( 0 , 57 9 ) ;
this . status_bar . Name = "status_bar" ;
this . status_bar . Name = "status_bar" ;
this . status_bar . Size = new System . Drawing . Size ( 110 1 , 22 ) ;
this . status_bar . Size = new System . Drawing . Size ( 110 4 , 22 ) ;
this . status_bar . TabIndex = 3 ;
this . status_bar . TabIndex = 3 ;
this . status_bar . Text = "statusStrip1" ;
this . status_bar . Text = "statusStrip1" ;
//
//
@ -486,7 +523,7 @@ namespace photo_sorter
// toolStripSpacer
// toolStripSpacer
//
//
this . toolStripSpacer . Name = "toolStripSpacer" ;
this . toolStripSpacer . Name = "toolStripSpacer" ;
this . toolStripSpacer . Size = new System . Drawing . Size ( 78 4 , 17 ) ;
this . toolStripSpacer . Size = new System . Drawing . Size ( 78 7 , 17 ) ;
this . toolStripSpacer . Spring = true ;
this . toolStripSpacer . Spring = true ;
//
//
// stat_bar_label
// stat_bar_label
@ -514,27 +551,27 @@ namespace photo_sorter
// split_container_main.Panel1
// split_container_main.Panel1
//
//
this . split_container_main . Panel1 . Controls . Add ( this . gbox_info ) ;
this . split_container_main . Panel1 . Controls . Add ( this . gbox_info ) ;
this . split_container_main . Panel1MinSize = 128 ;
this . split_container_main . Panel1MinSize = 320 ;
//
//
// split_container_main.Panel2
// split_container_main.Panel2
//
//
this . split_container_main . Panel2 . Controls . Add ( this . gbox_preview ) ;
this . split_container_main . Panel2 . Controls . Add ( this . gbox_preview ) ;
this . split_container_main . Panel2MinSize = 25 6;
this . split_container_main . Panel2MinSize = 640 ;
this . split_container_main . Size = new System . Drawing . Size ( 10 77, 539 ) ;
this . split_container_main . Size = new System . Drawing . Size ( 10 80, 546 ) ;
this . split_container_main . SplitterDistance = 3 59 ;
this . split_container_main . SplitterDistance = 3 60 ;
this . split_container_main . TabIndex = 4 ;
this . split_container_main . TabIndex = 4 ;
//
//
// form_main
// form_main
//
//
this . AutoScaleDimensions = new System . Drawing . SizeF ( 6F , 13F ) ;
this . AutoScaleDimensions = new System . Drawing . SizeF ( 6F , 13F ) ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Font ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Font ;
this . ClientSize = new System . Drawing . Size ( 110 1, 594 ) ;
this . ClientSize = new System . Drawing . Size ( 110 4, 601 ) ;
this . Controls . Add ( this . status_bar ) ;
this . Controls . Add ( this . status_bar ) ;
this . Controls . Add ( this . menuStrip1 ) ;
this . Controls . Add ( this . menuStrip1 ) ;
this . Controls . Add ( this . split_container_main ) ;
this . Controls . Add ( this . split_container_main ) ;
this . Icon = ( ( System . Drawing . Icon ) ( resources . GetObject ( "$this.Icon" ) ) ) ;
this . Icon = ( ( System . Drawing . Icon ) ( resources . GetObject ( "$this.Icon" ) ) ) ;
this . MainMenuStrip = this . menuStrip1 ;
this . MainMenuStrip = this . menuStrip1 ;
this . MinimumSize = new System . Drawing . Size ( 768 , 480 ) ;
this . MinimumSize = new System . Drawing . Size ( 1024 , 480 ) ;
this . Name = "form_main" ;
this . Name = "form_main" ;
this . Text = "Skyfall Photo Sorter" ;
this . Text = "Skyfall Photo Sorter" ;
this . menuStrip1 . ResumeLayout ( false ) ;
this . menuStrip1 . ResumeLayout ( false ) ;
@ -563,10 +600,10 @@ namespace photo_sorter
private System . Windows . Forms . MenuStrip menuStrip1 ;
private System . Windows . Forms . MenuStrip menuStrip1 ;
private System . Windows . Forms . ToolStripMenuItem fileToolStripMenuItem ;
private System . Windows . Forms . ToolStripMenuItem fileToolStripMenuItem ;
private System . Windows . Forms . ToolStripMenuItem openDirectoryToolStripMenuItem ;
private System . Windows . Forms . ToolStripMenuItem tsi_ openDirectory;
private System . Windows . Forms . ToolStripMenuItem quitApplicationToolStripMenuItem ;
private System . Windows . Forms . ToolStripMenuItem tsi_ quitApplication;
private System . Windows . Forms . ToolStripMenuItem helpToolStripMenuItem ;
private System . Windows . Forms . ToolStripMenuItem helpToolStripMenuItem ;
private System . Windows . Forms . ToolStripMenuItem aboutToolStripMenuItem ;
private System . Windows . Forms . ToolStripMenuItem tsi_ about;
private System . Windows . Forms . GroupBox gbox_preview ;
private System . Windows . Forms . GroupBox gbox_preview ;
private System . Windows . Forms . PictureBox img_preview ;
private System . Windows . Forms . PictureBox img_preview ;
private System . Windows . Forms . Button btn_next ;
private System . Windows . Forms . Button btn_next ;
@ -591,7 +628,7 @@ namespace photo_sorter
private System . Windows . Forms . Button btn_open_dest_dir ;
private System . Windows . Forms . Button btn_open_dest_dir ;
private System . Windows . Forms . FolderBrowserDialog folderBrowserDialog1 ;
private System . Windows . Forms . FolderBrowserDialog folderBrowserDialog1 ;
private System . Windows . Forms . Button btn_open_src_dir ;
private System . Windows . Forms . Button btn_open_src_dir ;
private System . Windows . Forms . ToolStripMenuItem selectDestinationDirectoryToolStripMenuItem ;
private System . Windows . Forms . ToolStripMenuItem tsi_ selectDestinationDirectory;
private System . Windows . Forms . Button btn_reload_src ;
private System . Windows . Forms . Button btn_reload_src ;
private System . Windows . Forms . Label lbl_counter ;
private System . Windows . Forms . Label lbl_counter ;
private System . Windows . Forms . ToolStripStatusLabel toolStripSpacer ;
private System . Windows . Forms . ToolStripStatusLabel toolStripSpacer ;
@ -603,6 +640,10 @@ namespace photo_sorter
private System . Windows . Forms . RadioButton rad_png ;
private System . Windows . Forms . RadioButton rad_png ;
private System . Windows . Forms . RadioButton rad_jpeg ;
private System . Windows . Forms . RadioButton rad_jpeg ;
private System . Windows . Forms . RadioButton rad_dng ;
private System . Windows . Forms . RadioButton rad_dng ;
private System . Windows . Forms . ToolStripMenuItem tsi_globalHotkeysList ;
private System . Windows . Forms . ToolStripMenuItem tsi_enableGlobalHotkeys ;
private System . Windows . Forms . ToolStripSeparator toolStripSeparator1 ;
private System . Windows . Forms . ToolStripSeparator toolStripSeparator2 ;
}
}
}
}