aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/webbrowser.h
AgeCommit message (Collapse)AuthorFilesLines
2012-01-15Move gtk to ui/gtk.Jörg Mayer1-44/+0
This looses the last checkin to gtk, will add this manually back. svn path=/trunk/; revision=40518
2009-02-10make filename2uri() "public"Ulf Lamping1-0/+7
svn path=/trunk/; revision=27412
2008-04-17If we have xdg-open, define HAVE_XDG_OPEN.Guy Harris1-0/+2
Add a routine "filemanager_open_directory()", which takes a pathname (presumed to be UTF-8 in Windows and Mac OS X; this might need work for other UN*Xes) and attempts to open a file manager window for it, using ShellExecute on Windows, Launch Services on OS X, and, for now, running xdg-open on other OSes if we have it (should we have a preference for the file manaager, just as we have one for the Web browser?). (For that matter, if we have xdg-open, do we need a preference for the Web browser, or should we just have xdg-open open the Web browser?) svn path=/trunk/; revision=25097
2006-05-21name changeRonnie Sahlberg1-2/+2
svn path=/trunk/; revision=18197
2004-07-18Set the svn:eol-style property on all text files to "native", so thatGuy Harris1-1/+1
they have LF at the end of the line on UN*X and CR/LF on Windows; hopefully this means that if a CR/LF version is checked in on Windows, the CRs will be stripped so that they show up only when checked out on Windows, not on UN*X. svn path=/trunk/; revision=11400
2004-07-01Trivial warning fixes: () -> (void) and comma at end of enumJörg Mayer1-2/+2
svn path=/trunk/; revision=11296
2004-06-29add a preference setting for the web browser commandUlf Lamping1-1/+3
svn path=/trunk/; revision=11269
2004-06-23Add "gtk/webbrowser.h" to declare functions from "gtk/webbrowser.c".Guy Harris1-0/+33
Rename "browser_open_program_file()" to "browser_open_data_file()", and make it open files relative to the application's data directory, as that's where data files such as HTMLized man pages would be put. (That happens to be the program directory on Windows, but it's a different directory on UN*X - and you aren't guaranteed to be able to find the program directory on UN*X by looking at argv[0] in any case.) Move it to "gtk/webbrowser.c". Fix "filename2url()" to put "file://", not just "file:", in front of pathnames on UN*X. svn path=/trunk/; revision=11216