filemorph

Check-in [c7d5da2991]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Tweak build for Windows
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: c7d5da299181d89e08128caa53072a8287728ec7
User & Date: kevin 2020-04-26 02:36:25
Context
2020-04-27
03:32
Finalize Windows installation check-in: 05e8b1384b user: kevin tags: trunk
2020-04-26
02:36
Tweak build for Windows check-in: c7d5da2991 user: kevin tags: trunk
2020-04-25
21:18
More tweaks for Windows check-in: e517f0e6f3 user: kevin tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to build.bat.

12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

call move /y filemorph.pl.tdy filemorph.pl


call xcopy scriptlibs Tcl86\lib /s /i /y
call xcopy winlibs Tcl86\lib /s /i /y

call pp  --gui -C -M Encode::Byte  -l tcl86t.dll -l tk86t.dll  -a "Tcl86" filemorph.pl -o FileMorph-unsigned.exe 

call xcopy C:\Users\Kevin\Desktop\DDECmd.exe build\
call xcopy filemorph-add-to-name.bat build\
call xcopy filemorph-change-extension.bat build\
call xcopy filemorph-change-text.bat build\









|







12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

call move /y filemorph.pl.tdy filemorph.pl


call xcopy scriptlibs Tcl86\lib /s /i /y
call xcopy winlibs Tcl86\lib /s /i /y

call pp   -C -M Encode::Byte  -l tcl86t.dll -l tk86t.dll  -a "Tcl86;script/Tcl86" filemorph.pl -o FileMorph-unsigned.exe 

call xcopy C:\Users\Kevin\Desktop\DDECmd.exe build\
call xcopy filemorph-add-to-name.bat build\
call xcopy filemorph-change-extension.bat build\
call xcopy filemorph-change-text.bat build\


Changes to filemorph.pl.

12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
use File::Copy::Recursive qw(dircopy );
use Env qw(HOME);
use File::Path qw(remove_tree);
use File::Copy::Recursive qw (rmove);

BEGIN {

    if ( $Config{osname} eq "darwin" ) {
        my $frameworkpath = "$Bin/Contents/Frameworks/Tcl.framework/Tcl";
        $ENV{'PERL_TCL_DL_PATH'} = $frameworkpath;
    }
    if ( $Config{osname} eq "MSWin32" ) {
        my $frameworkpath = "$Bin/Tcl86/bin/tcl86t.dll";
        $ENV{'PERL_TCL_DL_PATH'} = $frameworkpath;
    }

}

#use strict;
use warnings;
use Tkx;

our $windowingsystem = Tkx::tk('windowingsystem');
our $IS_AQUA         = ( $windowingsystem eq "aqua" );
our $IS_WINDOWS      = ( $windowingsystem eq "win32" );

use File::Copy qw(move copy);
use Env qw (HOME TMP TEMP TMPDIR);
use Time::Local;
use POSIX qw( strftime );
use File::Basename qw(fileparse basename dirname);
use LWP::Simple;
use File::Temp qw(tempfile);

Tkx::set( '::argv0', $ARGV[0] || "" );
Tkx::catch('console hide');

Tkx::package_require('tkdnd');
Tkx::package_require('regproc');
Tkx::package_require('machelp');
Tkx::package_require('softwareupdate');
Tkx::package_require('widget::dateentry');







|



|











|
|









|







12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
use File::Copy::Recursive qw(dircopy );
use Env qw(HOME);
use File::Path qw(remove_tree);
use File::Copy::Recursive qw (rmove);

BEGIN {

    if ($Config{osname} eq "darwin") {
        my $frameworkpath = "$Bin/Contents/Frameworks/Tcl.framework/Tcl";
        $ENV{'PERL_TCL_DL_PATH'} = $frameworkpath;
    }
    if ($Config{osname} eq "MSWin32") {
        my $frameworkpath = "$Bin/Tcl86/bin/tcl86t.dll";
        $ENV{'PERL_TCL_DL_PATH'} = $frameworkpath;
    }

}

#use strict;
use warnings;
use Tkx;

our $windowingsystem = Tkx::tk('windowingsystem');
our $IS_AQUA         = ($windowingsystem eq "aqua");
our $IS_WINDOWS      = ($windowingsystem eq "win32");

use File::Copy qw(move copy);
use Env qw (HOME TMP TEMP TMPDIR);
use Time::Local;
use POSIX qw( strftime );
use File::Basename qw(fileparse basename dirname);
use LWP::Simple;
use File::Temp qw(tempfile);

Tkx::set('::argv0', $ARGV[0] || "");
Tkx::catch('console hide');

Tkx::package_require('tkdnd');
Tkx::package_require('regproc');
Tkx::package_require('machelp');
Tkx::package_require('softwareupdate');
Tkx::package_require('widget::dateentry');
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
our $clocktime;
our $modtime;
our $timeofday;
our $icon;
our $fileimage;
our $folderimage;

$datetime = strftime( "% m/%d/ % Y", localtime );

#initialize the app
&startUp;
&makeImage;

@filelist = ();

if ($IS_AQUA) {
    Tkx::interp_alias( "", "::tk::mac::OpenDocument", "", [ \&openDoc ] );
    Tkx::interp_alias( "", "bgerror",                 "", [ \&errlog ] );
    Tkx::interp_alias( "", "::tk::mac::Quit",         "", [ \&shutdown ] );
}

#draw the GUI
our $mw = Tkx::widget->new(".");
Tkx::wm_title( $mw, "FileMorph" );
$mw->g_wm_withdraw;
if ($IS_WINDOWS) {
    $mw->g_wm_protocol( WM_DELETE_WINDOW => \&shutdown );
    $mw->g_wm_iconphoto( -default => $icon );
}

#menubar code
my $menubar = $mw->new_menu();
Tkx::option_add( "*tearOff", 0 );
our $applemenu;
if ($IS_AQUA) {
    $applemenu = $menubar->new_menu( -name => "apple" );
}
my $searchmenu = $menubar->new_menu();
my $helpmenu = $menubar->new_menu( -name => "help" );

if ($IS_AQUA) {
    $menubar->add_cascade(
        -label => "FileMorph",
        -menu  => $applemenu,
    );








|








|
|
|




|


|
|




|


|


|







83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
our $clocktime;
our $modtime;
our $timeofday;
our $icon;
our $fileimage;
our $folderimage;

$datetime = strftime("% m/%d/ % Y", localtime);

#initialize the app
&startUp;
&makeImage;

@filelist = ();

if ($IS_AQUA) {
    Tkx::interp_alias("", "::tk::mac::OpenDocument", "", [\&openDoc]);
    Tkx::interp_alias("", "bgerror",                 "", [\&errlog]);
    Tkx::interp_alias("", "::tk::mac::Quit",         "", [\&shutdown]);
}

#draw the GUI
our $mw = Tkx::widget->new(".");
Tkx::wm_title($mw, "FileMorph");
$mw->g_wm_withdraw;
if ($IS_WINDOWS) {
    $mw->g_wm_protocol(WM_DELETE_WINDOW => \&shutdown);
    $mw->g_wm_iconphoto(-default => $icon);
}

#menubar code
my $menubar = $mw->new_menu();
Tkx::option_add("*tearOff", 0);
our $applemenu;
if ($IS_AQUA) {
    $applemenu = $menubar->new_menu(-name => "apple");
}
my $searchmenu = $menubar->new_menu();
my $helpmenu = $menubar->new_menu(-name => "help");

if ($IS_AQUA) {
    $menubar->add_cascade(
        -label => "FileMorph",
        -menu  => $applemenu,
    );

195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291

    $helpmenu->add_command(
        -label   => "Check for Updates",
        -command => \&checkUpdate,
    );
}

$mw->configure( -menu => $menubar );

#bindings
if ($IS_AQUA) {
    $mw->g_bind( "<Command-W>", sub { $mw->g_wm_state("withdrawn"); } );
    $mw->g_bind( "<Command-w>", sub { $mw->g_wm_state("withdrawn"); } );
}

#main window frame, listbox and notebook

my $toolbar = $mw->new_ttk__frame( -padding => 5 );
$toolbar->g_pack(
    -fill   => "both",
    -expand => "no",
    -side   => "top",
);

my $folderbutton = $toolbar->new_ttk__button(
    -image     => $folderimage,
    -style     => "Toolbutton",
    -takefocus => 0,
    -command   => \&setDir,
);
$folderbutton->g_pack(
    -expand => "no",
    -fill   => "both",
    -side   => "left"
);

Tkx::tooltip__tooltip( $folderbutton, "Select the directory" );

my $filebutton = $toolbar->new_ttk__button(
    -image     => $fileimage,
    -style     => "Toolbutton",
    -takefocus => 0,
    -command   => \&setFile,
);

$filebutton->g_pack(
    -expand => "no",
    -fill   => "both",
    -side   => "left"
);

Tkx::tooltip__tooltip( $filebutton, "Select the file" );

my $sep = $toolbar->new_ttk__separator( -orient => "vertical" );
$sep->g_pack(
    -fill   => "both",
    -expand => "no",
    -side   => "top",
);

my $frame = $mw->new_ttk__frame;

$frame->g_pack(
    -fill   => "both",
    -expand => "yes",
    -side   => "bottom",
);

my $topsep = $frame->new_ttk__separator( -orient => "vertical" );
$topsep->g_pack(
    -fill   => "both",
    -expand => "no",
    -side   => "top",
);

my $textframe = $frame->new_ttk__panedwindow( -orient => "horizontal", );

$textframe->g_pack(
    -fill   => "both",
    -expand => "yes",
    -side   => "top",
);

my $listframe = $textframe->new_ttk__frame;
$listframe->g_pack(
    -fill   => "both",
    -expand => "yes",
);

my $header = $listframe->new_ttk__label( -text => "File", );
$header->g_pack(
    -fill   => "both",
    -expand => "yes",
    -side   => "top",
);

my $boxframe = $listframe->new_ttk__frame;







|



|
|




|


















|














|

|














|






|













|







195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291

    $helpmenu->add_command(
        -label   => "Check for Updates",
        -command => \&checkUpdate,
    );
}

$mw->configure(-menu => $menubar);

#bindings
if ($IS_AQUA) {
    $mw->g_bind("<Command-W>", sub {$mw->g_wm_state("withdrawn");});
    $mw->g_bind("<Command-w>", sub {$mw->g_wm_state("withdrawn");});
}

#main window frame, listbox and notebook

my $toolbar = $mw->new_ttk__frame(-padding => 5);
$toolbar->g_pack(
    -fill   => "both",
    -expand => "no",
    -side   => "top",
);

my $folderbutton = $toolbar->new_ttk__button(
    -image     => $folderimage,
    -style     => "Toolbutton",
    -takefocus => 0,
    -command   => \&setDir,
);
$folderbutton->g_pack(
    -expand => "no",
    -fill   => "both",
    -side   => "left"
);

Tkx::tooltip__tooltip($folderbutton, "Select the directory");

my $filebutton = $toolbar->new_ttk__button(
    -image     => $fileimage,
    -style     => "Toolbutton",
    -takefocus => 0,
    -command   => \&setFile,
);

$filebutton->g_pack(
    -expand => "no",
    -fill   => "both",
    -side   => "left"
);

Tkx::tooltip__tooltip($filebutton, "Select the file");

my $sep = $toolbar->new_ttk__separator(-orient => "vertical");
$sep->g_pack(
    -fill   => "both",
    -expand => "no",
    -side   => "top",
);

my $frame = $mw->new_ttk__frame;

$frame->g_pack(
    -fill   => "both",
    -expand => "yes",
    -side   => "bottom",
);

my $topsep = $frame->new_ttk__separator(-orient => "vertical");
$topsep->g_pack(
    -fill   => "both",
    -expand => "no",
    -side   => "top",
);

my $textframe = $frame->new_ttk__panedwindow(-orient => "horizontal",);

$textframe->g_pack(
    -fill   => "both",
    -expand => "yes",
    -side   => "top",
);

my $listframe = $textframe->new_ttk__frame;
$listframe->g_pack(
    -fill   => "both",
    -expand => "yes",
);

my $header = $listframe->new_ttk__label(-text => "File",);
$header->g_pack(
    -fill   => "both",
    -expand => "yes",
    -side   => "top",
);

my $boxframe = $listframe->new_ttk__frame;
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
);
$listbox->g_pack(
    -fill   => "both",
    -expand => "yes",
    -side   => "left",
);

Tkx::tkdnd__drop___target_register( $listbox, "*" );
Tkx::bind( $listbox, "<<Drop:DND_Files>>",
    [ sub { &selectFileSystem; }, Tkx::Ev("%D") ] );

my $noteframe = $textframe->new_ttk__frame;
$noteframe->g_pack(
    -fill   => "both",
    -expand => "yes",
    -side   => "right",
);







|
|
|







304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
);
$listbox->g_pack(
    -fill   => "both",
    -expand => "yes",
    -side   => "left",
);

Tkx::tkdnd__drop___target_register($listbox, "*");
Tkx::bind($listbox, "<<Drop:DND_Files>>",
    [sub {&selectFileSystem;}, Tkx::Ev("%D")]);

my $noteframe = $textframe->new_ttk__frame;
$noteframe->g_pack(
    -fill   => "both",
    -expand => "yes",
    -side   => "right",
);
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
my $scrollhouse = $boxframe->new_ttk__frame;
$scrollhouse->g_pack(
    -fill   => "y",
    -expand => "no",
    -side   => "right",
);

my $scrollbar = $scrollhouse->new_ttk__scrollbar( -orient => 'vertical' );
$scrollbar->configure( -command => [ $listbox, "yview" ] );
$scrollbar->g_pack(
    -fill   => "y",
    -expand => "no",
    -side   => "right",
);

$listbox->configure( -yscrollcommand => [ $scrollbar, "set" ] );

#notebook components
my $extension   = $notebook->new_ttk__frame;
my $replacement = $notebook->new_ttk__frame;
my $text        = $notebook->new_ttk__frame;
my $date        = $notebook->new_ttk__frame;
my $case        = $notebook->new_ttk__frame;
my $attributes  = $notebook->new_ttk__frame;

#UI to modify file extensions
$notebook->add( $extension, -text => "Extension" );
my $exsrclabel = $extension->new_ttk__label( -text => "Extension:" );
my $exsrcentry = $extension->new_ttk__entry( -textvar => \$sourceext );
my $extargetlabel =
  $extension->new_ttk__label( -text => "New Extension Name:" );
my $extargetentry = $extension->new_ttk__entry( -textvar => \$targetext );
my $extchange = $extension->new_ttk__button(
    -text    => "Change",
    -command => \&changeExtension
);
my $extundo = $extension->new_ttk__button(
    -text    => "Undo",
    -command => \&undoExtension
);
my $extclear = $extension->new_ttk__button(
    -text    => "Clear",
    -command => sub { $sourceext = ""; $targetext = ""; }
);

our @extarray = (
    $exsrclabel, $exsrcentry, $extargetlabel, $extargetentry,
    $extchange, $extundo, $extclear
);

foreach (@extarray) {
    $_->g_pack(
        -fill   => "both",
        -expand => "no",
        -side   => "top",
    );
}

#UI to replace text in file name
$notebook->add( $replacement, -text => "Replace Text" );
my $repsrclabel = $replacement->new_ttk__label( -text => "Text:" );
my $repsrcentry = $replacement->new_ttk__entry( -textvar => \$srcstring );
my $reptargetlabel =
  $replacement->new_ttk__label( -text => "Replacement Text:" );
my $reptargetentry = $replacement->new_ttk__entry( -textvar => \$targetstring );
my $repbutton = $replacement->new_ttk__button(
    -text    => "Change",
    -command => \&replaceString
);
my $repundo = $replacement->new_ttk__button(
    -text    => "Undo",
    -command => \&undoReplaceString
);
my $repclear = $replacement->new_ttk__button(
    -text    => "Clear",
    -command => sub { $srcstring = ""; $targetstring = ""; },
);

our @reparray = (
    $repsrclabel, $repsrcentry, $reptargetlabel, $reptargetentry,
    $repbutton, $repundo, $repclear
);

foreach (@reparray) {
    $_->g_pack(
        -fill   => "both",
        -expand => "no",
        -side   => "top",
    );
}

#UI to add text to file name
$notebook->add( $text, -text => "Add Text" );
my $txtsrclabel = $text->new_ttk__label( -text => "Text:" );
my $txtsrcentry = $text->new_ttk__entry( -textvar => \$prependstring );
my $txtbefore = $text->new_ttk__radiobutton(
    -text     => "Before",
    -variable => \$prepend,
    -value    => 0
);
my $txtafter = $text->new_ttk__radiobutton(
    -text     => "After",
    -variable => \$prepend,
    -value    => 1
);
my $txtbutton =
  $text->new_ttk__button( -text => "Change", -command => \&addString );
my $txtundo = $text->new_ttk__button(
    -text    => "Undo",
    -command => \&undoAddString
);
my $txtclear = $text->new_ttk__button(
    -text    => "Clear",
    -command => sub { $prependstring = ""; }
);

$prepend = 1;

our @txtarray = (
    $txtsrclabel, $txtsrcentry, $txtbefore, $txtafter,
    $txtbutton,   $txtundo,     $txtclear
);

foreach (@txtarray) {
    $_->g_pack(
        -fill   => "both",
        -expand => "no",
        -side   => "top",
    );
}

#UI to modify file attributes
$notebook->add( $attributes, -text => "Date" );

my $todaylabel = $attributes->new_ttk__label( -text => "Date:", );
my $today = $attributes->new_widget__dateentry(
    -textvariable => \$datetime,
    -font         => \&Tkx::TkDefaultFont
);
my $timelabel = $attributes->new_ttk__label(
    -text => "Time (enter HH:MM, military-style, i.e. 23:00 for 11:00 PM)", );

my $timeentry = $attributes->new_ttk__entry( -textvariable => \$clocktime, );
my $attbutton = $attributes->new_ttk__button(
    -text    => "Change",
    -command => \&changeTime
);

our @attarray = ( $todaylabel, $today, $timelabel, $timeentry, $attbutton );

foreach (@attarray) {
    $_->g_pack(
        -fill   => "both",
        -expand => "no",
        -side   => "top",
    );
}

$textframe->add($listframe);
$textframe->add($noteframe);

$mw->g_wm_deiconify;

Tkx::after(50);

#This is necessary to get the listbox to draw; sometimes it does not render until the mouse hovers over it
Tkx::focus( -force => $listbox );

if ($IS_AQUA) {
    &createAppleScriptCommands;
    $mw->g_bind( "<<LightAqua>>", sub { &Tkx::darkaqua__changeImagesLight; } );
    $mw->g_bind( "<<DarkAqua>>",  sub { &Tkx::darkaqua__changeImagesDark; } );
    &Tkx::darkaqua__checkDarkMode;

}

if ($IS_WINDOWS) {
    &createDDECommands;
}







|
|






|










|
|
|
|
<
|










|
















|
|
|
|
<
|










|
















|
|
|











|






|


















|

|





|

|





|

















|



|
|







329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358

359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390

391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
my $scrollhouse = $boxframe->new_ttk__frame;
$scrollhouse->g_pack(
    -fill   => "y",
    -expand => "no",
    -side   => "right",
);

my $scrollbar = $scrollhouse->new_ttk__scrollbar(-orient => 'vertical');
$scrollbar->configure(-command => [$listbox, "yview"]);
$scrollbar->g_pack(
    -fill   => "y",
    -expand => "no",
    -side   => "right",
);

$listbox->configure(-yscrollcommand => [$scrollbar, "set"]);

#notebook components
my $extension   = $notebook->new_ttk__frame;
my $replacement = $notebook->new_ttk__frame;
my $text        = $notebook->new_ttk__frame;
my $date        = $notebook->new_ttk__frame;
my $case        = $notebook->new_ttk__frame;
my $attributes  = $notebook->new_ttk__frame;

#UI to modify file extensions
$notebook->add($extension, -text => "Extension");
my $exsrclabel = $extension->new_ttk__label(-text => "Extension:");
my $exsrcentry = $extension->new_ttk__entry(-textvar => \$sourceext);
my $extargetlabel =$extension->new_ttk__label(-text => "New Extension Name:");

my $extargetentry = $extension->new_ttk__entry(-textvar => \$targetext);
my $extchange = $extension->new_ttk__button(
    -text    => "Change",
    -command => \&changeExtension
);
my $extundo = $extension->new_ttk__button(
    -text    => "Undo",
    -command => \&undoExtension
);
my $extclear = $extension->new_ttk__button(
    -text    => "Clear",
    -command => sub {$sourceext = ""; $targetext = "";}
);

our @extarray = (
    $exsrclabel, $exsrcentry, $extargetlabel, $extargetentry,
    $extchange, $extundo, $extclear
);

foreach (@extarray) {
    $_->g_pack(
        -fill   => "both",
        -expand => "no",
        -side   => "top",
    );
}

#UI to replace text in file name
$notebook->add($replacement, -text => "Replace Text");
my $repsrclabel = $replacement->new_ttk__label(-text => "Text:");
my $repsrcentry = $replacement->new_ttk__entry(-textvar => \$srcstring);
my $reptargetlabel =$replacement->new_ttk__label(-text => "Replacement Text:");

my $reptargetentry = $replacement->new_ttk__entry(-textvar => \$targetstring);
my $repbutton = $replacement->new_ttk__button(
    -text    => "Change",
    -command => \&replaceString
);
my $repundo = $replacement->new_ttk__button(
    -text    => "Undo",
    -command => \&undoReplaceString
);
my $repclear = $replacement->new_ttk__button(
    -text    => "Clear",
    -command => sub {$srcstring = ""; $targetstring = "";},
);

our @reparray = (
    $repsrclabel, $repsrcentry, $reptargetlabel, $reptargetentry,
    $repbutton, $repundo, $repclear
);

foreach (@reparray) {
    $_->g_pack(
        -fill   => "both",
        -expand => "no",
        -side   => "top",
    );
}

#UI to add text to file name
$notebook->add($text, -text => "Add Text");
my $txtsrclabel = $text->new_ttk__label(-text => "Text:");
my $txtsrcentry = $text->new_ttk__entry(-textvar => \$prependstring);
my $txtbefore = $text->new_ttk__radiobutton(
    -text     => "Before",
    -variable => \$prepend,
    -value    => 0
);
my $txtafter = $text->new_ttk__radiobutton(
    -text     => "After",
    -variable => \$prepend,
    -value    => 1
);
my $txtbutton =
  $text->new_ttk__button(-text => "Change", -command => \&addString);
my $txtundo = $text->new_ttk__button(
    -text    => "Undo",
    -command => \&undoAddString
);
my $txtclear = $text->new_ttk__button(
    -text    => "Clear",
    -command => sub {$prependstring = "";}
);

$prepend = 1;

our @txtarray = (
    $txtsrclabel, $txtsrcentry, $txtbefore, $txtafter,
    $txtbutton,   $txtundo,     $txtclear
);

foreach (@txtarray) {
    $_->g_pack(
        -fill   => "both",
        -expand => "no",
        -side   => "top",
    );
}

#UI to modify file attributes
$notebook->add($attributes, -text => "Date");

my $todaylabel = $attributes->new_ttk__label(-text => "Date:",);
my $today = $attributes->new_widget__dateentry(
    -textvariable => \$datetime,
    -font         => \&Tkx::TkDefaultFont
);
my $timelabel = $attributes->new_ttk__label(
    -text => "Time (enter HH:MM, military-style, i.e. 23:00 for 11:00 PM)",);

my $timeentry = $attributes->new_ttk__entry(-textvariable => \$clocktime,);
my $attbutton = $attributes->new_ttk__button(
    -text    => "Change",
    -command => \&changeTime
);

our @attarray = ($todaylabel, $today, $timelabel, $timeentry, $attbutton);

foreach (@attarray) {
    $_->g_pack(
        -fill   => "both",
        -expand => "no",
        -side   => "top",
    );
}

$textframe->add($listframe);
$textframe->add($noteframe);

$mw->g_wm_deiconify;

Tkx::after(50);

#This is necessary to get the listbox to draw; sometimes it does not render until the mouse hovers over it
Tkx::focus(-force => $listbox);

if ($IS_AQUA) {
    &createAppleScriptCommands;
    $mw->g_bind("<<LightAqua>>", sub {&Tkx::darkaqua__changeImagesLight;});
    $mw->g_bind("<<DarkAqua>>",  sub {&Tkx::darkaqua__changeImagesDark;});
    &Tkx::darkaqua__checkDarkMode;

}

if ($IS_WINDOWS) {
    &createDDECommands;
}
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
}

sub makeImage {

    my $data =
"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
";
    $icon = Tkx::image_create_photo( -data => $data );

    my $folderdata = "
                #define xbm_folder_sans_32_width 32
#define xbm_folder_sans_32_height 32
static char xbm_folder_sans_32_bits[] = {
  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
  0x00, 0x00, 0x00, 0x00, 0xFF, 0x03, 0x00, 0x00, 0xFF, 0x03, 0x00, 0x00, 
  0x03, 0xFF, 0xFF, 0x3F, 0x03, 0xFF, 0xFF, 0x3F, 0x03, 0xFF, 0xFF, 0xFF, 
  0x03, 0xFF, 0xFF, 0xFF, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, };


}
";
    $folderimage = Tkx::image_create_bitmap( -data => $folderdata );

    my $filedata = "#define xbm_folder_text_32_width 32
#define xbm_folder_text_32_height 32
static char xbm_folder_text_32_bits[] = {
  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
  0x00, 0x00, 0x00, 0x00, 0xFF, 0x03, 0x00, 0x00, 0xFF, 0x03, 0x00, 0x00, 
  0x03, 0xFF, 0xFF, 0x3F, 0x03, 0xFF, 0xFF, 0x3F, 0x03, 0xFF, 0xFF, 0xFF, 
  0x03, 0xFF, 0xFF, 0xFF, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0xFF, 0xFF, 0xC0, 
  0x03, 0xFF, 0xFF, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0xFF, 0xFF, 0xC0, 0x03, 0xFF, 0xFF, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0xFF, 0x0F, 0xC0, 0x03, 0xFF, 0x0F, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, };

                
                ";
    $fileimage = Tkx::image_create_bitmap( -data => $filedata );

}

#check filelist for error handling
sub checkfilelist {

    if ( scalar(@filelist) == 0 ) {

        errlog("Please select a file or directory to run this operation.");

    }
}

#"about application"command







|




















|


















|






|







514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
}

sub makeImage {

    my $data =
"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
";
    $icon = Tkx::image_create_photo(-data => $data);

    my $folderdata = "
                #define xbm_folder_sans_32_width 32
#define xbm_folder_sans_32_height 32
static char xbm_folder_sans_32_bits[] = {
  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
  0x00, 0x00, 0x00, 0x00, 0xFF, 0x03, 0x00, 0x00, 0xFF, 0x03, 0x00, 0x00, 
  0x03, 0xFF, 0xFF, 0x3F, 0x03, 0xFF, 0xFF, 0x3F, 0x03, 0xFF, 0xFF, 0xFF, 
  0x03, 0xFF, 0xFF, 0xFF, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, };


}
";
    $folderimage = Tkx::image_create_bitmap(-data => $folderdata);

    my $filedata = "#define xbm_folder_text_32_width 32
#define xbm_folder_text_32_height 32
static char xbm_folder_text_32_bits[] = {
  0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 
  0x00, 0x00, 0x00, 0x00, 0xFF, 0x03, 0x00, 0x00, 0xFF, 0x03, 0x00, 0x00, 
  0x03, 0xFF, 0xFF, 0x3F, 0x03, 0xFF, 0xFF, 0x3F, 0x03, 0xFF, 0xFF, 0xFF, 
  0x03, 0xFF, 0xFF, 0xFF, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0xFF, 0xFF, 0xC0, 
  0x03, 0xFF, 0xFF, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0xFF, 0xFF, 0xC0, 0x03, 0xFF, 0xFF, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0xFF, 0x0F, 0xC0, 0x03, 0xFF, 0x0F, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 0x03, 0x00, 0x00, 0xC0, 
  0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, };

                
                ";
    $fileimage = Tkx::image_create_bitmap(-data => $filedata);

}

#check filelist for error handling
sub checkfilelist {

    if (scalar(@filelist) == 0) {

        errlog("Please select a file or directory to run this operation.");

    }
}

#"about application"command
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
"Cannot run operation without text.Please enter text into the appropriate entry field to run this operation."
    );
}

#update display of files
sub updateFileDisplay {

    $listbox->delete( 0, "end" );
    if ( scalar(@filelist) > 1 ) {
        @filelist = <"$folder/*">;
    }
    foreach (@filelist) {
        $listbox->insert( "end", "$_" );
    }
}

#set search directory
sub setDir {
    $listbox->delete( 0, "end" );
    $folder = Tkx::tk___chooseDirectory( -parent => $mw );
    return unless $folder;
    @filelist = <"$folder/*">;
    foreach (@filelist) {
        $listbox->insert( "end", "$_" );
    }
    return "$folder";
}

#set file to change
sub setFile {

    $listbox->delete( 0, "end" );
    my $filename = Tkx::tk___getOpenFile( -parent => $mw );
    return unless $filename;
    @filelist = ();
    push( @filelist, $filename );
    foreach (@filelist) {
        $listbox->insert( "end", "$_" );
    }
    return @filelist;
}

#change all file extensions in a directory
sub changeExtension {

    &checkfilelist;

    return if ( scalar(@filelist) == 0 );

    if ( scalar(@filelist) == 1 ) {

        &fileErrMsg;
        return;
    }

    if ( $exsrcentry->get() eq "" || $extargetentry->get() eq "" ) {
        &dataErrMsg;
        return;
    }

    $sourceext = $exsrcentry->get();
    $targetext = $extargetentry->get();








|
|



|





|
|



|







|
|


|

|









|

|





|







611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
"Cannot run operation without text.Please enter text into the appropriate entry field to run this operation."
    );
}

#update display of files
sub updateFileDisplay {

    $listbox->delete(0, "end");
    if (scalar(@filelist) > 1) {
        @filelist = <"$folder/*">;
    }
    foreach (@filelist) {
        $listbox->insert("end", "$_");
    }
}

#set search directory
sub setDir {
    $listbox->delete(0, "end");
    $folder = Tkx::tk___chooseDirectory(-parent => $mw);
    return unless $folder;
    @filelist = <"$folder/*">;
    foreach (@filelist) {
        $listbox->insert("end", "$_");
    }
    return "$folder";
}

#set file to change
sub setFile {

    $listbox->delete(0, "end");
    my $filename = Tkx::tk___getOpenFile(-parent => $mw);
    return unless $filename;
    @filelist = ();
    push(@filelist, $filename);
    foreach (@filelist) {
        $listbox->insert("end", "$_");
    }
    return @filelist;
}

#change all file extensions in a directory
sub changeExtension {

    &checkfilelist;

    return if (scalar(@filelist) == 0);

    if (scalar(@filelist) == 1) {

        &fileErrMsg;
        return;
    }

    if ($exsrcentry->get() eq "" || $extargetentry->get() eq "") {
        &dataErrMsg;
        return;
    }

    $sourceext = $exsrcentry->get();
    $targetext = $extargetentry->get();

686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
}

#undo operation of change file extension
sub undoExtension {

    &checkfilelist;

    return if ( scalar(@filelist) == 0 );

    if ( scalar(@filelist) == 1 ) {

        &fileErrMsg;
        return;
    }

    if ( $exsrcentry->get() eq "" || $extargetentry->get() eq "" ) {
        &dataErrMsg;
        return;
    }

    $sourceext = $exsrcentry->get();
    $targetext = $extargetentry->get();








|

|





|







684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
}

#undo operation of change file extension
sub undoExtension {

    &checkfilelist;

    return if (scalar(@filelist) == 0);

    if (scalar(@filelist) == 1) {

        &fileErrMsg;
        return;
    }

    if ($exsrcentry->get() eq "" || $extargetentry->get() eq "") {
        &dataErrMsg;
        return;
    }

    $sourceext = $exsrcentry->get();
    $targetext = $extargetentry->get();

719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
}

#replace string in file name
sub replaceString {

    &checkfilelist;

    return if ( scalar(@filelist) == 0 );

    if ( scalar(@filelist) == 1 ) {

        &fileErrMsg;
        return;
    }

    if ( $repsrcentry->get() eq "" ) {
        &dataErrMsg;
        return;
    }

    $srcstring    = $repsrcentry->get();
    $targetstring = $reptargetentry->get();

    if ( $reptargetentry->get() eq "" ) {
        my $changeQuestion;
        $changeQuestion = Tkx::tk___messageBox(
            -parent => $mw,
            -title  => "Confirm Removal of Text",
            -type   => "yesno",
            -icon   => "info",
            -message =>
              "Do you want to strip out \"$srcstring\"with no replacement?",
            -detail => "This operation cannot be undone.",
        );

        if ( $changeQuestion eq "no" ) {
            return;
        }
    }

    foreach (@filelist) {
        next unless -f $_;
        my $filename    = $_;
        my $newfilename = $filename;
        $newfilename =~ s/$srcstring/$targetstring/ig;
        move $filename, $newfilename;
    }
    &updateFileDisplay;
}

#undo replace string in filename
sub undoReplaceString {

    &checkfilelist;

    return if ( scalar(@filelist) == 0 );

    if ( scalar(@filelist) == 1 ) {

        &fileErrMsg;
        return;
    }

    if ( $repsrcentry->get() eq "" ) {
        &dataErrMsg;
        return;
    }

    if ( $reptargetentry->get() eq "" ) {
        my $sorryQuestion;
        $sorryQuestion = Tkx::tk___messageBox(
            -parent  => $mw,
            -title   => "Removal Operation Cannot Be Undone",
            -icon    => "info",
            -message => "You confirmed removing the string \"$srcstring.\"",
            -detail  => "This operation cannot be undone.",







|

|





|







|











|



















|

|





|




|







717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
}

#replace string in file name
sub replaceString {

    &checkfilelist;

    return if (scalar(@filelist) == 0);

    if (scalar(@filelist) == 1) {

        &fileErrMsg;
        return;
    }

    if ($repsrcentry->get() eq "") {
        &dataErrMsg;
        return;
    }

    $srcstring    = $repsrcentry->get();
    $targetstring = $reptargetentry->get();

    if ($reptargetentry->get() eq "") {
        my $changeQuestion;
        $changeQuestion = Tkx::tk___messageBox(
            -parent => $mw,
            -title  => "Confirm Removal of Text",
            -type   => "yesno",
            -icon   => "info",
            -message =>
              "Do you want to strip out \"$srcstring\"with no replacement?",
            -detail => "This operation cannot be undone.",
        );

        if ($changeQuestion eq "no") {
            return;
        }
    }

    foreach (@filelist) {
        next unless -f $_;
        my $filename    = $_;
        my $newfilename = $filename;
        $newfilename =~ s/$srcstring/$targetstring/ig;
        move $filename, $newfilename;
    }
    &updateFileDisplay;
}

#undo replace string in filename
sub undoReplaceString {

    &checkfilelist;

    return if (scalar(@filelist) == 0);

    if (scalar(@filelist) == 1) {

        &fileErrMsg;
        return;
    }

    if ($repsrcentry->get() eq "") {
        &dataErrMsg;
        return;
    }

    if ($reptargetentry->get() eq "") {
        my $sorryQuestion;
        $sorryQuestion = Tkx::tk___messageBox(
            -parent  => $mw,
            -title   => "Removal Operation Cannot Be Undone",
            -icon    => "info",
            -message => "You confirmed removing the string \"$srcstring.\"",
            -detail  => "This operation cannot be undone.",
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
}

#replace string in file name
sub addString {

    &checkfilelist;

    return if ( scalar(@filelist) == 0 );

    if ( scalar(@filelist) == 1 ) {

        &fileErrMsg;
        return;
    }

    if ( $txtsrcentry->get() eq "" ) {
        &dataErrMsg;
        return;
    }

    $prependstring = $txtsrcentry->get();

    foreach (@filelist) {
        next unless -f $_;
        if ( $prepend == 0 ) {

            my $filename    = $_;
            my $newname     = $filename;
            my $basename    = basename($filename);
            my $dirname     = dirname($filename);
            my $newbasename = $basename;
            $newbasename = $prependstring . $basename;
            $newname =~ s/$basename/$newbasename/i;
            move $filename, $newname;
        }

        if ( $prepend == 1 ) {
            my $filename = $_;

            my @components = split( /\./, $filename );
            my $newname =
              $components[0] . $prependstring . "\." . $components[1];
            move $filename, $newname;
        }
    }
    &updateFileDisplay;
}

#replace string in file name
sub undoAddString {

    &checkfilelist;

    return if ( scalar(@filelist) == 0 );

    if ( scalar(@filelist) == 1 ) {

        &fileErrMsg;
        return;
    }

    if ( $txtsrcentry->get() eq "" ) {
        &dataErrMsg;
        return;
    }

    $prependstring = $txtsrcentry->get();

    foreach (@filelist) {







|

|





|








|











|


|













|

|





|







805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
}

#replace string in file name
sub addString {

    &checkfilelist;

    return if (scalar(@filelist) == 0);

    if (scalar(@filelist) == 1) {

        &fileErrMsg;
        return;
    }

    if ($txtsrcentry->get() eq "") {
        &dataErrMsg;
        return;
    }

    $prependstring = $txtsrcentry->get();

    foreach (@filelist) {
        next unless -f $_;
        if ($prepend == 0) {

            my $filename    = $_;
            my $newname     = $filename;
            my $basename    = basename($filename);
            my $dirname     = dirname($filename);
            my $newbasename = $basename;
            $newbasename = $prependstring . $basename;
            $newname =~ s/$basename/$newbasename/i;
            move $filename, $newname;
        }

        if ($prepend == 1) {
            my $filename = $_;

            my @components = split(/\./, $filename);
            my $newname =
              $components[0] . $prependstring . "\." . $components[1];
            move $filename, $newname;
        }
    }
    &updateFileDisplay;
}

#replace string in file name
sub undoAddString {

    &checkfilelist;

    return if (scalar(@filelist) == 0);

    if (scalar(@filelist) == 1) {

        &fileErrMsg;
        return;
    }

    if ($txtsrcentry->get() eq "") {
        &dataErrMsg;
        return;
    }

    $prependstring = $txtsrcentry->get();

    foreach (@filelist) {
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
}

#change modification time of files
sub changeTime {

    &checkfilelist;
    my $validation = &validateTime;
    return if ( $validation == 0 );
    return if ( scalar(@filelist) == 0 );

    my $changeQuestion;
    $changeQuestion = Tkx::tk___messageBox(
        -parent  => $mw,
        -title   => "Change Modification Time",
        -type    => "yesno",
        -icon    => "info",
        -message => "Do you want to change the file modification time?",
        -detail  => "This operation cannot be undone.",
    );

    if ( $changeQuestion eq "no" ) {
        return;
    }
    if ( $changeQuestion eq "yes" ) {
        my @datearray  = split( /\//, $datetime );
        my @clockarray = split( /\:/, $clocktime );
        my $hour;
        my $second = "00";
        if ( $timeofday == 1 ) {
            $hour = $clockarray[0] + 12;
        }
        else {
            $hour = $clockarray[0];
        }

        $modtime =
          timelocal( $second, $clockarray[1], $hour,
            $datearray[1], ( $datearray[0] - 1 ),
            $datearray[2] );
        print $modtime;

        foreach (@filelist) {

            utime $modtime, $modtime, $_;
        }

    }
}

#make sure time is formatted properly
sub validateTime {

    my $time = $timeentry->get();
    if ( $time =~ (/\d\d:\d\d/) ) {
        return 1;
    }
    else {
        $timeentry->delete( 0, "end" );

        Tkx::tk___messageBox(
            -parent  => $mw,
            -title   => "Incorrect Time Format",
            -icon    => "info",
            -message => "Incorrect Time Format",
            -detail  => "Please enter the time in HH:MM format, i.e. 12:30.",







|
|











|


|
|
|


|







|
|
|














|



|







883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
}

#change modification time of files
sub changeTime {

    &checkfilelist;
    my $validation = &validateTime;
    return if ($validation == 0);
    return if (scalar(@filelist) == 0);

    my $changeQuestion;
    $changeQuestion = Tkx::tk___messageBox(
        -parent  => $mw,
        -title   => "Change Modification Time",
        -type    => "yesno",
        -icon    => "info",
        -message => "Do you want to change the file modification time?",
        -detail  => "This operation cannot be undone.",
    );

    if ($changeQuestion eq "no") {
        return;
    }
    if ($changeQuestion eq "yes") {
        my @datearray  = split(/\//, $datetime);
        my @clockarray = split(/\:/, $clocktime);
        my $hour;
        my $second = "00";
        if ($timeofday == 1) {
            $hour = $clockarray[0] + 12;
        }
        else {
            $hour = $clockarray[0];
        }

        $modtime =
          timelocal($second, $clockarray[1], $hour,
            $datearray[1], ($datearray[0] - 1),
            $datearray[2]);
        print $modtime;

        foreach (@filelist) {

            utime $modtime, $modtime, $_;
        }

    }
}

#make sure time is formatted properly
sub validateTime {

    my $time = $timeentry->get();
    if ($time =~ (/\d\d:\d\d/)) {
        return 1;
    }
    else {
        $timeentry->delete(0, "end");

        Tkx::tk___messageBox(
            -parent  => $mw,
            -title   => "Incorrect Time Format",
            -icon    => "info",
            -message => "Incorrect Time Format",
            -detail  => "Please enter the time in HH:MM format, i.e. 12:30.",
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
sub selectFileSystem {

    my $fname = shift;
    my @name  = Tkx::SplitList($fname);
    my $path  = join "", @name;
    $folder = $path;

    if ( -f $folder ) {
        $listbox->delete( 0, "end" );
        @filelist = ();
        push( @filelist, $folder );
        foreach (@filelist) {
            $listbox->insert( "end", "$_" );
        }
    }

    if ( -d $folder ) {

        $listbox->delete( 0, "end" );
        @filelist = <"$folder/*">;
        foreach (@filelist) {
            $listbox->insert( "end", "$_" );
        }

        return $folder;
    }

    return $folder;
}







|
|

|

|



|

|


|







955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
sub selectFileSystem {

    my $fname = shift;
    my @name  = Tkx::SplitList($fname);
    my $path  = join "", @name;
    $folder = $path;

    if (-f $folder) {
        $listbox->delete(0, "end");
        @filelist = ();
        push(@filelist, $folder);
        foreach (@filelist) {
            $listbox->insert("end", "$_");
        }
    }

    if (-d $folder) {

        $listbox->delete(0, "end");
        @filelist = <"$folder/*">;
        foreach (@filelist) {
            $listbox->insert("end", "$_");
        }

        return $folder;
    }

    return $folder;
}
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
}

#initialize the app
sub startUp {

    $appname    = 'FileMorph';
    $appversion = '4.0';
    &Tkx::machelp__setAppName( $appname, $appversion );
    &Tkx::softwareupdate__setAppName($appname);
    &Tkx::softwareupdate__setVersion( $appname, $appversion );

    #check for app support directory
    our $prefdir = Tkx::xplat__appconfig("FileMorph");
    mkdir $prefdir unless ( -d $prefdir );
}

#check version of installed software
sub checkUpdate {

    &Tkx::softwareupdate__setIcon($icon);
    &Tkx::softwareupdate__checkVersion( $appname, $appversion );

}

#-----AppleScript and DDe handlers------$

if ($IS_AQUA) {

    sub createAppleScriptCommands {
        Tkx::interp_alias( "", "set_directory_path", "", [ \&scriptSetDir ] );
        Tkx::interp_alias( "", "set_file_path",      "", [ \&scriptSetFile ] );
        Tkx::interp_alias( "", "set_old_extension",  "", [ \&scriptOldExt ] );
        Tkx::interp_alias( "", "set_new_extension",  "", [ \&scriptNewExt ] );
        Tkx::interp_alias( "", "change_extension", "", [ \&scriptChangeExt ] );
        Tkx::interp_alias( "", "set_old_text",     "", [ \&scriptOldText ] );
        Tkx::interp_alias( "", "set_new_text",     "", [ \&scriptNewText ] );
        Tkx::interp_alias( "", "change_text",      "", [ \&scriptChangeText ] );
        Tkx::interp_alias( "", "set_added_text",   "", [ \&scriptAddedText ] );
        Tkx::interp_alias( "", "set_prefix_or_suffix", "",
            [ \&scriptPrefixOrSuffix ] );
        Tkx::interp_alias( "", "add_text",         "", [ \&scriptAddText ] );
        Tkx::interp_alias( "", "set_time",         "", [ \&scriptSetTime ] );
        Tkx::interp_alias( "", "change_file_time", "", [ \&scriptFileTime ] );
    }
}

if ($IS_WINDOWS) {

    sub createDDECommands {
        Tkx::interp_alias( "", "set_directory_path", "", [ \&scriptSetDir ] );
        Tkx::interp_alias( "", "set_file_path",      "", [ \&scriptSetFile ] );
        Tkx::interp_alias( "", "set_old_extension",  "", [ \&scriptOldExt ] );
        Tkx::interp_alias( "", "set_new_extension",  "", [ \&scriptNewExt ] );
        Tkx::interp_alias( "", "change_extension", "", [ \&scriptChangeExt ] );
        Tkx::interp_alias( "", "set_old_text",     "", [ \&scriptOldText ] );
        Tkx::interp_alias( "", "set_new_text",     "", [ \&scriptNewText ] );
        Tkx::interp_alias( "", "change_text",      "", [ \&scriptChangeText ] );
        Tkx::interp_alias( "", "set_added_text",   "", [ \&scriptAddedText ] );
        Tkx::interp_alias( "", "set_prefix_or_suffix", "",
            [ \&scriptPrefixOrSuffix ] );
        Tkx::interp_alias( "", "add_text",         "", [ \&scriptAddText ] );
        Tkx::interp_alias( "", "set_time",         "", [ \&scriptSetTime ] );
        Tkx::interp_alias( "", "change_file_time", "", [ \&scriptFileTime ] );
    }
}

sub scriptSetDir {
    my $path = shift;

    #join with spaces
    foreach (@_) {
        $path = $_ . ' ';
    }

    $folder = $path;

    if ( -f $folder ) {
        $listbox->delete( 0, "end" );
        @filelist = ();
        push( @filelist, $folder );
        foreach (@filelist) {
            $listbox->insert( "end", "$_" );
        }
    }

    if ( -d $folder ) {

        $listbox->delete( 0, "end" );
        @filelist = <"$folder/*">;
        foreach (@filelist) {
            $listbox->insert( "end", "$_" );
        }

        return $folder;
    }

    return $folder;
}







|

|



|






|








|
|
|
|
|
|
|
|
|
|
|
|
|
|






|
|
|
|
|
|
|
|
|
|
|
|
|
|













|
|

|

|



|

|


|







996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
}

#initialize the app
sub startUp {

    $appname    = 'FileMorph';
    $appversion = '4.0';
    &Tkx::machelp__setAppName($appname, $appversion);
    &Tkx::softwareupdate__setAppName($appname);
    &Tkx::softwareupdate__setVersion($appname, $appversion);

    #check for app support directory
    our $prefdir = Tkx::xplat__appconfig("FileMorph");
    mkdir $prefdir unless (-d $prefdir);
}

#check version of installed software
sub checkUpdate {

    &Tkx::softwareupdate__setIcon($icon);
    &Tkx::softwareupdate__checkVersion($appname, $appversion);

}

#-----AppleScript and DDe handlers------$

if ($IS_AQUA) {

    sub createAppleScriptCommands {
        Tkx::interp_alias("", "set_directory_path", "", [\&scriptSetDir]);
        Tkx::interp_alias("", "set_file_path",      "", [\&scriptSetFile]);
        Tkx::interp_alias("", "set_old_extension",  "", [\&scriptOldExt]);
        Tkx::interp_alias("", "set_new_extension",  "", [\&scriptNewExt]);
        Tkx::interp_alias("", "change_extension", "", [\&scriptChangeExt]);
        Tkx::interp_alias("", "set_old_text",     "", [\&scriptOldText]);
        Tkx::interp_alias("", "set_new_text",     "", [\&scriptNewText]);
        Tkx::interp_alias("", "change_text",      "", [\&scriptChangeText]);
        Tkx::interp_alias("", "set_added_text",   "", [\&scriptAddedText]);
        Tkx::interp_alias("", "set_prefix_or_suffix", "",
            [\&scriptPrefixOrSuffix]);
        Tkx::interp_alias("", "add_text",         "", [\&scriptAddText]);
        Tkx::interp_alias("", "set_time",         "", [\&scriptSetTime]);
        Tkx::interp_alias("", "change_file_time", "", [\&scriptFileTime]);
    }
}

if ($IS_WINDOWS) {

    sub createDDECommands {
        Tkx::interp_alias("", "set_directory_path", "", [\&scriptSetDir]);
        Tkx::interp_alias("", "set_file_path",      "", [\&scriptSetFile]);
        Tkx::interp_alias("", "set_old_extension",  "", [\&scriptOldExt]);
        Tkx::interp_alias("", "set_new_extension",  "", [\&scriptNewExt]);
        Tkx::interp_alias("", "change_extension", "", [\&scriptChangeExt]);
        Tkx::interp_alias("", "set_old_text",     "", [\&scriptOldText]);
        Tkx::interp_alias("", "set_new_text",     "", [\&scriptNewText]);
        Tkx::interp_alias("", "change_text",      "", [\&scriptChangeText]);
        Tkx::interp_alias("", "set_added_text",   "", [\&scriptAddedText]);
        Tkx::interp_alias("", "set_prefix_or_suffix", "",
            [\&scriptPrefixOrSuffix]);
        Tkx::interp_alias("", "add_text",         "", [\&scriptAddText]);
        Tkx::interp_alias("", "set_time",         "", [\&scriptSetTime]);
        Tkx::interp_alias("", "change_file_time", "", [\&scriptFileTime]);
    }
}

sub scriptSetDir {
    my $path = shift;

    #join with spaces
    foreach (@_) {
        $path = $_ . ' ';
    }

    $folder = $path;

    if (-f $folder) {
        $listbox->delete(0, "end");
        @filelist = ();
        push(@filelist, $folder);
        foreach (@filelist) {
            $listbox->insert("end", "$_");
        }
    }

    if (-d $folder) {

        $listbox->delete(0, "end");
        @filelist = <"$folder/*">;
        foreach (@filelist) {
            $listbox->insert("end", "$_");
        }

        return $folder;
    }

    return $folder;
}
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
sub scriptAddText {
    &addString;
}

sub scriptSetTime {
    my $time;
    $time = shift;
    my @datearray = split( /\//, $time );
    $modtime =
      timelocal( "00", "00", "00", $datearray[1], ( $datearray[0] - 1 ),
        $datearray[2] );
}

sub scriptFileTime {
    return if ( scalar(@filelist) == 0 );
    foreach (@filelist) {
        utime $modtime, $modtime, $_;
    }
}

#------end of subroutines---------







|
<
|
|



|






1127
1128
1129
1130
1131
1132
1133
1134

1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
sub scriptAddText {
    &addString;
}

sub scriptSetTime {
    my $time;
    $time = shift;
    my @datearray = split(/\//, $time);

    $modtime =timelocal("00", "00", "00", $datearray[1], ($datearray[0] - 1),
        $datearray[2]);
}

sub scriptFileTime {
    return if (scalar(@filelist) == 0);
    foreach (@filelist) {
        utime $modtime, $modtime, $_;
    }
}

#------end of subroutines---------

Changes to install.bat.

52
53
54
55
56
57
58
59
60
61
62
63
64
echo sLinkFile = "FileMorph.lnk" >>  %temp%\link.vbs
echo Set oLink = oWS.CreateShortcut(sLinkFile) >>  %temp%\link.vbs
echo oLink.TargetPath = "%appdata%\FileMorph_App\filemorph.exe" >> %temp%\link.vbs
echo oLink.WorkingDirectory = "%appdata%\FileMorph_App\"  >> %temp%\link.vbs
echo oLink.IconLocation = %config_dir% + "filemorph.ico" >> %temp%\link.vbs
echo oLink.Save >>  %temp%\link.vbs
call cscript %temp%\link.vbs
copy /Y "FileMorph.lnk"  "%appdata%\FileMorph_App\bin"
del %temp%\link.vbs
call %config_dir%\pathed.exe -a "%appdata%\FileMorph_App\"

cd C:\Users\%username%\Desktop
echo Done.







|





52
53
54
55
56
57
58
59
60
61
62
63
64
echo sLinkFile = "FileMorph.lnk" >>  %temp%\link.vbs
echo Set oLink = oWS.CreateShortcut(sLinkFile) >>  %temp%\link.vbs
echo oLink.TargetPath = "%appdata%\FileMorph_App\filemorph.exe" >> %temp%\link.vbs
echo oLink.WorkingDirectory = "%appdata%\FileMorph_App\"  >> %temp%\link.vbs
echo oLink.IconLocation = %config_dir% + "filemorph.ico" >> %temp%\link.vbs
echo oLink.Save >>  %temp%\link.vbs
call cscript %temp%\link.vbs
copy /Y "FileMorph.lnk"  "%appdata%\FileMorph_App\"
del %temp%\link.vbs
call %config_dir%\pathed.exe -a "%appdata%\FileMorph_App\"

cd C:\Users\%username%\Desktop
echo Done.

Deleted license.txt.

1
2
3
4
5
6
7
8
9
The MIT License (MIT)

Copyright (c) 2020 WordTech Communications LLC

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
<
<
<
<
<
<
<
<
<


















Added mit.txt.































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
The MIT License (MIT)



Copyright (c) 2020 WordTech Communications LLC



Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:



The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.