Re: How to start a filemanager in Gtk2 "the proper way"

2014-02-07 Thread Chris Angelico
On Sat, Feb 8, 2014 at 9:39 AM, wrote: > Is there any "proper way" to do this or do I have use #ifdef syntax to > check for the system? > > #ifdef __unix__ > //my start code > #elif __WIN32__ > // start windows code here > #else > // fallback code..? > #endif > > > If there is no conv

How to start a filemanager in Gtk2 "the proper way"

2014-02-07 Thread christian
Hello there, I'm trying to implement an "open in file manager" button in Gtk2 (a specific path given). After checking many different sites without finding an answer or any reference to this issue, how to do this "the Gtk way", I'm asking you guys. Is there any "proper way" to do this or do I have