Re: [fltk.general] Unmapped Windows Network access

2012-10-22 Thread Gonzalo Garramuno
On 10/21/12 09:33, Greg Ercolano wrote: So I can handle reading only so much about Win32 before I get ill, so I'm gonna have to stop there before I barf. Thanks, Greg. But the hooks in windows are not enough. I need to show frame sequences as file..exr and allow selection

Re: [fltk.general] Unmapped Windows Network access

2012-10-22 Thread Greg Ercolano
On 10/22/12 07:05, Gonzalo Garramuno wrote: Thanks, Greg. But the hooks in windows are not enough. I need to show frame sequences as file..exr and allow selection of them. Oooh, that kind of thing. Yeah, you'd probably have to hotrod one of the existing fltk widgets

Re: [fltk.general] Unmapped Windows Network access

2012-10-21 Thread Ian MacArthur
On 21 Oct 2012, at 01:47, Gonzalo Garramuno wrote: I was wondering if some file requester in fltk allows access to the network files on a windows network that does not map the dirs to a path. Instead, the paths are like //machine//drive//dir, I need a custom file requester, not the native

Re: [fltk.general] Unmapped Windows Network access

2012-10-21 Thread Greg Ercolano
On 10/20/12 17:47, Gonzalo Garramuno wrote: I was wondering if some file requester in fltk allows access to the network files on a windows network that does not map the dirs to a path. Instead, the paths are like //machine//drive//dir, I need a custom file requester, not the native platform

Re: [fltk.general] Unmapped Windows Network access

2012-10-21 Thread Greg Ercolano
On 10/21/12 09:25, Greg Ercolano wrote: On 10/20/12 17:47, Gonzalo Garramuno wrote: An easy solution is to just do that operation after the user chooses the file. That would make it easier, since people are probably used to the native choosers; in my experience TDs have

Re: [fltk.general] Unmapped Windows Network access

2012-10-21 Thread Greg Ercolano
On 10/21/12 09:33, Greg Ercolano wrote: On 10/21/12 09:25, Greg Ercolano wrote: The fltk native file chooser uses GetOpenFileNameW() in WIN32, which if you read about it and its related functions, might find a callback hook. Sniffing around, I suggest starting with

[fltk.general] Unmapped Windows Network access

2012-10-20 Thread Gonzalo Garramuno
I was wondering if some file requester in fltk allows access to the network files on a windows network that does not map the dirs to a path. Instead, the paths are like //machine//drive//dir, I need a custom file requester, not the native platform requester, btw.