-
Notifications
You must be signed in to change notification settings - Fork 0
/
fileview.go
834 lines (747 loc) · 24.9 KB
/
fileview.go
1
2
3
4
5
6
7
8
9
10
11
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
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
508
509
510
511
512
513
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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
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
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
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
793
794
795
796
797
798
799
800
801
802
803
804
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
// Copyright (c) 2018, The GoKi Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package giv
import (
"fmt"
"io/ioutil"
"log"
"os"
"path/filepath"
"strings"
"unicode"
"github.com/goki/gi/gi"
"github.com/goki/gi/oswin"
"github.com/goki/gi/oswin/cursor"
"github.com/goki/gi/oswin/key"
"github.com/goki/gi/units"
"github.com/goki/ki/ki"
"github.com/goki/ki/kit"
"github.com/goki/pi/complete"
"github.com/mitchellh/go-homedir"
)
//////////////////////////////////////////////////////////////////////////
// FileView
// todo:
// * search: use highlighting, not filtering -- < > arrows etc
// * also simple search-while typing in grid?
// * fileview selector DND is a file:/// url
// FileView is a viewer onto files -- core of the file chooser dialog
type FileView struct {
gi.Frame
DirPath string `desc:"path to directory of files to display"`
SelFile string `desc:"selected file"`
Ext string `desc:"target extension(s) (comma separated if multiple, including initial .), if any"`
FilterFunc FileViewFilterFunc `view:"-" json:"-" xml:"-" desc:"optional styling function"`
ExtMap map[string]string `desc:"map of lower-cased extensions from Ext -- used for highlighting files with one of these extensions -- maps onto original ext value"`
Files []*FileInfo `desc:"files for current directory"`
SelectedIdx int `desc:"index of currently-selected file in Files list (-1 if none)"`
FileSig ki.Signal `desc:"signal for file actions"`
}
var KiT_FileView = kit.Types.AddType(&FileView{}, FileViewProps)
func (fv *FileView) Disconnect() {
fv.Frame.Disconnect()
fv.FileSig.DisconnectAll()
}
// FileViewFilterFunc is a filtering function for files -- returns true if the
// file should be visible in the view, and false if not
type FileViewFilterFunc func(fv *FileView, fi *FileInfo) bool
// FileViewDirOnlyFilter is a FileViewFilterFunc that only shows directories (folders).
func FileViewDirOnlyFilter(fv *FileView, fi *FileInfo) bool {
return fi.IsDir()
}
// FileViewExtOnlyFilter is a FileViewFilterFunc that only shows files that
// match the target extensions, and directories.
func FileViewExtOnlyFilter(fv *FileView, fi *FileInfo) bool {
if fi.IsDir() {
return true
}
ext := strings.ToLower(filepath.Ext(fi.Name))
_, has := fv.ExtMap[ext]
return has
}
// SetFilename sets the initial filename (splitting out path and filename) and
// initializes the view
func (fv *FileView) SetFilename(filename, ext string) {
fv.DirPath, fv.SelFile = filepath.Split(filename)
fv.SetExt(ext)
fv.Config()
}
// SetPathFile sets the path, initial select file (or "") and initializes the view
func (fv *FileView) SetPathFile(path, file, ext string) {
fv.DirPath = path
fv.SelFile = file
fv.SetExt(ext)
fv.Config()
}
// SelectedFile returns the full path to selected file
func (fv *FileView) SelectedFile() string {
return filepath.Join(fv.DirPath, fv.SelFile)
}
// SelectedFileInfo returns the currently-selected fileinfo, returns
// false if none
func (fv *FileView) SelectedFileInfo() (*FileInfo, bool) {
if fv.SelectedIdx < 0 || fv.SelectedIdx >= len(fv.Files) {
return nil, false
}
return fv.Files[fv.SelectedIdx], true
}
// SelectFile selects the current file -- if a directory it opens
// the directory; if a file it selects the file and closes dialog
func (fv *FileView) SelectFile() {
if fi, ok := fv.SelectedFileInfo(); ok {
if fi.IsDir() {
fv.DirPath = filepath.Join(fv.DirPath, fi.Name)
fv.SelFile = ""
fv.SelectedIdx = -1
fv.UpdateFilesAction()
return
}
fv.FileSig.Emit(fv.This(), int64(FileViewDoubleClicked), fv.SelectedFile())
}
}
var FileViewProps = ki.Props{
"EnumType:Flag": gi.KiT_NodeFlags,
"color": &gi.Prefs.Colors.Font,
"background-color": &gi.Prefs.Colors.Background,
"max-width": -1,
"max-height": -1,
}
// FileViewKindColorMap translates file Kinds into different colors for the file viewer
var FileViewKindColorMap = map[string]string{
"folder": "pref(link)",
}
// FileViewSignals are signals that fileview sends based on user actions.
type FileViewSignals int64
const (
// FileViewDoubleClicked emitted for double-click on a non-directory file
// in table view (data is full selected file name w/ path) -- typically
// closes dialog.
FileViewDoubleClicked FileViewSignals = iota
// FileViewWillUpdate emitted when list of files is about to be updated
// based on user action (data is current path) -- current DirPath will be
// used -- can intervene here if needed.
FileViewWillUpdate
// FileViewUpdated emitted after list of files has been updated (data is
// current path).
FileViewUpdated
// FileViewNewFolder emitted when a new folder was created (data is
// current path).
FileViewNewFolder
// FileViewFavAdded emitted when a new favorite was added (data is new
// favorite path).
FileViewFavAdded
FileViewSignalsN
)
//go:generate stringer -type=FileViewSignals
func FileViewStyleFunc(tv *TableView, slice interface{}, widg gi.Node2D, row, col int, vv ValueView) {
finf, ok := slice.([]*FileInfo)
if ok {
wi := widg.AsNode2D()
if clr, got := FileViewKindColorMap[finf[row].Kind]; got {
if _, err := wi.PropTry("color"); err != nil {
wi.SetFullReRender()
}
wi.SetProp("color", clr)
return
}
if fvv := tv.ParentByType(KiT_FileView, ki.Embeds); fvv != nil {
fv := fvv.Embed(KiT_FileView).(*FileView)
fn := finf[row].Name
ext := strings.ToLower(filepath.Ext(fn))
if _, has := fv.ExtMap[ext]; has {
if _, err := wi.PropTry("color"); err != nil {
wi.SetFullReRender()
}
wi.SetProp("color", "pref(link)")
return
}
}
if _, err := wi.PropTry("color"); err == nil {
wi.SetFullReRender()
}
wi.DeleteProp("color")
}
}
// Config configures the view
func (fv *FileView) Config() {
fv.Lay = gi.LayoutVert
fv.SetProp("spacing", gi.StdDialogVSpaceUnits)
config := kit.TypeAndNameList{}
config.Add(gi.KiT_ToolBar, "path-tbar")
config.Add(gi.KiT_Layout, "files-row")
config.Add(gi.KiT_Layout, "sel-row")
mods, updt := fv.ConfigChildren(config, ki.UniqueNames)
if mods {
fv.ConfigPathBar()
fv.ConfigFilesRow()
fv.ConfigSelRow()
fv.UpdateFiles()
fv.UpdateEnd(updt)
}
}
func (fv *FileView) ConfigPathBar() {
pr := fv.ChildByName("path-tbar", 0).(*gi.ToolBar)
if pr.HasChildren() {
return
}
pr.Lay = gi.LayoutHoriz
pr.SetStretchMaxWidth()
config := kit.TypeAndNameList{}
config.Add(gi.KiT_Label, "path-lbl")
config.Add(gi.KiT_ComboBox, "path")
config.Add(gi.KiT_Action, "path-up")
config.Add(gi.KiT_Action, "path-ref")
config.Add(gi.KiT_Action, "path-fav")
config.Add(gi.KiT_Action, "new-folder")
pl := gi.AddNewLabel(pr, "path-lbl", "Path:")
pl.Tooltip = "Path to look for files in: can select from list of recent paths, or edit a value directly"
pf := gi.AddNewComboBox(pr, "path")
pf.Editable = true
pf.SetMinPrefWidth(units.NewCh(60))
pf.SetStretchMaxWidth()
pf.ConfigParts()
pft, found := pf.TextField()
if found {
pft.SetCompleter(fv, fv.PathComplete, fv.PathCompleteEdit)
pft.TextFieldSig.Connect(fv.This(), func(recv, send ki.Ki, sig int64, data interface{}) {
if sig == int64(gi.TextFieldDone) {
fvv, _ := recv.Embed(KiT_FileView).(*FileView)
pff, _ := send.(*gi.TextField)
fvv.DirPath = pff.Text()
fvv.UpdateFilesAction()
}
})
}
pf.ComboSig.Connect(fv.This(), func(recv, send ki.Ki, sig int64, data interface{}) {
fvv, _ := recv.Embed(KiT_FileView).(*FileView)
pff := send.Embed(gi.KiT_ComboBox).(*gi.ComboBox)
sp := data.(string)
if sp == gi.FileViewResetPaths {
gi.SavedPaths = make(gi.FilePaths, 1, gi.Prefs.Params.SavedPathsMax)
gi.SavedPaths[0] = fvv.DirPath
pff.ItemsFromStringList(([]string)(gi.SavedPaths), true, 0)
gi.StringsAddExtras((*[]string)(&gi.SavedPaths), gi.SavedPathsExtras)
fv.UpdateFiles()
} else if sp == gi.FileViewEditPaths {
fv.EditPaths()
pff.ItemsFromStringList(([]string)(gi.SavedPaths), true, 0)
} else {
fvv.DirPath = sp
fvv.UpdateFilesAction()
}
})
pr.AddAction(gi.ActOpts{Name: "path-up", Icon: "wedge-up", Tooltip: "go up one level into the parent folder", ShortcutKey: gi.KeyFunJump}, fv.This(), func(recv, send ki.Ki, sig int64, data interface{}) {
fvv, _ := recv.Embed(KiT_FileView).(*FileView)
fvv.DirPathUp()
})
pr.AddAction(gi.ActOpts{Name: "path-ref", Icon: "update", Tooltip: "Update directory view -- in case files might have changed"}, fv.This(), func(recv, send ki.Ki, sig int64, data interface{}) {
fvv, _ := recv.Embed(KiT_FileView).(*FileView)
fvv.UpdateFilesAction()
})
pr.AddAction(gi.ActOpts{Name: "path-fav", Icon: "heart", Tooltip: "save this path to the favorites list -- saves current Prefs"}, fv.This(), func(recv, send ki.Ki, sig int64, data interface{}) {
fvv, _ := recv.Embed(KiT_FileView).(*FileView)
fvv.AddPathToFavs()
})
pr.AddAction(gi.ActOpts{Name: "new-folder", Icon: "folder-plus", Tooltip: "Create a new folder in this folder"},
fv.This(), func(recv, send ki.Ki, sig int64, data interface{}) {
fvv, _ := recv.Embed(KiT_FileView).(*FileView)
fvv.NewFolder()
})
}
func (fv *FileView) ConfigFilesRow() {
fr := fv.FilesRow()
fr.SetStretchMax()
fr.Lay = gi.LayoutHoriz
config := kit.TypeAndNameList{}
config.Add(KiT_TableView, "favs-view")
config.Add(KiT_TableView, "files-view")
fr.ConfigChildren(config, ki.UniqueNames) // already covered by parent update
sv := fv.FavsView()
sv.CSS = ki.Props{
"textfield": ki.Props{
":inactive": ki.Props{
"background-color": &gi.Prefs.Colors.Control,
},
},
}
sv.SetStretchMaxHeight()
sv.SetProp("max-width", 0) // no stretch
sv.SetProp("index", false)
sv.SetProp("inact-key-nav", false) // can only have one active -- files..
sv.SetInactive() // select only
sv.SelectedIdx = -1
sv.SetSlice(&gi.Prefs.FavPaths)
sv.WidgetSig.Connect(fv.This(), func(recv, send ki.Ki, sig int64, data interface{}) {
if sig == int64(gi.WidgetSelected) {
fvv, _ := recv.Embed(KiT_FileView).(*FileView)
svv, _ := send.(*TableView)
fvv.FavSelect(svv.SelectedIdx)
}
})
sv = fv.FilesView()
sv.CSS = ki.Props{
"textfield": ki.Props{
":inactive": ki.Props{
"background-color": &gi.Prefs.Colors.Control,
},
},
}
sv.SetProp("index", false) // no index
sv.SetStretchMax()
sv.SetInactive() // select only
sv.StyleFunc = FileViewStyleFunc
sv.SetSlice(&fv.Files)
if gi.Prefs.FileViewSort != "" {
sv.SetSortFieldName(gi.Prefs.FileViewSort)
}
sv.WidgetSig.Connect(fv.This(), func(recv, send ki.Ki, sig int64, data interface{}) {
if sig == int64(gi.WidgetSelected) {
fvv, _ := recv.Embed(KiT_FileView).(*FileView)
svv, _ := send.(*TableView)
fvv.FileSelectAction(svv.SelectedIdx)
}
})
sv.SliceViewSig.Connect(fv.This(), func(recv, send ki.Ki, sig int64, data interface{}) {
if sig == int64(SliceViewDoubleClicked) {
fvv, _ := recv.Embed(KiT_FileView).(*FileView)
fvv.SelectFile()
}
})
}
func (fv *FileView) ConfigSelRow() {
sr := fv.SelRow()
sr.Lay = gi.LayoutHoriz
sr.SetProp("spacing", units.NewPx(4))
sr.SetStretchMaxWidth()
config := kit.TypeAndNameList{}
config.Add(gi.KiT_Label, "sel-lbl")
config.Add(gi.KiT_TextField, "sel")
config.Add(gi.KiT_Label, "ext-lbl")
config.Add(gi.KiT_TextField, "ext")
sr.ConfigChildren(config, ki.UniqueNames) // already covered by parent update
sl := sr.ChildByName("sel-lbl", 0).(*gi.Label)
sl.Text = "File:"
sl.Tooltip = "enter file name here (or select from above list)"
sf := fv.SelField()
sf.Tooltip = fmt.Sprintf("enter file name. special keys: up/down to move selection; %v or %v to go up to parent folder; %v or %v or %v or %v to select current file (if directory, goes into it, if file, selects and closes); %v or %v for prev / next history item; %s return to this field", gi.ShortcutForFun(gi.KeyFunWordLeft), gi.ShortcutForFun(gi.KeyFunJump), gi.ShortcutForFun(gi.KeyFunSelectMode), gi.ShortcutForFun(gi.KeyFunInsert), gi.ShortcutForFun(gi.KeyFunInsertAfter), gi.ShortcutForFun(gi.KeyFunMenuOpen), gi.ShortcutForFun(gi.KeyFunHistPrev), gi.ShortcutForFun(gi.KeyFunHistNext), gi.ShortcutForFun(gi.KeyFunSearch))
sf.SetCompleter(fv, fv.FileComplete, fv.FileCompleteEdit)
sf.SetMinPrefWidth(units.NewCh(60))
sf.SetStretchMaxWidth()
sf.SetText(fv.SelFile)
sf.TextFieldSig.Connect(fv.This(), func(recv, send ki.Ki, sig int64, data interface{}) {
if sig == int64(gi.TextFieldDone) || sig == int64(gi.TextFieldDeFocused) {
fvv, _ := recv.Embed(KiT_FileView).(*FileView)
pff, _ := send.(*gi.TextField)
fvv.SetSelFileAction(pff.Text())
}
})
sf.StartFocus()
el := sr.ChildByName("ext-lbl", 0).(*gi.Label)
el.Text = "Ext(s):"
el.Tooltip = "target extension(s) to highlight -- if multiple, separate with commas, and do include the . at the start"
ef := fv.ExtField()
ef.SetText(fv.Ext)
ef.SetMinPrefWidth(units.NewCh(10))
ef.TextFieldSig.Connect(fv.This(), func(recv, send ki.Ki, sig int64, data interface{}) {
if sig == int64(gi.TextFieldDone) || sig == int64(gi.TextFieldDeFocused) {
fvv, _ := recv.Embed(KiT_FileView).(*FileView)
pff, _ := send.(*gi.TextField)
fvv.SetExtAction(pff.Text())
}
})
}
// PathField returns the ComboBox of the path
func (fv *FileView) PathField() *gi.ComboBox {
pr := fv.ChildByName("path-tbar", 0).(*gi.ToolBar)
return pr.ChildByName("path", 1).(*gi.ComboBox)
}
func (fv *FileView) FilesRow() *gi.Layout {
return fv.ChildByName("files-row", 2).(*gi.Layout)
}
// FavsView returns the TableView of the favorites
func (fv *FileView) FavsView() *TableView {
return fv.FilesRow().ChildByName("favs-view", 1).(*TableView)
}
// FilesView returns the TableView of the files
func (fv *FileView) FilesView() *TableView {
return fv.FilesRow().ChildByName("files-view", 1).(*TableView)
}
func (fv *FileView) SelRow() *gi.Layout {
return fv.ChildByName("sel-row", 4).(*gi.Layout)
}
// SelField returns the TextField of the selected file
func (fv *FileView) SelField() *gi.TextField {
return fv.SelRow().ChildByName("sel", 1).(*gi.TextField)
}
// ExtField returns the TextField of the extension
func (fv *FileView) ExtField() *gi.TextField {
return fv.SelRow().ChildByName("ext", 2).(*gi.TextField)
}
// UpdatePath ensures that path is in abs form and ready to be used..
func (fv *FileView) UpdatePath() {
if fv.DirPath == "" {
fv.DirPath, _ = os.Getwd()
}
fv.DirPath, _ = homedir.Expand(fv.DirPath)
fv.DirPath, _ = filepath.Abs(fv.DirPath)
}
// UpdateFilesAction updates list of files and other views for current path,
// emitting FileSig signals around it -- this is for gui-generated actions only.
func (fv *FileView) UpdateFilesAction() {
fv.FileSig.Emit(fv.This(), int64(FileViewWillUpdate), fv.DirPath)
fv.SetFullReRender()
fv.UpdateFiles()
sf := fv.SelField()
sf.GrabFocus()
fv.FileSig.Emit(fv.This(), int64(FileViewUpdated), fv.DirPath)
}
// UpdateFiles updates list of files and other views for current path
func (fv *FileView) UpdateFiles() {
updt := fv.UpdateStart()
defer fv.UpdateEnd(updt)
var owin oswin.Window
win := fv.ParentWindow()
if win != nil {
owin = fv.Viewport.Win.OSWin
} else {
owin = oswin.TheApp.WindowInFocus()
}
fv.UpdatePath()
pf := fv.PathField()
if len(gi.SavedPaths) == 0 {
gi.OpenPaths()
}
gi.SavedPaths.AddPath(fv.DirPath, gi.Prefs.Params.SavedPathsMax)
gi.SavePaths()
sp := []string(gi.SavedPaths)
pf.ItemsFromStringList(sp, true, 0)
pf.SetText(fv.DirPath)
sf := fv.SelField()
sf.SetText(fv.SelFile)
oswin.TheApp.Cursor(owin).Push(cursor.Wait)
defer oswin.TheApp.Cursor(owin).Pop()
effpath, err := filepath.EvalSymlinks(fv.DirPath)
if err != nil {
log.Printf("gi.FileView Path: %v could not be opened -- error: %v\n", effpath, err)
return
}
_, err = os.Lstat(effpath)
if err != nil {
log.Printf("gi.FileView Path: %v could not be opened -- error: %v\n", effpath, err)
return
}
fv.Files = make([]*FileInfo, 0, 1000)
filepath.Walk(effpath, func(path string, info os.FileInfo, err error) error {
if err != nil {
emsg := fmt.Sprintf("Path %q: Error: %v", effpath, err)
// if fv.Viewport != nil {
// gi.PromptDialog(fv.Viewport, "FileView UpdateFiles", emsg, gi.AddOk, gi.NoCancel, nil, nil)
// } else {
log.Printf("gi.FileView error: %v\n", emsg)
// }
return nil // ignore
}
if path == effpath { // proceed..
return nil
}
fi, ferr := NewFileInfo(path)
keep := ferr == nil
if fv.FilterFunc != nil {
keep = fv.FilterFunc(fv, fi)
}
if keep {
fv.Files = append(fv.Files, fi)
}
if info.IsDir() {
return filepath.SkipDir
}
return nil
})
fvv := fv.FavsView()
fvv.ResetSelectedIdxs()
sv := fv.FilesView()
sv.ResetSelectedIdxs()
sv.SelField = "Name"
sv.SelVal = fv.SelFile
sv.SortSlice()
if !sv.IsConfiged() {
sv.Config()
sv.LayoutSliceGrid()
}
sv.UpdateSliceGrid()
sv.LayoutHeader()
fv.SelectedIdx = sv.SelectedIdx
if sv.SelectedIdx >= 0 {
sv.ScrollToIdx(sv.SelectedIdx)
}
}
// UpdateFavs updates list of files and other views for current path
func (fv *FileView) UpdateFavs() {
sv := fv.FavsView()
sv.UpdateSliceGrid()
}
// AddPathToFavs adds the current path to favorites
func (fv *FileView) AddPathToFavs() {
dp := fv.DirPath
if dp == "" {
return
}
_, fnm := filepath.Split(dp)
hd, _ := homedir.Dir()
hd += string(filepath.Separator)
if strings.HasPrefix(dp, hd) {
dp = filepath.Join("~", strings.TrimPrefix(dp, hd))
}
if fnm == "" {
fnm = dp
}
if _, found := gi.Prefs.FavPaths.FindPath(dp); found {
gi.PromptDialog(fv.Viewport, gi.DlgOpts{Title: "Add Path To Favorites", Prompt: fmt.Sprintf("Path is already on the favorites list: %v", dp)}, gi.AddOk, gi.NoCancel, nil, nil)
return
}
fi := gi.FavPathItem{"folder", fnm, dp}
gi.Prefs.FavPaths = append(gi.Prefs.FavPaths, fi)
gi.Prefs.Save()
fv.FileSig.Emit(fv.This(), int64(FileViewFavAdded), fi)
fv.UpdateFavs()
}
// DirPathUp moves up one directory in the path
func (fv *FileView) DirPathUp() {
pdr, _ := filepath.Split(fv.DirPath)
if pdr == "" {
return
}
fv.DirPath = pdr
fv.UpdateFilesAction()
}
// PathFieldHistPrev goes to the previous path in history
func (fv *FileView) PathFieldHistPrev() {
pf := fv.PathField()
pf.SelectItem(1) // todo: this doesn't quite work more than once, as history will update.
}
// PathFieldHistNext goes to the next path in history
func (fv *FileView) PathFieldHistNext() {
pf := fv.PathField()
pf.SelectItem(1) // todo: this doesn't work at all..
}
// NewFolder creates a new folder in current directory
func (fv *FileView) NewFolder() {
dp := fv.DirPath
if dp == "" {
return
}
np := filepath.Join(dp, "NewFolder")
err := os.MkdirAll(np, 0775)
if err != nil {
emsg := fmt.Sprintf("NewFolder at: %q: Error: %v", fv.DirPath, err)
gi.PromptDialog(fv.Viewport, gi.DlgOpts{Title: "FileView Error", Prompt: emsg}, gi.AddOk, gi.NoCancel, nil, nil)
}
fv.FileSig.Emit(fv.This(), int64(FileViewNewFolder), fv.DirPath)
fv.UpdateFilesAction()
}
// SetSelFileAction sets the currently selected file to given name, and sends
// selection action with current full file name, and updates selection in
// table view
func (fv *FileView) SetSelFileAction(sel string) {
fv.SelFile = sel
sv := fv.FilesView()
ef := fv.ExtField()
exts := ef.Text()
if !sv.SelectFieldVal("Name", fv.SelFile) { // not found
extl := strings.Split(exts, ",")
if len(extl) == 1 {
if !strings.HasSuffix(fv.SelFile, extl[0]) {
fv.SelFile += extl[0]
}
}
}
fv.SelectedIdx = sv.SelectedIdx
sf := fv.SelField()
sf.SetText(fv.SelFile)
fv.WidgetSig.Emit(fv.This(), int64(gi.WidgetSelected), fv.SelectedFile())
}
// FileSelectAction updates selection with given selected file and emits
// selected signal on WidgetSig with full name of selected item
func (fv *FileView) FileSelectAction(idx int) {
if idx < 0 {
return
}
fv.SaveSortPrefs()
fi := fv.Files[idx]
fv.SelectedIdx = idx
fv.SelFile = fi.Name
sf := fv.SelField()
sf.SetText(fv.SelFile)
fv.WidgetSig.Emit(fv.This(), int64(gi.WidgetSelected), fv.SelectedFile())
}
// SetExt updates the ext to given (list of, comma separated) extensions
func (fv *FileView) SetExt(ext string) {
if ext == "" {
if fv.SelFile != "" {
ext = strings.ToLower(filepath.Ext(fv.SelFile))
}
}
fv.Ext = ext
exts := strings.Split(fv.Ext, ",")
fv.ExtMap = make(map[string]string, len(exts))
for _, ex := range exts {
ex = strings.TrimSpace(ex)
if len(ex) == 0 {
continue
}
if ex[0] != '.' {
ex = "." + ex
}
fv.ExtMap[strings.ToLower(ex)] = ex
}
}
// SetExtAction sets the current extension to highlight, and redisplays files
func (fv *FileView) SetExtAction(ext string) {
fv.SetExt(ext)
fv.SetFullReRender()
fv.UpdateFiles()
}
// FavSelect selects a favorite path and goes there
func (fv *FileView) FavSelect(idx int) {
if idx < 0 || idx >= len(gi.Prefs.FavPaths) {
return
}
fi := gi.Prefs.FavPaths[idx]
fv.DirPath, _ = homedir.Expand(fi.Path)
fv.UpdateFilesAction()
}
// SaveSortPrefs saves current sorting preferences
func (fv *FileView) SaveSortPrefs() {
sv := fv.FilesView()
if sv == nil {
return
}
gi.Prefs.FileViewSort = sv.SortFieldName()
// fmt.Printf("sort: %v\n", gi.Prefs.FileViewSort)
gi.Prefs.Save()
}
func (fv *FileView) Style2D() {
fv.Frame.Style2D()
sf := fv.SelField()
sf.StartFocus() // need to call this when window is actually active
}
func (fv *FileView) ConnectEvents2D() {
fv.FileViewEvents()
}
func (fv *FileView) FileViewEvents() {
fv.ConnectEvent(oswin.KeyChordEvent, gi.LowPri, func(recv, send ki.Ki, sig int64, d interface{}) {
fvv := recv.Embed(KiT_FileView).(*FileView)
kt := d.(*key.ChordEvent)
fvv.KeyInput(kt)
})
}
func (fv *FileView) KeyInput(kt *key.ChordEvent) {
if gi.KeyEventTrace {
fmt.Printf("FileView KeyInput: %v\n", fv.PathUnique())
}
kf := gi.KeyFun(kt.Chord())
switch kf {
case gi.KeyFunJump, gi.KeyFunWordLeft:
kt.SetProcessed()
fv.DirPathUp()
case gi.KeyFunHistPrev:
kt.SetProcessed()
fv.PathFieldHistPrev()
case gi.KeyFunHistNext:
kt.SetProcessed()
fv.PathFieldHistNext()
case gi.KeyFunInsert, gi.KeyFunInsertAfter, gi.KeyFunMenuOpen, gi.KeyFunSelectMode:
kt.SetProcessed()
fv.SelectFile()
case gi.KeyFunSearch:
kt.SetProcessed()
sf := fv.SelField()
sf.GrabFocus()
}
}
func (fv *FileView) HasFocus2D() bool {
return true // always.. we're typically a dialog anyway
}
////////////////////////////////////////////////////////////////////////////////
// Completion
// FileComplete finds the possible completions for the file field
func (fv *FileView) FileComplete(data interface{}, text string, posLn, posCh int) (md complete.Matches) {
seedStart := 0
for i := len(text) - 1; i >= 0; i-- {
r := rune(text[i])
if unicode.IsSpace(r) || r == filepath.Separator {
seedStart = i + 1
break
}
}
md.Seed = text[seedStart:]
var files = []string{}
for _, f := range fv.Files {
files = append(files, f.Name)
}
if len(md.Seed) > 0 { // return all directories
files = complete.MatchSeedString(files, md.Seed)
}
for _, d := range files {
m := complete.Completion{Text: d}
md.Matches = append(md.Matches, m)
}
return md
}
// PathComplete finds the possible completions for the path field
func (fv *FileView) PathComplete(data interface{}, path string, posLn, posCh int) (md complete.Matches) {
dir, seed := filepath.Split(path)
md.Seed = seed
d, err := os.Open(dir)
if err != nil {
return md
}
defer d.Close()
files, err := ioutil.ReadDir(dir)
var dirs = []string{}
for _, f := range files {
if f.IsDir() && !strings.HasPrefix(f.Name(), ".") {
dirs = append(dirs, f.Name())
}
}
if len(md.Seed) > 0 { // return all directories
dirs = complete.MatchSeedString(dirs, md.Seed)
}
for _, d := range dirs {
m := complete.Completion{Text: d}
md.Matches = append(md.Matches, m)
}
return md
}
// PathCompleteEdit is the editing function called when inserting the completion selection in the path field
func (fv *FileView) PathCompleteEdit(data interface{}, text string, cursorPos int, c complete.Completion, seed string) (ed complete.Edit) {
ed = complete.EditWord(text, cursorPos, c.Text, seed)
path := ed.NewText + string(filepath.Separator)
ed.NewText = path
ed.CursorAdjust += 1
return ed
}
// FileCompleteEdit is the editing function called when inserting the completion selection in the file field
func (fv *FileView) FileCompleteEdit(data interface{}, text string, cursorPos int, c complete.Completion, seed string) (ed complete.Edit) {
ed = complete.EditWord(text, cursorPos, c.Text, seed)
return ed
}
// EditPaths displays a dialog allowing user to delete paths from the path list
func (fv *FileView) EditPaths() {
tmp := make([]string, len(gi.SavedPaths))
copy(tmp, gi.SavedPaths)
gi.StringsRemoveExtras((*[]string)(&tmp), gi.SavedPathsExtras)
opts := DlgOpts{Title: "Recent File Paths", Prompt: "Delete paths you no longer use", Ok: true, Cancel: true, NoAdd: true}
SliceViewDialog(fv.Viewport, &tmp, opts,
nil, fv, func(recv, send ki.Ki, sig int64, data interface{}) {
if sig == int64(gi.DialogAccepted) {
gi.SavedPaths = nil
gi.SavedPaths = append(gi.SavedPaths, tmp...)
// add back the reset/edit menu items
gi.StringsAddExtras((*[]string)(&gi.SavedPaths), gi.SavedPathsExtras)
gi.SavePaths()
fv.UpdateFiles()
}
})
}