Revision 249d167a6990126900fafd198edb24c1c2887b4e authored by Rene Brun on 22 February 2004, 11:31:17 UTC, committed by Rene Brun on 22 February 2004, 11:31:17 UTC

git-svn-id: http://root.cern.ch/svn/root/trunk@8287 27541ba8-7e3a-0410-8455-c3a389f83636
1 parent 7c78a70
Raw File
mimes.win32.in
# ROOT mime types
# Actions beginning with ! will be executed in the shell
# Actions beginning with -> are member functions of the selected
# object's class (not yet implemented, still hard coded in the
# class Browse() method).
# All other actions will be handed "as is" to the interpreter

[application/postscript]
pattern = *.e?ps *.ps
icon = ps_s.xpm ps_t.xpm
action = !gsview32 %s

[application/pdf]
pattern = *.pdf
icon = pdf.xpm
action = !acroread %s

[audio/x-wav]
pattern = *.wave?
icon = audio_s.xpm
action = !vplay -s 22500 %s

[audio/basic]
pattern = *.snd *.au
icon = audio_s.xpm
action = !cat %s /dev/audio

[audio/midi]
pattern = *.midi?
icon = midi_s.xpm
action = !cat %s /dev/midi

[video/mpeg]
pattern = *.mpeg? *.mpg
icon = video_s.xpm
action = !xanim %s

[image/gif]
pattern = *.gif
icon = psp_s.xpm psp_t.xpm
action = !psp %s

[image/jpeg]
pattern = *.jpeg *.jpg *.jp[ge]
icon = psp_s.xpm psp_t.xpm
action = !psp %s

[image/tiff]
pattern = *.tiff?
icon = psp_s.xpm psp_t.xpm
action = !psp %s

[image/x-xpixmap]
pattern = *.x[bp]m
icon = psp_s.xpm psp_t.xpm
action = !xv %s

[text/html]
pattern = *.html
icon = netscape.xpm
action = !netscape %s

[text/plain]
pattern = *.te?xt
icon = emacs.xpm
action = !notepad %s

[text/tex]
pattern = *.tex
icon = tex.xpm
action = !xterm -e vi %s &

[settings/executable]
pattern = .bash_profile .bashrc .profile .login .kshrc .cshrc .xsession
icon = run_config.xpm
action = !notepad %s

[settings/config]
pattern = .*rc *.conf
icon = settings.xpm
action = !notepad %s

[text/source-c]
pattern = *.c
icon = c_src_s.xpm c_src_t.xpm
action = !msdev %s

[text/source-h]
pattern = *.h *.H
icon = h_src_s.xpm h_src_t.xpm
action = !msdev %s

[text/source-c++]
pattern = *.cxx *.cpp *.cc
icon = cpp_src_s.xpm cpp_src_t.xpm
action = !msdev %s

[text/source-h++]
pattern = *.hxx *.hpp
icon = hpp_src_s.xpm hpp_src_t.xpm
action = !msdev %s

[root/script]
pattern = *.C
icon = macro_s.xpm macro_t.xpm
action = .x %s

[root/file]
pattern = *.root
icon = rootdb_s.xpm rootdb_t.xpm
action = TFile *ftmp = new TFile("%s")

[hbook/file]
pattern = *.hbook
icon = rootdb_s.xpm rootdb_t.xpm
action = THbookFile *ftmp = new THbookFile("%s")

[root/tfile]
pattern = TFile TNetFile TRFIOFile TWebFile
icon = rootdb_s.xpm rootdb_t.xpm
action = ->Browse()

[root/th1]
pattern = TH1[CSFD]
icon = h1_s.xpm h1_t.xpm
action = ->Draw()

[root/th2]
pattern = TH2[CSFD]
icon = h2_s.xpm h2_t.xpm
action = ->Draw()

[root/th3]
pattern = TH3[CSFD]
icon = h3_s.xpm h3_t.xpm
action = ->Draw()

[root/tf1]
pattern = TF1
icon = f1_s.xpm f1_t.xpm
action = ->Draw()

[root/tf2]
pattern = TF2
icon = f2_s.xpm f2_t.xpm
action = ->Draw()

[root/tprofile]
pattern = TProfile
icon = profile_s.xpm profile_t.xpm
action = ->Draw()

[root/ttree]
pattern = TTree
icon = tree_s.xpm tree_t.xpm
action = ->Browse()

[root/tntuple]
pattern = TNtuple
icon = ntuple_s.xpm ntuple_t.xpm
action = ->Browse()

[root/tchain]
pattern = TChain
icon = chain_s.xpm chain_t.xpm
action = ->Browse()

[root/tbranchelement-folder]
pattern = TBranchElement-folder
icon = branch_folder_s.xpm branch_folder_t.xpm
action = ->Browse()

[root/tbranchelement-leaf]
pattern = TBranchElement-leaf
icon = leaf_s.xpm leaf_t.xpm
action = ->Browse()

[root/tleaf]
pattern = TLeaf*
icon = leaf_s.xpm leaf_t.xpm
action = ->Browse()
back to top