From: Jon Trulson Date: Fri, 20 Jul 2018 00:39:56 +0000 (-0600) Subject: Finish integrating Antonis's desktop_approots work X-Git-Tag: 2.3.0a~26^2~31 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=2f6f1d2afbaea1487da35c2f9d514ad878bcd35a;p=oweals%2Fcde.git Finish integrating Antonis's desktop_approots work In addition: - moved video type detection into a separate file: videoTypes.dt out of datatypes.dt. Also, removed all actions from Antonis' dt files, as these are handled by the new actions (listed below). Image, postscript, and PDF types definitions are still located in datatypes.dt.src - supports most image files, PDFs, postscript files, and video files via dtapp now. - Added new actions: - DisplayImage - DisplayVideo - DisplayPDF - DisplayPS All of these call the dtapp_* helpers to locate an appropriate program to handle the task. - Added a camera icon - standardized the icons used to display the various types - all images use the Dtimage icon now, as an example. - moved the new *.dt files to their proper place in programs/types, rather than programs/localized/C/types (my bad). Please add any further video types into videoTypes.dt, and everything else (for now) into datatypes.dt. In the future, we should probably separate these out into type-specific .dt files. Also, something should be done about playing audio files too (maybe DisplayVideo.dt can handle all those too?) --- diff --git a/cde/.gitignore b/cde/.gitignore index 1f9fb6a6..0869c789 100644 --- a/cde/.gitignore +++ b/cde/.gitignore @@ -205,6 +205,9 @@ programs/dtterm/dtterm.ti programs/dtwm/dtwm programs/localized/C/msg/*.nls +programs/localized/*/types/*.dt +programs/localized/*/types/*.nls +programs/localized/*/types/*.tmsg programs/localized/de_DE.ISO8859-1/msg/*.tmp.msg programs/localized/es_ES.ISO8859-1/msg/*.tmp.msg programs/localized/fr_FR.ISO8859-1/msg/*.tmp.msg @@ -1239,6 +1242,7 @@ programs/dtksh/ksh93/man/man1/sh.1 programs/dtksh/ksh93/man/man3/nval.3 # programs/localized +programs/localized/C/types/*.dt programs/localized/C/types/*.dt.tmsg programs/localized/C/types/*.nls programs/localized/C/app-defaults/Dt diff --git a/cde/databases/CDE-ICONS.udb b/cde/databases/CDE-ICONS.udb index 0b489ccd..acaa574e 100644 --- a/cde/databases/CDE-ICONS.udb +++ b/cde/databases/CDE-ICONS.udb @@ -8624,4 +8624,23 @@ programs/icons/xv.t.pm install_target = /usr/dt/appconfig/icons/C/xv.t.pm } +# +programs/icons/camera.l.pm +{ default + install_target = /usr/dt/appconfig/icons/C/camera.l.pm +} + +# +programs/icons/camera.m.pm +{ default + install_target = /usr/dt/appconfig/icons/C/camera.m.pm +} + +# +programs/icons/camera.t.pm +{ default + install_target = /usr/dt/appconfig/icons/C/camera.t.pm +} + + diff --git a/cde/databases/CDE-RUN.udb b/cde/databases/CDE-RUN.udb index 454b83fb..3f9471d2 100644 --- a/cde/databases/CDE-RUN.udb +++ b/cde/databases/CDE-RUN.udb @@ -2310,7 +2310,35 @@ programs/localized/C/types/xpdf.dt install_target = /usr/dt/appconfig/types/C/xpdf.dt } +# +programs/localized/C/types/DisplayImage.dt +{ default + install_target = /usr/dt/appconfig/types/C/DisplayImage.dt +} + +# +programs/localized/C/types/DisplayPDF.dt +{ default + install_target = /usr/dt/appconfig/types/C/DisplayPDF.dt +} + +# +programs/localized/C/types/DisplayVideo.dt +{ default + install_target = /usr/dt/appconfig/types/C/DisplayVideo.dt +} +# +programs/localized/C/types/DisplayPS.dt +{ default + install_target = /usr/dt/appconfig/types/C/DisplayPS.dt +} + +# +programs/localized/C/types/videoTypes.dt +{ default + install_target = /usr/dt/appconfig/types/C/videoTypes.dt +} # @@ -2602,11 +2630,6 @@ programs/dtapp/dtapp type = sym_link } ./dtapp -{ default - install_target = /usr/dt/bin/dtapp_vweb - type = sym_link -} -./dtapp { default install_target = /usr/dt/bin/dtapp_vpdf type = sym_link diff --git a/cde/programs/dtapp/dtapp.src b/cde/programs/dtapp/dtapp.src index 02a94e91..7b1cec18 100755 --- a/cde/programs/dtapp/dtapp.src +++ b/cde/programs/dtapp/dtapp.src @@ -23,23 +23,15 @@ fi XCOMM video viewing if [ -z "$DTAPP_VVIDEO" ] then - VVIDEO="mplayer vlc ffplay" + VVIDEO="vlc ffplay" else VVIDEO="$DTAPP_VVIDEO" fi -XCOMM web (html) viewing -if [ -z "$DTAPP_VWEB" ] -then - VWEB="firefox chrome chromium-browser lynx" -else - VWEB="$DTAPP_VWEB" -fi - XCOMM postscript viewing if [ -z "$DTAPP_VPS" ] then - VPS="gv" + VPS="mgv gv" else VPS="$DTAPP_VPS" fi @@ -100,7 +92,7 @@ DoSimpleCmd() if [ ! -z "$thecmd" ] then # it's there - $thecmd $* + $thecmd "$args" didone=1 break fi @@ -116,58 +108,6 @@ DoSimpleCmd() } -XCOMM ############################################################### -XCOMM ### Actions - -XCOMM ## Web browsing -DoWeb() -{ - # DoWeb [[arg] ...] - - didone=0 - url="$1" - - for i in $VWEB - do - thecmd="$(FindProg $i)" - - if [ ! -z "$thecmd" ] - then # it's there - - # We'll do special things for lynx, - # else we'll just call whatever is available, and - # hope it's X aware... - - case $i in - lynx) - # start a dtterm - CDE_INSTALLATION_TOP/bin/dtterm -e $thecmd $url - didone=1 - ;; - *) - # any others - $thecmd $url - didone=1 - ;; - esac - - if [ $didone -eq 1 ] - then - break - fi - fi - done - - if [ $didone -eq 0 ] - then # couldn't find a viewer - ErrorMsg "Helper not found" \ - "${DTAPP}: Could not find any of the following\nweb browsers:\n\n$VWEB" - fi - - - return 0 -} - XCOMM ################################################################## XCOMM ## MAIN @@ -181,9 +121,6 @@ case $APPNAME in dtapp_vimage) DoSimpleCmd "$VIMAGE" $* ;; - dtapp_vweb) - DoWeb $* - ;; dtapp_vpdf) DoSimpleCmd "$VPDF" $* ;; diff --git a/cde/programs/icons/camera.l.pm b/cde/programs/icons/camera.l.pm new file mode 100644 index 00000000..b754fa41 --- /dev/null +++ b/cde/programs/icons/camera.l.pm @@ -0,0 +1,61 @@ +/* XPM */ +static char * IMdisplay_l_pm[] = { +/* width height ncolors cpp [x_hot y_hot] */ +"48 48 7 1 0 0", +/* colors */ +" s none m none c none", +". s iconColor1 m black c black", +"X s iconColor2 m white c white", +"o c #808080808080", +"O c #C0C0C0C0C0C0", +"+ s iconGray6 m black c #636363636363", +"@ s iconGray5 m black c #737373737373", +/* pixels */ +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" ..... ", +" ..XXXXo.. ", +" ..XXXXo.. ", +" ... .OOOOOO.oo. ...... ", +" .XXX......OOOOOOOO......XXXXoo.... ", +" ..XXX......OOOOOOOO......XXXXoo.... ", +" ..O......OO..oooooooo..oOO.......oOOO. ", +" .XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXO++. ", +" .XOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO+++. ", +" .XOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO+++. ", +" .XOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO+++. ", +" .XOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOO+... ", +" .XOOOOOOOOOOOOO......OOOOOOOOOOOOOOO+... ", +" ...............XXXXX.................... ", +" ............OOOOOOOXXX...............++. ", +" ..........OO.......OOOo.............+++. ", +" .........OOO.......OOOoo............+++. ", +" ........Ooo.@@@@@@@.ooO.............+++. ", +" ........O..@@@OXOO@@..Ooo...........+++. ", +" ........O..@@OOXO@@@..Ooo...........+++. ", +" .......O.@@@OXX@@@@@@@.O............+++. ", +" .......O.@@@XO@@@@@@@@.OO...........+++. ", +" .......O.@@@X@@@@@@@@@.OO...........+++. ", +" .......O.@@@X@@@@@@@@@.OO...........+++. ", +" .......O.@@@O@@@@@@@@@.OO...........+++. ", +" .......O.@@@@@@@@@@@@@.OO...........+++. ", +" .......O.@@@@@@@@@@@@@.O............+++. ", +" ........O..@@@@@@@@@..O.............+... ", +" ........Ooo.@@@@@@@.ooO.............+.. ", +" ........OOO.......OOO............... ", +" .........OO.......OOO............... ", +" .........oOOOOOOOo................ ", +" ....... ", +" ", +" ", +" ", +" ", +" ", +" ", +" ", +" "}; diff --git a/cde/programs/icons/camera.m.pm b/cde/programs/icons/camera.m.pm new file mode 100644 index 00000000..ce1e5455 --- /dev/null +++ b/cde/programs/icons/camera.m.pm @@ -0,0 +1,45 @@ +/* XPM */ +static char * IMdisplay_m_pm[] = { +/* width height ncolors cpp [x_hot y_hot] */ +"32 32 7 1 0 0", +/* colors */ +" s none m none c none", +". s iconColor1 m black c black", +"X s iconColor2 m white c white", +"o c #808080808080", +"O c #C0C0C0C0C0C0", +"+ s iconGray6 m black c #636363636363", +"@ s iconGray5 m black c #737373737373", +/* pixels */ +" ", +" ", +" ", +" ", +" .... ", +" .XXXo. ", +" .. .OOOO.o. .... ", +" ..XX....OOOOOO....XXXo... ", +" .O....OO.oooooo.oO.....oOO. ", +" .XXXXXXXXXXXXXXXXXXXXXXXXO+. ", +" .XOOOOOOOOOOOOOOOOOOOOOOOO++. ", +" .XOOOOOOOOOOOOOOOOOOOOOOOO++. ", +" .XOOOOOOOOO.....OOOOOOOOOO+.. ", +" ...........XXXX.............. ", +" .........OOOOOXX...........+. ", +" .......OO.....OOoo........++. ", +" ......Oo.@@@@@.oO.........++. ", +" ......O.@@OXO@@.Oo........++. ", +" .....O.@@OX@@@@@.O........++. ", +" .....O.@@XO@@@@@.O........++. ", +" .....O.@@X@@@@@@.O........++. ", +" .....O.@@O@@@@@@.O........++. ", +" .....O.@@@@@@@@@.O........++. ", +" ......O.@@@@@@@.O.........+.. ", +" ......Oo.@@@@@.oO.........+. ", +" ......OO.....OO........... ", +" ......oOOOOOo........... ", +" ..... ", +" ", +" ", +" ", +" "}; diff --git a/cde/programs/icons/camera.t.pm b/cde/programs/icons/camera.t.pm new file mode 100644 index 00000000..09fd6165 --- /dev/null +++ b/cde/programs/icons/camera.t.pm @@ -0,0 +1,29 @@ +/* XPM */ +static char * IMdisplay_t_pm[] = { +/* width height ncolors cpp [x_hot y_hot] */ +"16 16 7 1 0 0", +/* colors */ +" s none m none c none", +". s iconColor1 m black c black", +"X s iconColor2 m white c white", +"o c #C0C0C0C0C0C0", +"O s iconGray6 m black c #636363636363", +"+ c #808080808080", +"@ s iconGray5 m black c #737373737373", +/* pixels */ +" ", +" ", +" .XX. ", +" .X..ooo..XX.. ", +" XXXXXXXXXXXXXO ", +".oooooooooooooO ", +"......XX....... ", +"....o..oo+....O ", +"...o.@@.+.....O ", +"....@X@@@o....O ", +"....@@@@@o....O ", +"....@@@@@o....O ", +"...o.@@.+...... ", +" ...+oo+...... ", +" ", +" "}; diff --git a/cde/programs/localized/C/types/Education.dt b/cde/programs/localized/C/types/Education.dt deleted file mode 100644 index 1da772b2..00000000 --- a/cde/programs/localized/C/types/Education.dt +++ /dev/null @@ -1,29 +0,0 @@ -DATA_ATTRIBUTES EducationAppgroup -{ - ACTIONS OpenInPlace,OpenNewView - LABEL Education - ICON DtEducation - DESCRIPTION Education Applications. -} - -DATA_CRITERIA EducationAppgroupCriteria1 -{ - DATA_ATTRIBUTES_NAME EducationAppgroup - LABEL Education - MODE d - PATH_PATTERN */appmanager/*/Education -} - -ACTION Open -{ - ARG_TYPE EducationAppgroup - TYPE MAP - MAP_ACTION OpenAppGroup -} - -ACTION Print -{ - ARG_TYPE EducationAppgroup - TYPE MAP - MAP_ACTION PrintAppGroup -} diff --git a/cde/programs/localized/C/types/Games.dt b/cde/programs/localized/C/types/Games.dt deleted file mode 100644 index 5312bea3..00000000 --- a/cde/programs/localized/C/types/Games.dt +++ /dev/null @@ -1,29 +0,0 @@ -DATA_ATTRIBUTES GamesAppgroup -{ - ACTIONS OpenInPlace,OpenNewView - LABEL Games - ICON DtGamesCards - DESCRIPTION Collection of Games. -} - -DATA_CRITERIA GamesAppgroupCriteria1 -{ - DATA_ATTRIBUTES_NAME GamesAppgroup - LABEL Games - MODE d - PATH_PATTERN */appmanager/*/Games -} - -ACTION Open -{ - ARG_TYPE GamesAppgroup - TYPE MAP - MAP_ACTION OpenAppGroup -} - -ACTION Print -{ - ARG_TYPE GamesAppgroup - TYPE MAP - MAP_ACTION PrintAppGroup -} diff --git a/cde/programs/localized/C/types/Graphics.dt b/cde/programs/localized/C/types/Graphics.dt deleted file mode 100644 index 65da1798..00000000 --- a/cde/programs/localized/C/types/Graphics.dt +++ /dev/null @@ -1,29 +0,0 @@ -DATA_ATTRIBUTES GraphicsAppgroup -{ - ACTIONS OpenInPlace,OpenNewView - LABEL Graphics - ICON DtGraphics - DESCRIPTION Applications for Graphics. -} - -DATA_CRITERIA GraphicsAppgroupCriteria1 -{ - DATA_ATTRIBUTES_NAME GraphicsAppgroup - LABEL Graphics - MODE d - PATH_PATTERN */appmanager/*/Graphics -} - -ACTION Open -{ - ARG_TYPE GraphicsAppgroup - TYPE MAP - MAP_ACTION OpenAppGroup -} - -ACTION Print -{ - ARG_TYPE GraphicsAppgroup - TYPE MAP - MAP_ACTION PrintAppGroup -} diff --git a/cde/programs/localized/C/types/Internet.dt b/cde/programs/localized/C/types/Internet.dt deleted file mode 100644 index 3ba68943..00000000 --- a/cde/programs/localized/C/types/Internet.dt +++ /dev/null @@ -1,29 +0,0 @@ -DATA_ATTRIBUTES InternetAppgroup -{ - ACTIONS OpenInPlace,OpenNewView - LABEL Internet - ICON SDtwebbr - DESCRIPTION Applications for Internet: Browsers, Mailers etc. -} - -DATA_CRITERIA InternetAppgroupCriteria1 -{ - DATA_ATTRIBUTES_NAME InternetAppgroup - LABEL Internet - MODE d - PATH_PATTERN */appmanager/*/Internet -} - -ACTION Open -{ - ARG_TYPE InternetAppgroup - TYPE MAP - MAP_ACTION OpenAppGroup -} - -ACTION Print -{ - ARG_TYPE InternetAppgroup - TYPE MAP - MAP_ACTION PrintAppGroup -} diff --git a/cde/programs/localized/C/types/Media_Tools.dt b/cde/programs/localized/C/types/Media_Tools.dt deleted file mode 100644 index 287bf937..00000000 --- a/cde/programs/localized/C/types/Media_Tools.dt +++ /dev/null @@ -1,29 +0,0 @@ -DATA_ATTRIBUTES Media_ToolsAppgroup -{ - ACTIONS OpenInPlace,OpenNewView - LABEL Sound_and_Video - ICON Dtapplications-multimedia - DESCRIPTION Test DOC -} - -DATA_CRITERIA Media_ToolsAppgroupCriteria1 -{ - DATA_ATTRIBUTES_NAME Media_ToolsAppgroup - LABEL Sound_and_Video - MODE d - PATH_PATTERN */appmanager/*/Media_Tools -} - -ACTION Open -{ - ARG_TYPE Media_ToolsAppgroup - TYPE MAP - MAP_ACTION OpenAppGroup -} - -ACTION Print -{ - ARG_TYPE Media_ToolsAppgroup - TYPE MAP - MAP_ACTION PrintAppGroup -} diff --git a/cde/programs/localized/C/types/Office.dt b/cde/programs/localized/C/types/Office.dt deleted file mode 100644 index b93b99c9..00000000 --- a/cde/programs/localized/C/types/Office.dt +++ /dev/null @@ -1,29 +0,0 @@ -DATA_ATTRIBUTES OfficeAppgroup -{ - ACTIONS OpenInPlace,OpenNewView - LABEL Office - ICON DtOffice - DESCRIPTION Office Tools. -} - -DATA_CRITERIA OfficeAppgroupCriteria1 -{ - DATA_ATTRIBUTES_NAME OfficeAppgroup - LABEL Office - MODE d - PATH_PATTERN */appmanager/*/Office -} - -ACTION Open -{ - ARG_TYPE OfficeAppgroup - TYPE MAP - MAP_ACTION OpenAppGroup -} - -ACTION Print -{ - ARG_TYPE OfficeAppgroup - TYPE MAP - MAP_ACTION PrintAppGroup -} diff --git a/cde/programs/localized/C/types/System.dt b/cde/programs/localized/C/types/System.dt deleted file mode 100644 index 5fa7a86a..00000000 --- a/cde/programs/localized/C/types/System.dt +++ /dev/null @@ -1,29 +0,0 @@ -DATA_ATTRIBUTES SystemAppgroup -{ - ACTIONS OpenInPlace,OpenNewView - LABEL System - ICON DtSystem - DESCRIPTION System Tools. -} - -DATA_CRITERIA SystemAppgroupCriteria1 -{ - DATA_ATTRIBUTES_NAME SystemAppgroup - LABEL System - MODE d - PATH_PATTERN */appmanager/*/System -} - -ACTION Open -{ - ARG_TYPE SystemAppgroup - TYPE MAP - MAP_ACTION OpenAppGroup -} - -ACTION Print -{ - ARG_TYPE SystemAppgroup - TYPE MAP - MAP_ACTION PrintAppGroup -} diff --git a/cde/programs/localized/C/types/TeX.dt b/cde/programs/localized/C/types/TeX.dt deleted file mode 100644 index 389f92c9..00000000 --- a/cde/programs/localized/C/types/TeX.dt +++ /dev/null @@ -1,29 +0,0 @@ -DATA_ATTRIBUTES TeXAppgroup -{ - ACTIONS OpenInPlace,OpenNewView - LABEL TeX - ICON TeXGroup - DESCRIPTION TeX Applications. -} - -DATA_CRITERIA TeXAppgroupCriteria1 -{ - DATA_ATTRIBUTES_NAME TeXAppgroup - LABEL TeX - MODE d - PATH_PATTERN */appmanager/*/TeX -} - -ACTION Open -{ - ARG_TYPE TeXAppgroup - TYPE MAP - MAP_ACTION OpenAppGroup -} - -ACTION Print -{ - ARG_TYPE TeXAppgroup - TYPE MAP - MAP_ACTION PrintAppGroup -} diff --git a/cde/programs/localized/C/types/acroread.dt b/cde/programs/localized/C/types/acroread.dt deleted file mode 100644 index 284143d7..00000000 --- a/cde/programs/localized/C/types/acroread.dt +++ /dev/null @@ -1,35 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION acroread -{ - LABEL Acrobat_Reader - TYPE COMMAND - EXEC_STRING acroread "%Arg_1%" - ICON acroread - WINDOW_TYPE NO_STDIO - DESCRIPTION The standard PDF reader by Adobe. -} - - diff --git a/cde/programs/localized/C/types/amarok.dt b/cde/programs/localized/C/types/amarok.dt deleted file mode 100644 index 03ac416b..00000000 --- a/cde/programs/localized/C/types/amarok.dt +++ /dev/null @@ -1,35 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION amarok -{ - LABEL amarok - TYPE COMMAND - EXEC_STRING amarok "%Arg_1%" - ICON amarok - WINDOW_TYPE NO_STDIO - DESCRIPTION Amarok KDE Media Player. -} - - diff --git a/cde/programs/localized/C/types/brasero.dt b/cde/programs/localized/C/types/brasero.dt deleted file mode 100644 index fa242981..00000000 --- a/cde/programs/localized/C/types/brasero.dt +++ /dev/null @@ -1,78 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION brasero -{ - LABEL brasero - TYPE COMMAND - EXEC_STRING brasero %Arg_1% - ICON brasero - WINDOW_TYPE NO_STDIO - DESCRIPTION Brasero: Burn CDs and DVDs. -} - -#DATA_ATTRIBUTES vlc_FILE_1 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION MP3 files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_1A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_1 -# MODE !d -# PATH_PATTERN *.mp3 -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_1 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} -# -#DATA_ATTRIBUTES vlc_FILE_3 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION OGG files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_3A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_3 -# MODE !d -# PATH_PATTERN *.ogg -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_3 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} - diff --git a/cde/programs/localized/C/types/caja.dt b/cde/programs/localized/C/types/caja.dt deleted file mode 100644 index bc9bc096..00000000 --- a/cde/programs/localized/C/types/caja.dt +++ /dev/null @@ -1,33 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION caja -{ - LABEL caja - TYPE COMMAND - EXEC_STRING caja --no-desktop %Arg_1% - ICON caja - WINDOW_TYPE NO_STDIO - DESCRIPTION caja: MATE desktop file manager. -} diff --git a/cde/programs/localized/C/types/chromium.dt b/cde/programs/localized/C/types/chromium.dt deleted file mode 100644 index 01d8b5e8..00000000 --- a/cde/programs/localized/C/types/chromium.dt +++ /dev/null @@ -1,34 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION chromium -{ - LABEL chromium - TYPE COMMAND - EXEC_STRING chromium-browser %Arg_1% - ICON chrome - WINDOW_TYPE NO_STDIO - DESCRIPTION CHROMIUM Web Browser. -} - diff --git a/cde/programs/localized/C/types/datatypes.dt b/cde/programs/localized/C/types/datatypes.dt index 30f5d59d..70468998 100644 --- a/cde/programs/localized/C/types/datatypes.dt +++ b/cde/programs/localized/C/types/datatypes.dt @@ -200,15 +200,8 @@ ACTION Open { LABEL Open ARG_TYPE POSTSCRIPT - TYPE COMMAND - WINDOW_TYPE NO_STDIO - EXEC_STRING /usr/dt/bin/dterror.ds "Cannot open - No Postscript viewer available." "Information" "OK" - - - - DESCRIPTION Your system does not provide a postscript viewer. \ - Attempting to open this file displays an error \ - dialog box. + TYPE MAP + MAP_ACTION DisplayPS } ACTION Print { @@ -373,7 +366,7 @@ ACTION Print DATA_ATTRIBUTES TIFF { ACTIONS Open - ICON Dttif + ICON Dtimage NAME_TEMPLATE %s.tif MIME_TYPE image/tiff SUNV3_TYPE tiff-file @@ -422,15 +415,9 @@ ACTION Open { LABEL Open ARG_TYPE TIFF - TYPE COMMAND - WINDOW_TYPE NO_STDIO - EXEC_STRING /usr/dt/bin/dterror.ds "Cannot open - No TIFF file viewer available." "Information" "OK" - - - - DESCRIPTION Your system does not provide a TIFF viewer. \ - Attempting to open this file displays an error \ - dialog box. + TYPE MAP + MAP_ACTION DisplayImage + DESCRIPTION Use the tiff viewer } ACTION Print { @@ -445,7 +432,7 @@ ACTION Print DATA_ATTRIBUTES JPEG { ACTIONS Open - ICON Dtjpeg + ICON Dtimage NAME_TEMPLATE %s.jpg MIME_TYPE image/jpeg SUNV3_TYPE jpeg-file @@ -495,15 +482,9 @@ ACTION Open { LABEL Open ARG_TYPE JPEG - TYPE COMMAND - WINDOW_TYPE NO_STDIO - EXEC_STRING /usr/dt/bin/dterror.ds "Cannot open - No JPEG file viewer available." "Information" "OK" - - - - DESCRIPTION Your system does not provide a JPEG viewer. \ - Attempting to open this file displays an \ - error dialog box. + TYPE MAP + MAP_ACTION DisplayImage + DESCRIPTION Use the jpeg viewer } ACTION Print { @@ -513,78 +494,82 @@ ACTION Print MAP_ACTION NoPrint } -# ####################################################### +# ##################################################################### +# ## BMP -DATA_ATTRIBUTES MPEG +DATA_ATTRIBUTES BMP { - ACTIONS Open - ICON Dtmpeg - NAME_TEMPLATE %s.mpg - MIME_TYPE video/mpeg - DESCRIPTION This file contains a graphics image movie in MPEG \ - Interchange File Format. Its data type is \ - named MPEG. MPEG files have names ending with \ - '.MPEG', '.mpg', '.mpeg', or '.MPG'. - TYPE_LABEL MPEG + ACTIONS Open + ICON Dtimage + DESCRIPTION This file contains a graphics image in BMP format. Its data type is named BMP. BMP files have names ending with '.bmp', '.BMP' or '.Bmp'. + + } -DATA_CRITERIA MPEG1 +DATA_CRITERIA BMP1 { - DATA_ATTRIBUTES_NAME MPEG - MODE f - NAME_PATTERN *.MPEG + DATA_ATTRIBUTES_NAME BMP + MODE f + PATH_PATTERN *.bmp } -DATA_CRITERIA MPEG2 +DATA_CRITERIA BMP2 { - DATA_ATTRIBUTES_NAME MPEG - MODE f - NAME_PATTERN *.mpg + DATA_ATTRIBUTES_NAME BMP + MODE f + PATH_PATTERN *.BMP } -DATA_CRITERIA MPEG3 +DATA_CRITERIA BMP3 { - DATA_ATTRIBUTES_NAME MPEG - MODE f - NAME_PATTERN *.mpeg + DATA_ATTRIBUTES_NAME BMP + MODE f + PATH_PATTERN *.Bmp } -DATA_CRITERIA MPEG4 +DATA_CRITERIA BMP4 { - DATA_ATTRIBUTES_NAME MPEG - MODE f - NAME_PATTERN *.MPG + DATA_ATTRIBUTES_NAME BMP + CONTENT 0 string BM + MODE f } -DATA_CRITERIA MPEG5 +DATA_CRITERIA BMP4 { - DATA_ATTRIBUTES_NAME MPEG - MODE f - CONTENT 0 long 0x000001b3 + DATA_ATTRIBUTES_NAME BMP + CONTENT 0 string IC + MODE f +} +DATA_CRITERIA BMP4 +{ + DATA_ATTRIBUTES_NAME BMP + CONTENT 0 string CI + MODE f +} +DATA_CRITERIA BMP4 +{ + DATA_ATTRIBUTES_NAME BMP + CONTENT 0 string CP + MODE f } ACTION Open { - LABEL Open - ARG_TYPE MPEG - TYPE COMMAND - WINDOW_TYPE NO_STDIO - EXEC_STRING /usr/dt/bin/dterror.ds "Cannot open - No MPEG player available." "Information" "OK" - - - - DESCRIPTION Your system does not provide a MPEG viewer. \ - Attempting to open this file displays an error \ - dialog box. + LABEL Open + ARG_TYPE BMP + TYPE MAP + MAP_ACTION DisplayImage + DESCRIPTION Use the bitmap viewer } ACTION Print { LABEL Print - ARG_TYPE MPEG - TYPE MAP - MAP_ACTION NoPrint + ARG_TYPE BMP + TYPE MAP + MAP_ACTION NoPrint } + # ####################################################### DATA_ATTRIBUTES GIF { ACTIONS Open - ICON Dtgif + ICON Dtimage NAME_TEMPLATE %s.gif MIME_TYPE image/gif SUNV3_TYPE gif-file @@ -622,15 +607,9 @@ ACTION Open { LABEL Open ARG_TYPE GIF - TYPE COMMAND - WINDOW_TYPE NO_STDIO - EXEC_STRING /usr/dt/bin/dterror.ds "Cannot open - No GIF file viewer available." "Information" "OK" - - - - DESCRIPTION Your system does not provide a GIF viewer. \ - Attempting to open this file displays an error \ - dialog box. + TYPE MAP + MAP_ACTION DisplayImage + DESCRIPTION Use the gif viewer } ACTION Print { @@ -640,6 +619,60 @@ ACTION Print MAP_ACTION NoPrint } +# ####################################################################### +# ## PNG + +DATA_ATTRIBUTES PNG +{ + ACTIONS Open + ICON Dtimage + NAME_TEMPLATE %s.png + MIME_TYPE image/png + DESCRIPTION This file contains a graphics image in PNG format. Its data type is named PNG. PNG files have names ending with .png or .PNG + + + TYPE_LABEL PNG +} +DATA_CRITERIA PNG1 +{ + DATA_ATTRIBUTES_NAME PNG + MODE f + NAME_PATTERN *.png +} +DATA_CRITERIA PNG2 +{ + DATA_ATTRIBUTES_NAME PNG + MODE f + NAME_PATTERN *.PNG +} +DATA_CRITERIA PNG3 +{ + DATA_ATTRIBUTES_NAME PNG + CONTENT 0 string PNG + MODE f +} +DATA_CRITERIA PNG4 +{ + DATA_ATTRIBUTES_NAME PNG + CONTENT 0 byte 0x89 0x50 0x4e 0x47 + MODE f +} +ACTION Open +{ + LABEL Open + ARG_TYPE PNG + TYPE MAP + MAP_ACTION DisplayImage + DESCRIPTION Use the png viewer +} +ACTION Print +{ + LABEL Print + ARG_TYPE PNG + TYPE MAP + MAP_ACTION NoPrint +} + # ####################################################### DATA_ATTRIBUTES README @@ -858,4 +891,51 @@ ACTION Print MAP_ACTION NoPrint } +# ##################################################################### +# ## PDF + +DATA_ATTRIBUTES PDF +{ + ACTIONS Open,Print + ICON acroread + NAME_TEMPLATE %s.pdf + MIME_TYPE application/pdf + DESCRIPTION This file contains pdf data. Its data type is named PDF. PDF files have names ending with '.pdf' or '.PDF', or contain the characters "%PDF". + + + TYPE_LABEL PDF +} +DATA_CRITERIA PDF1 +{ + DATA_ATTRIBUTES_NAME PDF + MODE f&!x + NAME_PATTERN *.pdf +} +DATA_CRITERIA PDF2 +{ + DATA_ATTRIBUTES_NAME PDF + MODE f&!x + NAME_PATTERN *.PDF +} +DATA_CRITERIA PDF3 +{ + DATA_ATTRIBUTES_NAME PDF + CONTENT 0 string %PDF + MODE f&!x +} +ACTION Open +{ + LABEL Open + ARG_TYPE PDF + TYPE MAP + MAP_ACTION DisplayPDF +} +ACTION Print +{ + LABEL Print + ARG_TYPE PDF + TYPE MAP + MAP_ACTION DisplayPDF +} + # ######################## EOF ############################################ diff --git a/cde/programs/localized/C/types/dreamchess.dt b/cde/programs/localized/C/types/dreamchess.dt deleted file mode 100644 index 5790b5d7..00000000 --- a/cde/programs/localized/C/types/dreamchess.dt +++ /dev/null @@ -1,9 +0,0 @@ -ACTION dreamchess -{ - LABEL dreamchess - TYPE COMMAND - EXEC_STRING dreamchess - ICON dreamchess - WINDOW_TYPE NO_STDIO -} - diff --git a/cde/programs/localized/C/types/eboard.dt b/cde/programs/localized/C/types/eboard.dt deleted file mode 100644 index 11c8012d..00000000 --- a/cde/programs/localized/C/types/eboard.dt +++ /dev/null @@ -1,9 +0,0 @@ -ACTION eboard -{ - LABEL eboard - TYPE COMMAND - EXEC_STRING eboard - ICON eboard - WINDOW_TYPE NO_STDIO -} - diff --git a/cde/programs/localized/C/types/emacs.dt b/cde/programs/localized/C/types/emacs.dt deleted file mode 100644 index 480a04ec..00000000 --- a/cde/programs/localized/C/types/emacs.dt +++ /dev/null @@ -1,35 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION emacs -{ - LABEL Emacs - TYPE COMMAND - EXEC_STRING emacs "%Arg_1%" - ICON emacs - WINDOW_TYPE NO_STDIO - DESCRIPTION GNU Editor Emacs. -} - - diff --git a/cde/programs/localized/C/types/engrampa.dt b/cde/programs/localized/C/types/engrampa.dt deleted file mode 100644 index 2e4fd475..00000000 --- a/cde/programs/localized/C/types/engrampa.dt +++ /dev/null @@ -1,78 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION engrampa -{ - LABEL engrampa - TYPE COMMAND - EXEC_STRING engrampa %Arg_1% - ICON engrampa - WINDOW_TYPE NO_STDIO - DESCRIPTION engrampa: archive manager. -} - -DATA_ATTRIBUTES engrampa_FILE_1 -{ - ACTIONS Open - ICON engrampa - DESCRIPTION TGZ files open with engrampa. -} - -DATA_CRITERIA engrampa_FILE_1A -{ - DATA_ATTRIBUTES_NAME engrampa_FILE_1 - MODE !d - PATH_PATTERN *.tgz -} - -ACTION Open -{ - ARG_TYPE engrampa_FILE_1 - TYPE MAP - MAP_ACTION engrampa - LABEL Open -} - -DATA_ATTRIBUTES engrampa_FILE_3 -{ - ACTIONS Open - ICON engrampa - DESCRIPTION ZIP files open with engrampa. -} - -DATA_CRITERIA engrampa_FILE_3A -{ - DATA_ATTRIBUTES_NAME engrampa_FILE_3 - MODE !d - PATH_PATTERN *.zip -} - -ACTION Open -{ - ARG_TYPE engrampa_FILE_3 - TYPE MAP - MAP_ACTION engrampa - LABEL Open -} - diff --git a/cde/programs/localized/C/types/file-roller.dt b/cde/programs/localized/C/types/file-roller.dt deleted file mode 100644 index 9c707296..00000000 --- a/cde/programs/localized/C/types/file-roller.dt +++ /dev/null @@ -1,78 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION file-roller -{ - LABEL file-roller - TYPE COMMAND - EXEC_STRING file-roller %Arg_1% - ICON file-roller - WINDOW_TYPE NO_STDIO - DESCRIPTION file-roller: archive manager. -} - -#DATA_ATTRIBUTES file-roller_FILE_1 -#{ -# ACTIONS Open -## ICON -# DESCRIPTION TGZ files open with file-roller. -#} -# -#DATA_CRITERIA file-roller_FILE_1A -#{ -# DATA_ATTRIBUTES_NAME file-roller_FILE_1 -# MODE !d -# PATH_PATTERN *.tgz -#} -# -#ACTION Open -#{ -# ARG_TYPE file-roller_FILE_1 -# TYPE MAP -# MAP_ACTION file-roller -# LABEL Open -#} -# -#DATA_ATTRIBUTES file-roller_FILE_3 -#{ -# ACTIONS Open -## ICON -# DESCRIPTION ZIP files open with file-roller. -#} -# -#DATA_CRITERIA file-roller_FILE_3A -#{ -# DATA_ATTRIBUTES_NAME file-roller_FILE_3 -# MODE !d -# PATH_PATTERN *.zip -#} -# -#ACTION Open -#{ -# ARG_TYPE file-roller_FILE_3 -# TYPE MAP -# MAP_ACTION file-roller -# LABEL Open -#} - diff --git a/cde/programs/localized/C/types/firefox.dt b/cde/programs/localized/C/types/firefox.dt deleted file mode 100644 index 799da40e..00000000 --- a/cde/programs/localized/C/types/firefox.dt +++ /dev/null @@ -1,143 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION firefox -{ - LABEL Firefox - TYPE COMMAND - EXEC_STRING firefox %Arg_1% - ICON firefox - WINDOW_TYPE NO_STDIO - DESCRIPTION The firefox Web Browser. -} - -DATA_ATTRIBUTES firefox_FILE_1 -{ - ACTIONS Open - ICON SDthtml - DESCRIPTION html files open with firefox Web Browser. -} - -DATA_CRITERIA firefox_FILE_1A -{ - DATA_ATTRIBUTES_NAME firefox_FILE_1 - MODE !d - PATH_PATTERN *.html -} - -ACTION Open -{ - ARG_TYPE firefox_FILE_1 - TYPE MAP - MAP_ACTION firefox - LABEL Open -} - -ACTION firefox_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING firefox -print %Arg_1% - WINDOW_TYPE NO_STDIO - DESCRIPTION Printing for firefox by droping and html file on the \ - penel's printer needs an add-on. Search \ - the Internet to find a command-line printing add-on for \ - firefox accordingly the print command in the file firefox.dt -} - -ACTION Print -{ - ARG_TYPE firefox_FILE_1 - TYPE MAP - MAP_ACTION firefox_FILE_1_PRINT - LABEL Print -} - - - -DATA_ATTRIBUTES firefox_FILE_3 -{ - ACTIONS Open - ICON SDthtml - DESCRIPTION htm files open with firefox Web Browser. -} - -DATA_CRITERIA firefox_FILE_3A -{ - DATA_ATTRIBUTES_NAME firefox_FILE_3 - MODE !d - PATH_PATTERN *.htm -} - -ACTION Open -{ - ARG_TYPE firefox_FILE_3 - TYPE MAP - MAP_ACTION firefox - LABEL Open -} - -ACTION firefox_FILE_3_PRINT -{ - TYPE COMMAND - EXEC_STRING firefox -print %Arg_1% - WINDOW_TYPE NO_STDIO - DESCRIPTION Printing for firefox by droping and htm file on the \ - penel's printer needs an add-on. Search \ - the Internet to find a command-line printing add-on for \ - firefox accordingly the print command in the file firefox.dt -} - -ACTION Print -{ - ARG_TYPE firefox_FILE_3 - TYPE MAP - MAP_ACTION firefox_FILE_3_PRINT - LABEL Print -} - - - -DATA_ATTRIBUTES firefox_FILE_5 -{ - ACTIONS Open - ICON SDturlweb - DESCRIPTION url files open with firefox Web Browser. -} - - -DATA_CRITERIA firefox_FILE_5A -{ - DATA_ATTRIBUTES_NAME firefox_FILE_5 - MODE !d - PATH_PATTERN *.url -} - -ACTION Open -{ - ARG_TYPE firefox_FILE_5 - TYPE MAP - MAP_ACTION firefox - LABEL Open -} - diff --git a/cde/programs/localized/C/types/firestarter.dt b/cde/programs/localized/C/types/firestarter.dt deleted file mode 100644 index 963689f7..00000000 --- a/cde/programs/localized/C/types/firestarter.dt +++ /dev/null @@ -1,35 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION firestarter -{ - LABEL firestarter - TYPE COMMAND - EXEC_STRING gksu -w -u root firestarter - ICON firestarter - WINDOW_TYPE NO_STDIO - DESCRIPTION firestarter: manage your firewall. -} - - diff --git a/cde/programs/localized/C/types/fontforge.dt b/cde/programs/localized/C/types/fontforge.dt deleted file mode 100644 index 54e4c8bc..00000000 --- a/cde/programs/localized/C/types/fontforge.dt +++ /dev/null @@ -1,169 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION fontforge -{ - LABEL fontforge - TYPE COMMAND - EXEC_STRING fontforge "%Arg_1%" - ICON fontforge - WINDOW_TYPE NO_STDIO - DESCRIPTION fontforge font editor. -} - -DATA_ATTRIBUTES fontforge_FILE_1 -{ - ACTIONS Open,Print - ICON fontforge - DESCRIPTION Open font in fontforge. -} - -DATA_CRITERIA fontforge_FILE_1A -{ - DATA_ATTRIBUTES_NAME fontforge_FILE_1 - MODE !d - PATH_PATTERN *.sfd -} - -ACTION Open -{ - ARG_TYPE fontforge_FILE_1 - TYPE MAP - MAP_ACTION fontforge - LABEL Open -} - -ACTION fontforge_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING fontforge "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE fontforge_FILE_1 - TYPE MAP - MAP_ACTION fontforge_FILE_1_PRINT - LABEL Print -} - - - -#### -DATA_ATTRIBUTES fontforge_FILE_3 -{ - ACTIONS Open - ICON fontforge - DESCRIPTION Open font in fontforge. -} - -DATA_CRITERIA fontforge_FILE_3A -{ - DATA_ATTRIBUTES_NAME fontforge_FILE_3 - MODE !d - PATH_PATTERN *.ttf -} - -ACTION Open -{ - ARG_TYPE fontforge_FILE_3 - TYPE MAP - MAP_ACTION fontforge - LABEL Open -} - - -#### - -DATA_ATTRIBUTES fontforge_FILE_5 -{ - ACTIONS Open - ICON fontforge - DESCRIPTION Open font in fontforge. -} - -DATA_CRITERIA fontforge_FILE_5A -{ - DATA_ATTRIBUTES_NAME fontforge_FILE_5 - MODE !d - PATH_PATTERN *.pfb -} - -ACTION Open -{ - ARG_TYPE fontforge_FILE_5 - TYPE MAP - MAP_ACTION fontforge - LABEL Open -} -#### -DATA_ATTRIBUTES fontforge_FILE_7 -{ - ACTIONS Open - ICON fontforge - DESCRIPTION Open font in fontforge. -} - -DATA_CRITERIA fontforge_FILE_7A -{ - DATA_ATTRIBUTES_NAME fontforge_FILE_7 - MODE !d - PATH_PATTERN *.pfa -} - -ACTION Open -{ - ARG_TYPE fontforge_FILE_7 - TYPE MAP - MAP_ACTION fontforge - LABEL Open -} -#### -DATA_ATTRIBUTES fontforge_FILE_9 -{ - ACTIONS Open - ICON fontforge - DESCRIPTION Open font in fontforge. -} - -DATA_CRITERIA fontforge_FILE_9A -{ - DATA_ATTRIBUTES_NAME fontforge_FILE_9 - MODE !d - PATH_PATTERN *.otf -} - -ACTION Open -{ - ARG_TYPE fontforge_FILE_9 - TYPE MAP - MAP_ACTION fontforge - LABEL Open -} - - - - - diff --git a/cde/programs/localized/C/types/gcompris.dt b/cde/programs/localized/C/types/gcompris.dt deleted file mode 100644 index fa5a7721..00000000 --- a/cde/programs/localized/C/types/gcompris.dt +++ /dev/null @@ -1,34 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION gcompris -{ - LABEL gcompris - TYPE COMMAND - EXEC_STRING gcompris %Arg_1% - ICON gcompris - WINDOW_TYPE NO_STDIO - DESCRIPTION gcompris is an education suite. -} - diff --git a/cde/programs/localized/C/types/geogebra.dt b/cde/programs/localized/C/types/geogebra.dt deleted file mode 100644 index 05271d6c..00000000 --- a/cde/programs/localized/C/types/geogebra.dt +++ /dev/null @@ -1,33 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION geogebra -{ - LABEL geogebra - TYPE COMMAND - EXEC_STRING geogebra %Arg_1% - ICON geogebra - WINDOW_TYPE NO_STDIO - DESCRIPTION geogebra is for interactive geometry and algebra. -} diff --git a/cde/programs/localized/C/types/gimp.dt b/cde/programs/localized/C/types/gimp.dt deleted file mode 100644 index b5fc8d46..00000000 --- a/cde/programs/localized/C/types/gimp.dt +++ /dev/null @@ -1,72 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION gimp -{ - LABEL Gimp - TYPE COMMAND - EXEC_STRING gimp "%Arg_1%" - ICON gimp - WINDOW_TYPE NO_STDIO - DESCRIPTION The GNU image manipulation program. -} - -DATA_ATTRIBUTES gimp_FILE_1 -{ - ACTIONS Open,Print - ICON gimp - DESCRIPTION Open image in Gimp. -} - -DATA_CRITERIA gimp_FILE_1A -{ - DATA_ATTRIBUTES_NAME gimp_FILE_1 - MODE !d - PATH_PATTERN *.xcf -} - -ACTION Open -{ - ARG_TYPE gimp_FILE_1 - TYPE MAP - MAP_ACTION gimp - LABEL Open -} - -ACTION gimp_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING gimp "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE gimp_FILE_1 - TYPE MAP - MAP_ACTION gimp_FILE_1_PRINT - LABEL Print -} - - diff --git a/cde/programs/localized/C/types/gv.dt b/cde/programs/localized/C/types/gv.dt deleted file mode 100644 index 8dfc30f7..00000000 --- a/cde/programs/localized/C/types/gv.dt +++ /dev/null @@ -1,72 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION gv -{ - LABEL gv - TYPE COMMAND - EXEC_STRING gv "%Arg_1%" - ICON gv - WINDOW_TYPE NO_STDIO - DESCRIPTION gv is a postscript viewer. -} - -DATA_ATTRIBUTES gv_FILE_1 -{ - ACTIONS Open,Print - ICON gv - DESCRIPTION Postscript files open with gv. -} - -DATA_CRITERIA gv_FILE_1A -{ - DATA_ATTRIBUTES_NAME gv_FILE_1 - MODE !d - PATH_PATTERN *.ps -} - -ACTION Open -{ - ARG_TYPE gv_FILE_1 - TYPE MAP - MAP_ACTION gv - LABEL Open -} - -ACTION gv_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING lpr "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE gv_FILE_1 - TYPE MAP - MAP_ACTION gv_FILE_1_PRINT - LABEL Print -} - - diff --git a/cde/programs/localized/C/types/inkscape.dt b/cde/programs/localized/C/types/inkscape.dt deleted file mode 100644 index 5d3ec21b..00000000 --- a/cde/programs/localized/C/types/inkscape.dt +++ /dev/null @@ -1,71 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION inkscape -{ - LABEL inkscape - TYPE COMMAND - EXEC_STRING inkscape "%Arg_1%" - ICON inkscape - WINDOW_TYPE NO_STDIO - DESCRIPTION inkscape vector graphics editor -} - -DATA_ATTRIBUTES inkscape_FILE_1 -{ - ACTIONS Open,Print - DESCRIPTION Open image in inkscape. -} - -DATA_CRITERIA inkscape_FILE_1A -{ - DATA_ATTRIBUTES_NAME inkscape_FILE_1 - MODE !d - PATH_PATTERN *.svg -} - -ACTION Open -{ - ARG_TYPE inkscape_FILE_1 - TYPE MAP - MAP_ACTION inkscape - LABEL Open -} - -ACTION inkscape_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING inkscape %Arg_1% - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE inkscape_FILE_1 - TYPE MAP - MAP_ACTION inkscape_FILE_1_PRINT - LABEL Print -} - - diff --git a/cde/programs/localized/C/types/k3b.dt b/cde/programs/localized/C/types/k3b.dt deleted file mode 100644 index ad9c4af3..00000000 --- a/cde/programs/localized/C/types/k3b.dt +++ /dev/null @@ -1,78 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION k3b -{ - LABEL k3b - TYPE COMMAND - EXEC_STRING k3b %Arg_1% - ICON k3b - WINDOW_TYPE NO_STDIO - DESCRIPTION k3b Burn CDs and DVDs. -} - -#DATA_ATTRIBUTES vlc_FILE_1 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION MP3 files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_1A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_1 -# MODE !d -# PATH_PATTERN *.mp3 -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_1 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} -# -#DATA_ATTRIBUTES vlc_FILE_3 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION OGG files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_3A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_3 -# MODE !d -# PATH_PATTERN *.ogg -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_3 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} - diff --git a/cde/programs/localized/C/types/k9copy.dt b/cde/programs/localized/C/types/k9copy.dt deleted file mode 100644 index 55f14439..00000000 --- a/cde/programs/localized/C/types/k9copy.dt +++ /dev/null @@ -1,78 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION k9copy -{ - LABEL k9copy - TYPE COMMAND - EXEC_STRING k9copy %Arg_1% - ICON k9copy - WINDOW_TYPE NO_STDIO - DESCRIPTION k9copy: Copy 9Gb DVDs to 4.5Gb DVDs. -} - -#DATA_ATTRIBUTES vlc_FILE_1 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION MP3 files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_1A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_1 -# MODE !d -# PATH_PATTERN *.mp3 -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_1 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} -# -#DATA_ATTRIBUTES vlc_FILE_3 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION OGG files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_3A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_3 -# MODE !d -# PATH_PATTERN *.ogg -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_3 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} - diff --git a/cde/programs/localized/C/types/kile.dt b/cde/programs/localized/C/types/kile.dt deleted file mode 100644 index d4d27bd2..00000000 --- a/cde/programs/localized/C/types/kile.dt +++ /dev/null @@ -1,98 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION kile -{ - LABEL kile - TYPE COMMAND - EXEC_STRING kile "%Arg_1%" - ICON kile - WINDOW_TYPE NO_STDIO - DESCRIPTION LaTeX editor of KDE. -} - -DATA_ATTRIBUTES kile_FILE_1 -{ - ACTIONS Open,Print - ICON kile - DESCRIPTION TeX files open in kile. -} - -DATA_CRITERIA kile_FILE_1A -{ - DATA_ATTRIBUTES_NAME kile_FILE_1 - MODE !d - PATH_PATTERN *.tex -} - -ACTION Open -{ - ARG_TYPE kile_FILE_1 - TYPE MAP - MAP_ACTION kile - LABEL Open -} - -ACTION kile_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING lpr "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE kile_FILE_1 - TYPE MAP - MAP_ACTION kile_FILE_1_PRINT - LABEL Print -} - -DATA_ATTRIBUTES kile_FILE_3 -{ - ACTIONS Open,Print - ICON kile - DESCRIPTION TeX style files open in kile. -} - -DATA_CRITERIA kile_FILE_3A -{ - DATA_ATTRIBUTES_NAME kile_FILE_3 - MODE !d - PATH_PATTERN *.sty -} - -ACTION Open -{ - ARG_TYPE kile_FILE_3 - TYPE MAP - MAP_ACTION kile - LABEL Open -} - - - - - - diff --git a/cde/programs/localized/C/types/ktuberling.dt b/cde/programs/localized/C/types/ktuberling.dt deleted file mode 100644 index f5a959df..00000000 --- a/cde/programs/localized/C/types/ktuberling.dt +++ /dev/null @@ -1,9 +0,0 @@ -ACTION ktuberling -{ - LABEL ktuberling - TYPE COMMAND - EXEC_STRING ktuberling - ICON ktuberling - WINDOW_TYPE NO_STDIO -} - diff --git a/cde/programs/localized/C/types/lbreakout2.dt b/cde/programs/localized/C/types/lbreakout2.dt deleted file mode 100644 index e1763718..00000000 --- a/cde/programs/localized/C/types/lbreakout2.dt +++ /dev/null @@ -1,9 +0,0 @@ -ACTION lbreakout2 -{ - LABEL lbreakout2 - TYPE COMMAND - EXEC_STRING lbreakout2 - ICON lbreakout2 - WINDOW_TYPE NO_STDIO -} - diff --git a/cde/programs/localized/C/types/libreoffice-base.dt b/cde/programs/localized/C/types/libreoffice-base.dt deleted file mode 100644 index 4e790ed7..00000000 --- a/cde/programs/localized/C/types/libreoffice-base.dt +++ /dev/null @@ -1,34 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION libreoffice-base -{ - LABEL Base - TYPE COMMAND - EXEC_STRING libreoffice --base "%Arg_1%" - ICON libreoffice-base - WINDOW_TYPE NO_STDIO - DESCRIPTION Libre Office BASE. -} - diff --git a/cde/programs/localized/C/types/libreoffice-calc.dt b/cde/programs/localized/C/types/libreoffice-calc.dt deleted file mode 100644 index fcbf9e26..00000000 --- a/cde/programs/localized/C/types/libreoffice-calc.dt +++ /dev/null @@ -1,146 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION libreoffice-calc -{ - LABEL Calc - TYPE COMMAND - EXEC_STRING libreoffice --calc "%Arg_1%" - ICON libreoffice-calc - WINDOW_TYPE NO_STDIO - DESCRIPTION Libre Office Spreadsheets. -} - -DATA_ATTRIBUTES libreoffice-calc_FILE_1 -{ - ACTIONS Open,Print - ICON libreoffice-calc - DESCRIPTION Open Document Spreadsheet file. -} - -DATA_CRITERIA libreoffice-calc_FILE_1A -{ - DATA_ATTRIBUTES_NAME libreoffice-calc_FILE_1 - MODE !d - PATH_PATTERN *.ods -} - -ACTION Open -{ - ARG_TYPE libreoffice-calc_FILE_1 - TYPE MAP - MAP_ACTION libreoffice-calc - LABEL Open -} - -ACTION libreoffice-calc_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-calc_FILE_1 - TYPE MAP - MAP_ACTION libreoffice-calc_FILE_1_PRINT - LABEL Print -} - - -DATA_ATTRIBUTES libreoffice-calc_FILE_4 -{ - ACTIONS Open,Print - ICON libreoffice-calc -} - -DATA_CRITERIA libreoffice-calc_FILE_4A -{ - DATA_ATTRIBUTES_NAME libreoffice-calc_FILE_4 - MODE !d - PATH_PATTERN *.xls -} - -ACTION Open -{ - ARG_TYPE libreoffice-calc_FILE_4 - TYPE MAP - MAP_ACTION libreoffice-calc - LABEL Open -} - -ACTION libreoffice-calc_FILE_4_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-calc_FILE_4 - TYPE MAP - MAP_ACTION libreoffice-calc_FILE_4_PRINT - LABEL Print -} - - -DATA_ATTRIBUTES libreoffice-calc_FILE_6 -{ - ACTIONS Open,Print - ICON libreoffice-calc - DESCRIPTION New Microsoft Spreadsheet Format. -} - -DATA_CRITERIA libreoffice-calc_FILE_6A -{ - DATA_ATTRIBUTES_NAME libreoffice-calc_FILE_6 - MODE !d - PATH_PATTERN *.xlsx -} - -ACTION Open -{ - ARG_TYPE libreoffice-calc_FILE_6 - TYPE MAP - MAP_ACTION libreoffice-calc - LABEL Open -} - -ACTION libreoffice-calc_FILE_6_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-calc_FILE_6 - TYPE MAP - MAP_ACTION libreoffice-calc_FILE_6_PRINT - LABEL Print -} - diff --git a/cde/programs/localized/C/types/libreoffice-draw.dt b/cde/programs/localized/C/types/libreoffice-draw.dt deleted file mode 100644 index ee079ab2..00000000 --- a/cde/programs/localized/C/types/libreoffice-draw.dt +++ /dev/null @@ -1,110 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION libreoffice-draw -{ - LABEL Draw - TYPE COMMAND - EXEC_STRING libreoffice --draw "%Arg_1%" - ICON libreoffice-draw - WINDOW_TYPE NO_STDIO - DESCRIPTION Libre Office DRAW. -} - -DATA_ATTRIBUTES libreoffice-draw_FILE_1 -{ - ACTIONS Open,Print - ICON libreoffice-draw - DESCRIPTION Open Document Draw file. -} - -DATA_CRITERIA libreoffice-draw_FILE_1A -{ - DATA_ATTRIBUTES_NAME libreoffice-draw_FILE_1 - MODE !d - PATH_PATTERN *.odg -} - -ACTION Open -{ - ARG_TYPE libreoffice-draw_FILE_1 - TYPE MAP - MAP_ACTION libreoffice-draw - LABEL Open -} - -ACTION libreoffice-draw_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-draw_FILE_1 - TYPE MAP - MAP_ACTION libreoffice-draw_FILE_1_PRINT - LABEL Print -} - - -DATA_ATTRIBUTES libreoffice-draw_FILE_4 -{ - ACTIONS Open,Print - ICON libreoffice-draw -} - -DATA_CRITERIA libreoffice-draw_FILE_4A -{ - DATA_ATTRIBUTES_NAME libreoffice-draw_FILE_4 - MODE !d - PATH_PATTERN *.fodg -} - -ACTION Open -{ - ARG_TYPE libreoffice-draw_FILE_4 - TYPE MAP - MAP_ACTION libreoffice-draw - LABEL Open -} - -ACTION libreoffice-writer_FILE_4_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-draw_FILE_4 - TYPE MAP - MAP_ACTION libreoffice-draw_FILE_4_PRINT - LABEL Print -} - - - diff --git a/cde/programs/localized/C/types/libreoffice-impress.dt b/cde/programs/localized/C/types/libreoffice-impress.dt deleted file mode 100644 index f006708a..00000000 --- a/cde/programs/localized/C/types/libreoffice-impress.dt +++ /dev/null @@ -1,260 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION libreoffice-impress -{ - LABEL Impress - TYPE COMMAND - EXEC_STRING libreoffice --impress "%Arg_1%" - ICON libreoffice-impress - WINDOW_TYPE NO_STDIO - DESCRIPTION Libre Office Impress. -} - -DATA_ATTRIBUTES libreoffice-impress_FILE_1 -{ - ACTIONS Open,Print - ICON libreoffice-impress - DESCRIPTION Open Document Presentation file. -} - -DATA_CRITERIA libreoffice-impress_FILE_1A -{ - DATA_ATTRIBUTES_NAME libreoffice-impress_FILE_1 - MODE !d - PATH_PATTERN *.odp -} - -ACTION Open -{ - ARG_TYPE libreoffice-impress_FILE_1 - TYPE MAP - MAP_ACTION libreoffice-impress - LABEL Open -} - -ACTION libreoffice-impress_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-impress_FILE_1 - TYPE MAP - MAP_ACTION libreoffice-impress_FILE_1_PRINT - LABEL Print -} - - -DATA_ATTRIBUTES libreoffice-impress_FILE_4 -{ - ACTIONS Open,Print - ICON libreoffice-impress -} - -DATA_CRITERIA libreoffice-impress_FILE_4A -{ - DATA_ATTRIBUTES_NAME libreoffice-impress_FILE_4 - MODE !d - PATH_PATTERN *.fodp -} - -ACTION Open -{ - ARG_TYPE libreoffice-impress_FILE_4 - TYPE MAP - MAP_ACTION libreoffice-impress - LABEL Open -} - -ACTION libreoffice-impress_FILE_4_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-impress_FILE_4 - TYPE MAP - MAP_ACTION libreoffice-impress_FILE_4_PRINT - LABEL Print -} - - -DATA_ATTRIBUTES libreoffice-impress_FILE_6 -{ - ACTIONS Open,Print - ICON libreoffice-impress - DESCRIPTION New Microsoft Format. -} - -DATA_CRITERIA libreoffice-impress_FILE_6A -{ - DATA_ATTRIBUTES_NAME libreoffice-impress_FILE_6 - MODE !d - PATH_PATTERN *.pptx -} - -ACTION Open -{ - ARG_TYPE libreoffice-impress_FILE_6 - TYPE MAP - MAP_ACTION libreoffice-impress - LABEL Open -} - -ACTION libreoffice-impress_FILE_6_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-impress_FILE_6 - TYPE MAP - MAP_ACTION libreoffice-impress_FILE_6_PRINT - LABEL Print -} - -DATA_ATTRIBUTES libreoffice-impress_FILE_8 -{ - ACTIONS Open,Print - ICON libreoffice-impress - DESCRIPTION New Microsoft Format. -} - -DATA_CRITERIA libreoffice-impress_FILE_8A -{ - DATA_ATTRIBUTES_NAME libreoffice-impress_FILE_8 - MODE !d - PATH_PATTERN *.ppsx -} - -ACTION Open -{ - ARG_TYPE libreoffice-impress_FILE_8 - TYPE MAP - MAP_ACTION libreoffice-impress - LABEL Open -} - -ACTION libreoffice-impress_FILE_8_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-impress_FILE_8 - TYPE MAP - MAP_ACTION libreoffice-impress_FILE_8_PRINT - LABEL Print -} - - - -DATA_ATTRIBUTES libreoffice-impress_FILE_10 -{ - ACTIONS Open,Print - ICON libreoffice-impress - DESCRIPTION Microsoft Presentation Format. -} - -DATA_CRITERIA libreoffice-impress_FILE_10A -{ - DATA_ATTRIBUTES_NAME libreoffice-impress_FILE_10 - MODE !d - PATH_PATTERN *.ppt -} - -ACTION Open -{ - ARG_TYPE libreoffice-impress_FILE_10 - TYPE MAP - MAP_ACTION libreoffice-impress - LABEL Open -} - -ACTION libreoffice-impress_FILE_10_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-impress_FILE_10 - TYPE MAP - MAP_ACTION libreoffice-impress_FILE_10_PRINT - LABEL Print -} - - -DATA_ATTRIBUTES libreoffice-impress_FILE_12 -{ - ACTIONS Open,Print - ICON libreoffice-impress - DESCRIPTION Microsoft Presentation Format. -} - -DATA_CRITERIA libreoffice-impress_FILE_12A -{ - DATA_ATTRIBUTES_NAME libreoffice-impress_FILE_12 - MODE !d - PATH_PATTERN *.pps -} - -ACTION Open -{ - ARG_TYPE libreoffice-impress_FILE_12 - TYPE MAP - MAP_ACTION libreoffice-impress - LABEL Open -} - -ACTION libreoffice-impress_FILE_12_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-impress_FILE_12 - TYPE MAP - MAP_ACTION libreoffice-impress_FILE_12_PRINT - LABEL Print -} - diff --git a/cde/programs/localized/C/types/libreoffice-main.dt b/cde/programs/localized/C/types/libreoffice-main.dt deleted file mode 100644 index 59f35fb6..00000000 --- a/cde/programs/localized/C/types/libreoffice-main.dt +++ /dev/null @@ -1,37 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION libreoffice-main -{ - LABEL LibreOffice - TYPE COMMAND - EXEC_STRING libreoffice "%Arg_1%" - ICON libreoffice-main - WINDOW_TYPE NO_STDIO - DESCRIPTION Libre Office. -} - - - - diff --git a/cde/programs/localized/C/types/libreoffice-math.dt b/cde/programs/localized/C/types/libreoffice-math.dt deleted file mode 100644 index c8eacdc8..00000000 --- a/cde/programs/localized/C/types/libreoffice-math.dt +++ /dev/null @@ -1,72 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION libreoffice-math -{ - LABEL Math - TYPE COMMAND - EXEC_STRING libreoffice --math "%Arg_1%" - ICON libreoffice-math - WINDOW_TYPE NO_STDIO - DESCRIPTION Libre Office MATH. -} - -DATA_ATTRIBUTES libreoffice-math_FILE_1 -{ - ACTIONS Open,Print - ICON libreoffice-math - DESCRIPTION Open Document Math file. -} - -DATA_CRITERIA libreoffice-math_FILE_1A -{ - DATA_ATTRIBUTES_NAME libreoffice-math_FILE_1 - MODE !d - PATH_PATTERN *.odf -} - -ACTION Open -{ - ARG_TYPE libreoffice-math_FILE_1 - TYPE MAP - MAP_ACTION libreoffice-math - LABEL Open -} - -ACTION libreoffice-math_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-math_FILE_1 - TYPE MAP - MAP_ACTION libreoffice-math_FILE_1_PRINT - LABEL Print -} - - diff --git a/cde/programs/localized/C/types/libreoffice-writer.dt b/cde/programs/localized/C/types/libreoffice-writer.dt deleted file mode 100644 index 53918474..00000000 --- a/cde/programs/localized/C/types/libreoffice-writer.dt +++ /dev/null @@ -1,146 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION libreoffice-writer -{ - LABEL Writer - TYPE COMMAND - EXEC_STRING libreoffice --writer "%Arg_1%" - ICON libreoffice-writer - WINDOW_TYPE NO_STDIO - DESCRIPTION Libre Office Writer -} - -DATA_ATTRIBUTES libreoffice-writer_FILE_1 -{ - ACTIONS Open,Print - ICON libreoffice-writer - DESCRIPTION Open Document Text file. -} - -DATA_CRITERIA libreoffice-writer_FILE_1A -{ - DATA_ATTRIBUTES_NAME libreoffice-writer_FILE_1 - MODE !d - PATH_PATTERN *.odt -} - -ACTION Open -{ - ARG_TYPE libreoffice-writer_FILE_1 - TYPE MAP - MAP_ACTION libreoffice-writer - LABEL Open -} - -ACTION libreoffice-writer_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-writer_FILE_1 - TYPE MAP - MAP_ACTION libreoffice-writer_FILE_1_PRINT - LABEL Print -} - - -DATA_ATTRIBUTES libreoffice-writer_FILE_4 -{ - ACTIONS Open,Print - ICON libreoffice-writer -} - -DATA_CRITERIA libreoffice-writer_FILE_4A -{ - DATA_ATTRIBUTES_NAME libreoffice-writer_FILE_4 - MODE !d - PATH_PATTERN *.doc -} - -ACTION Open -{ - ARG_TYPE libreoffice-writer_FILE_4 - TYPE MAP - MAP_ACTION libreoffice-writer - LABEL Open -} - -ACTION libreoffice-writer_FILE_4_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-writer_FILE_4 - TYPE MAP - MAP_ACTION libreoffice-writer_FILE_4_PRINT - LABEL Print -} - - -DATA_ATTRIBUTES libreoffice-writer_FILE_6 -{ - ACTIONS Open,Print - ICON libreoffice-writer - DESCRIPTION New Microsoft Format. -} - -DATA_CRITERIA libreoffice-writer_FILE_6A -{ - DATA_ATTRIBUTES_NAME libreoffice-writer_FILE_6 - MODE !d - PATH_PATTERN *.docx -} - -ACTION Open -{ - ARG_TYPE libreoffice-writer_FILE_6 - TYPE MAP - MAP_ACTION libreoffice-writer - LABEL Open -} - -ACTION libreoffice-writer_FILE_6_PRINT -{ - TYPE COMMAND - EXEC_STRING libreoffice -p "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE libreoffice-writer_FILE_6 - TYPE MAP - MAP_ACTION libreoffice-writer_FILE_6_PRINT - LABEL Print -} - diff --git a/cde/programs/localized/C/types/mgv.dt b/cde/programs/localized/C/types/mgv.dt deleted file mode 100644 index 98518038..00000000 --- a/cde/programs/localized/C/types/mgv.dt +++ /dev/null @@ -1,71 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION mgv -{ - LABEL mgv - TYPE COMMAND - EXEC_STRING mgv "%Arg_1%" - ICON mgv - WINDOW_TYPE NO_STDIO - DESCRIPTION mgv, the Motif version of gv, is the default ps viewer. -} - -#DATA_ATTRIBUTES mgv_FILE_1 -#{ -# ACTIONS Open,Print -# DESCRIPTION Postscript files open with mgv. -#} -# -#DATA_CRITERIA mgv_FILE_1A -#{ -# DATA_ATTRIBUTES_NAME mgv_FILE_1 -# MODE !d -# PATH_PATTERN *.ps -#} -# -#ACTION Open -#{ -# ARG_TYPE mgv_FILE_1 -# TYPE MAP -# MAP_ACTION mgv -# LABEL Open -#} -# -#ACTION mgv_FILE_1_PRINT -#{ -# TYPE COMMAND -# EXEC_STRING lpr "%Arg_1%" -# WINDOW_TYPE NO_STDIO -#} -# -#ACTION Print -#{ -# ARG_TYPE mgv_FILE_1 -# TYPE MAP -# MAP_ACTION mgv_FILE_1_PRINT -# LABEL Print -#} - - diff --git a/cde/programs/localized/C/types/nedit.dt b/cde/programs/localized/C/types/nedit.dt deleted file mode 100644 index fff1cc48..00000000 --- a/cde/programs/localized/C/types/nedit.dt +++ /dev/null @@ -1,35 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION nedit -{ - LABEL Nedit - TYPE COMMAND - EXEC_STRING nedit "%Arg_1%" - ICON nedit - WINDOW_TYPE NO_STDIO - DESCRIPTION Nedit is a Motif Editor. -} - - diff --git a/cde/programs/localized/C/types/nxclient.dt b/cde/programs/localized/C/types/nxclient.dt deleted file mode 100644 index 7d119997..00000000 --- a/cde/programs/localized/C/types/nxclient.dt +++ /dev/null @@ -1,56 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION nxclient -{ - LABEL nxclient - TYPE COMMAND - EXEC_STRING nxclient %Arg_1% - ICON nxclient-icon - WINDOW_TYPE NO_STDIO - DESCRIPTION Remote desktop access via NXCLIENT. -} - -DATA_ATTRIBUTES nxclient_FILE_1 -{ - ACTIONS Open - ICON nxclient-desktop - DESCRIPTION nxs files open with NXCLIENT. -} - -DATA_CRITERIA nxclient_FILE_1A -{ - DATA_ATTRIBUTES_NAME nxclient_FILE_1 - MODE !d - PATH_PATTERN *.nxs -} - -ACTION Open -{ - ARG_TYPE nxclient_FILE_1 - TYPE MAP - MAP_ACTION nxclient - LABEL Open -} - diff --git a/cde/programs/localized/C/types/okular.dt b/cde/programs/localized/C/types/okular.dt deleted file mode 100644 index 220ec61a..00000000 --- a/cde/programs/localized/C/types/okular.dt +++ /dev/null @@ -1,71 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION okular -{ - LABEL okular - TYPE COMMAND - EXEC_STRING okular "%Arg_1%" - ICON okular - WINDOW_TYPE NO_STDIO - DESCRIPTION okular pdf viewer. -} - -DATA_ATTRIBUTES okular_FILE_1 -{ - ACTIONS Open,Print - DESCRIPTION Open image in okular. -} - -DATA_CRITERIA okular_FILE_1A -{ - DATA_ATTRIBUTES_NAME okular_FILE_1 - MODE !d - PATH_PATTERN *.pdf -} - -ACTION Open -{ - ARG_TYPE okular_FILE_1 - TYPE MAP - MAP_ACTION okular - LABEL Open -} - -ACTION okular_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING okular %Arg_1% - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE okular_FILE_1 - TYPE MAP - MAP_ACTION okular_FILE_1_PRINT - LABEL Print -} - - diff --git a/cde/programs/localized/C/types/pavucontrol.dt b/cde/programs/localized/C/types/pavucontrol.dt deleted file mode 100644 index a92eba86..00000000 --- a/cde/programs/localized/C/types/pavucontrol.dt +++ /dev/null @@ -1,35 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION pavucontrol -{ - LABEL PulseAudioCtrl - TYPE COMMAND - EXEC_STRING pavucontrol - ICON Dtaudio - WINDOW_TYPE NO_STDIO - DESCRIPTION Control Pulse Audio. -} - - diff --git a/cde/programs/localized/C/types/pgadmin.dt b/cde/programs/localized/C/types/pgadmin.dt deleted file mode 100644 index ba37a38d..00000000 --- a/cde/programs/localized/C/types/pgadmin.dt +++ /dev/null @@ -1,33 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION pgadmin -{ - LABEL pgadmin - TYPE COMMAND - EXEC_STRING pgadmin %Arg_1% - ICON pgadmin - WINDOW_TYPE NO_STDIO -} - diff --git a/cde/programs/localized/C/types/powermanga.dt b/cde/programs/localized/C/types/powermanga.dt deleted file mode 100644 index 7a74f6e6..00000000 --- a/cde/programs/localized/C/types/powermanga.dt +++ /dev/null @@ -1,9 +0,0 @@ -ACTION powermanga -{ - LABEL powermanga - TYPE COMMAND - EXEC_STRING powermanga - ICON powermanga - WINDOW_TYPE NO_STDIO -} - diff --git a/cde/programs/localized/C/types/pychess.dt b/cde/programs/localized/C/types/pychess.dt deleted file mode 100644 index b3489356..00000000 --- a/cde/programs/localized/C/types/pychess.dt +++ /dev/null @@ -1,9 +0,0 @@ -ACTION pychess -{ - LABEL pychess - TYPE COMMAND - EXEC_STRING pychess - ICON pychess - WINDOW_TYPE NO_STDIO -} - diff --git a/cde/programs/localized/C/types/rhythmbox.dt b/cde/programs/localized/C/types/rhythmbox.dt deleted file mode 100644 index 6dcb07a9..00000000 --- a/cde/programs/localized/C/types/rhythmbox.dt +++ /dev/null @@ -1,78 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION rhythmbox -{ - LABEL rhythmbox - TYPE COMMAND - EXEC_STRING rhythmbox %Arg_1% - ICON rhythmbox - WINDOW_TYPE NO_STDIO - DESCRIPTION rhythmbox: music player. -} - -#DATA_ATTRIBUTES vlc_FILE_1 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION MP3 files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_1A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_1 -# MODE !d -# PATH_PATTERN *.mp3 -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_1 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} -# -#DATA_ATTRIBUTES vlc_FILE_3 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION OGG files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_3A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_3 -# MODE !d -# PATH_PATTERN *.ogg -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_3 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} - diff --git a/cde/programs/localized/C/types/rosegarden.dt b/cde/programs/localized/C/types/rosegarden.dt deleted file mode 100644 index 6d26c092..00000000 --- a/cde/programs/localized/C/types/rosegarden.dt +++ /dev/null @@ -1,78 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION rosegarden -{ - LABEL rosegarden - TYPE COMMAND - EXEC_STRING rosegarden %Arg_1% - ICON rosegarden - WINDOW_TYPE NO_STDIO - DESCRIPTION rosegarden: Create music. -} - -#DATA_ATTRIBUTES vlc_FILE_1 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION MP3 files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_1A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_1 -# MODE !d -# PATH_PATTERN *.mp3 -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_1 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} -# -#DATA_ATTRIBUTES vlc_FILE_3 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION OGG files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_3A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_3 -# MODE !d -# PATH_PATTERN *.ogg -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_3 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} - diff --git a/cde/programs/localized/C/types/skype.dt b/cde/programs/localized/C/types/skype.dt deleted file mode 100644 index 3ef5443c..00000000 --- a/cde/programs/localized/C/types/skype.dt +++ /dev/null @@ -1,33 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION skype -{ - LABEL skype - TYPE COMMAND - EXEC_STRING skype %Arg_1% - ICON skype - WINDOW_TYPE NO_STDIO - DESCRIPTION Talk through SKYPE. -} diff --git a/cde/programs/localized/C/types/sound-juicer.dt b/cde/programs/localized/C/types/sound-juicer.dt deleted file mode 100644 index e9d60a6a..00000000 --- a/cde/programs/localized/C/types/sound-juicer.dt +++ /dev/null @@ -1,78 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION sound-juicer -{ - LABEL sound-juicer - TYPE COMMAND - EXEC_STRING sound-juicer "%Arg_1%" - ICON sound-juicer - WINDOW_TYPE NO_STDIO - DESCRIPTION sound-juicer: Rip audio CDs. -} - -#DATA_ATTRIBUTES vlc_FILE_1 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION MP3 files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_1A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_1 -# MODE !d -# PATH_PATTERN *.mp3 -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_1 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} -# -#DATA_ATTRIBUTES vlc_FILE_3 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION OGG files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_3A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_3 -# MODE !d -# PATH_PATTERN *.ogg -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_3 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} - diff --git a/cde/programs/localized/C/types/stellarium.dt b/cde/programs/localized/C/types/stellarium.dt deleted file mode 100644 index 38aa11e1..00000000 --- a/cde/programs/localized/C/types/stellarium.dt +++ /dev/null @@ -1,33 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION stellarium -{ - LABEL stellarium - TYPE COMMAND - EXEC_STRING stellarium %Arg_1% - ICON stellarium - WINDOW_TYPE NO_STDIO - DESCRIPTION stellarium is an astronomy program. -} diff --git a/cde/programs/localized/C/types/supertux.dt b/cde/programs/localized/C/types/supertux.dt deleted file mode 100644 index 3458a551..00000000 --- a/cde/programs/localized/C/types/supertux.dt +++ /dev/null @@ -1,9 +0,0 @@ -ACTION supertux -{ - LABEL supertux - TYPE COMMAND - EXEC_STRING supertux - ICON supertux - WINDOW_TYPE NO_STDIO -} - diff --git a/cde/programs/localized/C/types/synaptic.dt b/cde/programs/localized/C/types/synaptic.dt deleted file mode 100644 index f525fb25..00000000 --- a/cde/programs/localized/C/types/synaptic.dt +++ /dev/null @@ -1,33 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION synaptic -{ - LABEL synaptic - TYPE COMMAND - EXEC_STRING synaptic %Arg_1% - ICON synaptic - WINDOW_TYPE NO_STDIO - DESCRIPTION synaptic: package manager. -} diff --git a/cde/programs/localized/C/types/thunderbird.dt b/cde/programs/localized/C/types/thunderbird.dt deleted file mode 100644 index ca432200..00000000 --- a/cde/programs/localized/C/types/thunderbird.dt +++ /dev/null @@ -1,58 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION thunderbird -{ - LABEL thunderbird - TYPE COMMAND - EXEC_STRING thunderbird %Arg_1% - ICON thunderbird - WINDOW_TYPE NO_STDIO - DESCRIPTION The THUNDERBIRD Mailer. -} - -DATA_ATTRIBUTES thunderbird_FILE_1 -{ - ACTIONS Open - ICON Dtmail - DESCRIPTION EML files open with THUNDERBIRD Mailer. -} - -DATA_CRITERIA thunderbird_FILE_1A -{ - DATA_ATTRIBUTES_NAME thunderbird_FILE_1 - MODE !d - PATH_PATTERN *.eml -} - -ACTION Open -{ - ARG_TYPE thunderbird_FILE_1 - TYPE MAP - MAP_ACTION thunderbird - LABEL Open -} - - - diff --git a/cde/programs/localized/C/types/tuxpaint.dt b/cde/programs/localized/C/types/tuxpaint.dt deleted file mode 100644 index 3ae6ba56..00000000 --- a/cde/programs/localized/C/types/tuxpaint.dt +++ /dev/null @@ -1,33 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION tuxpaint -{ - LABEL tuxpaint - TYPE COMMAND - EXEC_STRING tuxpaint %Arg_1% - ICON tuxpaint - WINDOW_TYPE NO_STDIO - DESCRIPTION tuxpaint is a paint program. -} diff --git a/cde/programs/localized/C/types/virtualbox.dt b/cde/programs/localized/C/types/virtualbox.dt deleted file mode 100644 index 6bbe0237..00000000 --- a/cde/programs/localized/C/types/virtualbox.dt +++ /dev/null @@ -1,78 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION virtualbox -{ - LABEL virtualbox - TYPE COMMAND - EXEC_STRING virtualbox %Arg_1% - ICON virtualbox - WINDOW_TYPE NO_STDIO - DESCRIPTION virtualbox: run OSes in a desktop window. -} - -#DATA_ATTRIBUTES vlc_FILE_1 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION MP3 files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_1A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_1 -# MODE !d -# PATH_PATTERN *.mp3 -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_1 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} -# -#DATA_ATTRIBUTES vlc_FILE_3 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION OGG files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_3A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_3 -# MODE !d -# PATH_PATTERN *.ogg -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_3 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} - diff --git a/cde/programs/localized/C/types/vlc.dt b/cde/programs/localized/C/types/vlc.dt deleted file mode 100644 index ff35da67..00000000 --- a/cde/programs/localized/C/types/vlc.dt +++ /dev/null @@ -1,123 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION vlc -{ - LABEL vlc - TYPE COMMAND - EXEC_STRING vlc "%Arg_1%" - ICON vlc - WINDOW_TYPE NO_STDIO - DESCRIPTION VLC Media Player -} - -DATA_ATTRIBUTES vlc_FILE_1 -{ - ACTIONS Open - ICON mp3 - DESCRIPTION MP3 files open with VLC Media Player. -} - -DATA_CRITERIA vlc_FILE_1A -{ - DATA_ATTRIBUTES_NAME vlc_FILE_1 - MODE !d - PATH_PATTERN *.mp3 -} - -ACTION Open -{ - ARG_TYPE vlc_FILE_1 - TYPE MAP - MAP_ACTION vlc - LABEL Open -} - -DATA_ATTRIBUTES vlc_FILE_3 -{ - ACTIONS Open - ICON mp3 - DESCRIPTION OGG files open with VLC Media Player. -} - -DATA_CRITERIA vlc_FILE_3A -{ - DATA_ATTRIBUTES_NAME vlc_FILE_3 - MODE !d - PATH_PATTERN *.ogg -} - -ACTION Open -{ - ARG_TYPE vlc_FILE_3 - TYPE MAP - MAP_ACTION vlc - LABEL Open -} - - -DATA_ATTRIBUTES vlc_FILE_5 -{ - ACTIONS Open - ICON video - DESCRIPTION mp4 files open with VLC Media Player. -} - -DATA_CRITERIA vlc_FILE_5A -{ - DATA_ATTRIBUTES_NAME vlc_FILE_5 - MODE !d - PATH_PATTERN *.mp4 -} - -ACTION Open -{ - ARG_TYPE vlc_FILE_5 - TYPE MAP - MAP_ACTION vlc - LABEL Open -} - -DATA_ATTRIBUTES vlc_FILE_7 -{ - ACTIONS Open - ICON video - DESCRIPTION avi files open with VLC Media Player. -} - -DATA_CRITERIA vlc_FILE_7A -{ - DATA_ATTRIBUTES_NAME vlc_FILE_7 - MODE !d - PATH_PATTERN *.avi -} - -ACTION Open -{ - ARG_TYPE vlc_FILE_7 - TYPE MAP - MAP_ACTION vlc - LABEL Open -} - diff --git a/cde/programs/localized/C/types/wicd.dt b/cde/programs/localized/C/types/wicd.dt deleted file mode 100644 index 561473c5..00000000 --- a/cde/programs/localized/C/types/wicd.dt +++ /dev/null @@ -1,33 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION wicd -{ - LABEL wicd - TYPE COMMAND - EXEC_STRING wicd-gtk %Arg_1% - ICON wicd - WINDOW_TYPE NO_STDIO - DESCRIPTION wicd: configure your ethernet and wifi connections. -} diff --git a/cde/programs/localized/C/types/xboard.dt b/cde/programs/localized/C/types/xboard.dt deleted file mode 100644 index eb924f94..00000000 --- a/cde/programs/localized/C/types/xboard.dt +++ /dev/null @@ -1,9 +0,0 @@ -ACTION xboard -{ - LABEL xboard - TYPE COMMAND - EXEC_STRING xboard - ICON xboard - WINDOW_TYPE NO_STDIO -} - diff --git a/cde/programs/localized/C/types/xdvi.dt b/cde/programs/localized/C/types/xdvi.dt deleted file mode 100644 index b3335a5b..00000000 --- a/cde/programs/localized/C/types/xdvi.dt +++ /dev/null @@ -1,72 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION xdvi -{ - LABEL xdvi - TYPE COMMAND - EXEC_STRING xdvi "%Arg_1%" - ICON dvi - WINDOW_TYPE NO_STDIO - DESCRIPTION xdvi is the default dvi viewer. -} - -DATA_ATTRIBUTES xdvi_FILE_1 -{ - ACTIONS Open,Print - ICON dvi - DESCRIPTION DVI files open with xdvi. -} - -DATA_CRITERIA xdvi_FILE_1A -{ - DATA_ATTRIBUTES_NAME xdvi_FILE_1 - MODE !d - PATH_PATTERN *.dvi -} - -ACTION Open -{ - ARG_TYPE xdvi_FILE_1 - TYPE MAP - MAP_ACTION xdvi - LABEL Open -} - -ACTION xdvi_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING dvips "%Arg_1%" -o - | lpr - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE xdvi_FILE_1 - TYPE MAP - MAP_ACTION xdvi_FILE_1_PRINT - LABEL Print -} - - diff --git a/cde/programs/localized/C/types/xine.dt b/cde/programs/localized/C/types/xine.dt deleted file mode 100644 index 79443214..00000000 --- a/cde/programs/localized/C/types/xine.dt +++ /dev/null @@ -1,78 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION xine -{ - LABEL xine - TYPE COMMAND - EXEC_STRING xine "%Arg_1%" - ICON xine - WINDOW_TYPE NO_STDIO - DESCRIPTION xine: movie player. -} - -#DATA_ATTRIBUTES vlc_FILE_1 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION MP3 files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_1A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_1 -# MODE !d -# PATH_PATTERN *.mp3 -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_1 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} -# -#DATA_ATTRIBUTES vlc_FILE_3 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION OGG files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_3A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_3 -# MODE !d -# PATH_PATTERN *.ogg -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_3 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} - diff --git a/cde/programs/localized/C/types/xournal.dt b/cde/programs/localized/C/types/xournal.dt deleted file mode 100644 index 7636f505..00000000 --- a/cde/programs/localized/C/types/xournal.dt +++ /dev/null @@ -1,78 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 4747 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION xournal -{ - LABEL xournal - TYPE COMMAND - EXEC_STRING xournal "%Arg_1%" - ICON xournal - WINDOW_TYPE NO_STDIO - DESCRIPTION xournal: pdf presentations with on screen writing support. -} - -#DATA_ATTRIBUTES vlc_FILE_1 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION MP3 files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_1A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_1 -# MODE !d -# PATH_PATTERN *.mp3 -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_1 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} -# -#DATA_ATTRIBUTES vlc_FILE_3 -#{ -# ACTIONS Open -# ICON mp3 -# DESCRIPTION OGG files open with VLC Media Player. -#} -# -#DATA_CRITERIA vlc_FILE_3A -#{ -# DATA_ATTRIBUTES_NAME vlc_FILE_3 -# MODE !d -# PATH_PATTERN *.ogg -#} -# -#ACTION Open -#{ -# ARG_TYPE vlc_FILE_3 -# TYPE MAP -# MAP_ACTION vlc -# LABEL Open -#} - diff --git a/cde/programs/localized/C/types/xpdf.dt b/cde/programs/localized/C/types/xpdf.dt deleted file mode 100644 index 92b721c4..00000000 --- a/cde/programs/localized/C/types/xpdf.dt +++ /dev/null @@ -1,72 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION xpdf -{ - LABEL xpdf - TYPE COMMAND - EXEC_STRING xpdf "%Arg_1%" - ICON xpdf - WINDOW_TYPE NO_STDIO - DESCRIPTION Xpdf is the default pdf viewer. -} - -DATA_ATTRIBUTES xpdf_FILE_1 -{ - ACTIONS Open,Print - ICON acroread - DESCRIPTION PDF files open with xpdf. -} - -DATA_CRITERIA xpdf_FILE_1A -{ - DATA_ATTRIBUTES_NAME xpdf_FILE_1 - MODE !d - PATH_PATTERN *.pdf -} - -ACTION Open -{ - ARG_TYPE xpdf_FILE_1 - TYPE MAP - MAP_ACTION xpdf - LABEL Open -} - -ACTION xpdf_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING lpr "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE xpdf_FILE_1 - TYPE MAP - MAP_ACTION xpdf_FILE_1_PRINT - LABEL Print -} - - diff --git a/cde/programs/localized/C/types/xv.dt b/cde/programs/localized/C/types/xv.dt deleted file mode 100644 index 8ae22ac5..00000000 --- a/cde/programs/localized/C/types/xv.dt +++ /dev/null @@ -1,114 +0,0 @@ -###################################################################### -# -# Common Desktop Environment (CDE) -# -# Action and DataType Definition File -# -# Generated by the CreateAction tool -# -# $Revision: 1.0 -# -# $KEY: 108 -# -###################################################################### -# -# WARNING: -# -# This file was generated by the CDE CreateAction tool. -# If this file is modified by some other tool, such as vi, -# the CreateAction tool will no longer be able to load and -# update this file. For this reason, changes to this file -# should be handled through CreateAction whenever possible. -# -###################################################################### - -ACTION xv -{ - LABEL xv - TYPE COMMAND - EXEC_STRING xv "%Arg_1%" - ICON xv - WINDOW_TYPE NO_STDIO - DESCRIPTION xv image viewer. -} - -DATA_ATTRIBUTES xv_FILE_1 -{ - ACTIONS Open,Print - ICON xv - DESCRIPTION Open image in xv. -} - -DATA_CRITERIA xv_FILE_1A -{ - DATA_ATTRIBUTES_NAME xv_FILE_1 - MODE !d - PATH_PATTERN *.jpg -} - -ACTION Open -{ - ARG_TYPE xv_FILE_1 - TYPE MAP - MAP_ACTION xv - LABEL Open -} - -ACTION xv_FILE_1_PRINT -{ - TYPE COMMAND - EXEC_STRING xv "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE xv_FILE_1 - TYPE MAP - MAP_ACTION xv_FILE_1_PRINT - LABEL Print -} - - - -#### -DATA_ATTRIBUTES xv_FILE_3 -{ - ACTIONS Open,Print - ICON xv - DESCRIPTION Open image in xv. -} - -DATA_CRITERIA xv_FILE_3A -{ - DATA_ATTRIBUTES_NAME xv_FILE_3 - MODE !d - PATH_PATTERN *.png -} - -ACTION Open -{ - ARG_TYPE xv_FILE_3 - TYPE MAP - MAP_ACTION xv - LABEL Open -} - -ACTION xv_FILE_3_PRINT -{ - TYPE COMMAND - EXEC_STRING xv "%Arg_1%" - WINDOW_TYPE NO_STDIO -} - -ACTION Print -{ - ARG_TYPE xv_FILE_3 - TYPE MAP - MAP_ACTION xv_FILE_3_PRINT - LABEL Print -} - - - - diff --git a/cde/programs/localized/templates/types.tmpl b/cde/programs/localized/templates/types.tmpl index 8db1bbbb..29bd3cae 100644 --- a/cde/programs/localized/templates/types.tmpl +++ b/cde/programs/localized/templates/types.tmpl @@ -29,7 +29,11 @@ OBJS1 = \ dtbuilder.dt \ miscActions.dt \ miscImages.dt \ - IconBrowse.dt + IconBrowse.dt \ + DisplayImage.dt \ + DisplayPDF.dt \ + DisplayVideo.dt \ + DisplayPS.dt OBJS = $(OBJS1) @@ -74,6 +78,76 @@ LinkFile(miscActions.dt.nls,$(CDESRC)/types/miscActions.dt) LinkFile(miscImages.dt.nls,$(CDESRC)/types/miscImages.dt) LinkFile(IconBrowse.dt.nls,$(CDESRC)/types/IconBrowse.dt) +LinkFile(DisplayImage.dt.nls,$(CDESRC)/types/DisplayImage.dt) +LinkFile(DisplayPDF.dt.nls,$(CDESRC)/types/DisplayPDF.dt) +LinkFile(DisplayVideo.dt.nls,$(CDESRC)/types/DisplayVideo.dt) +LinkFile(DisplayPS.dt.nls,$(CDESRC)/types/DisplayPS.dt) +LinkFile(acroread.dt.nls,$(CDESRC)/types/acroread.dt) +LinkFile(videoTypes.dt.nls,$(CDESRC)/types/videoTypes.dt) +LinkFile(amarok.dt.nls,$(CDESRC)/types/amarok.dt) +LinkFile(brasero.dt.nls,$(CDESRC)/types/brasero.dt) +LinkFile(caja.dt.nls,$(CDESRC)/types/caja.dt) +LinkFile(chromium.dt.nls,$(CDESRC)/types/chromium.dt) +LinkFile(dreamchess.dt.nls,$(CDESRC)/types/dreamchess.dt) +LinkFile(eboard.dt.nls,$(CDESRC)/types/eboard.dt) +LinkFile(Education.dt.nls,$(CDESRC)/types/Education.dt) +LinkFile(emacs.dt.nls,$(CDESRC)/types/emacs.dt) +LinkFile(engrampa.dt.nls,$(CDESRC)/types/engrampa.dt) +LinkFile(file-roller.dt.nls,$(CDESRC)/types/file-roller.dt) +LinkFile(firefox.dt.nls,$(CDESRC)/types/firefox.dt) +LinkFile(firestarter.dt.nls,$(CDESRC)/types/firestarter.dt) +LinkFile(fontforge.dt.nls,$(CDESRC)/types/fontforge.dt) +LinkFile(Games.dt.nls,$(CDESRC)/types/Games.dt) +LinkFile(gcompris.dt.nls,$(CDESRC)/types/gcompris.dt) +LinkFile(geogebra.dt.nls,$(CDESRC)/types/geogebra.dt) +LinkFile(gimp.dt.nls,$(CDESRC)/types/gimp.dt) +LinkFile(Graphics.dt.nls,$(CDESRC)/types/Graphics.dt) +LinkFile(gv.dt.nls,$(CDESRC)/types/gv.dt) +LinkFile(inkscape.dt.nls,$(CDESRC)/types/inkscape.dt) +LinkFile(Internet.dt.nls,$(CDESRC)/types/Internet.dt) +LinkFile(k3b.dt.nls,$(CDESRC)/types/k3b.dt) +LinkFile(k9copy.dt.nls,$(CDESRC)/types/k9copy.dt) +LinkFile(kile.dt.nls,$(CDESRC)/types/kile.dt) +LinkFile(ktuberling.dt.nls,$(CDESRC)/types/ktuberling.dt) +LinkFile(lbreakout2.dt.nls,$(CDESRC)/types/lbreakout2.dt) +LinkFile(libreoffice-base.dt.nls,$(CDESRC)/types/libreoffice-base.dt) +LinkFile(libreoffice-calc.dt.nls,$(CDESRC)/types/libreoffice-calc.dt) +LinkFile(libreoffice-draw.dt.nls,$(CDESRC)/types/libreoffice-draw.dt) +LinkFile(libreoffice-impress.dt.nls,$(CDESRC)/types/libreoffice-impress.dt) +LinkFile(libreoffice-main.dt.nls,$(CDESRC)/types/libreoffice-main.dt) +LinkFile(libreoffice-math.dt.nls,$(CDESRC)/types/libreoffice-math.dt) +LinkFile(libreoffice-writer.dt.nls,$(CDESRC)/types/libreoffice-writer.dt) +LinkFile(Media_Tools.dt.nls,$(CDESRC)/types/Media_Tools.dt) +LinkFile(mgv.dt.nls,$(CDESRC)/types/mgv.dt) +LinkFile(nedit.dt.nls,$(CDESRC)/types/nedit.dt) +LinkFile(nxclient.dt.nls,$(CDESRC)/types/nxclient.dt) +LinkFile(Office.dt.nls,$(CDESRC)/types/Office.dt) +LinkFile(okular.dt.nls,$(CDESRC)/types/okular.dt) +LinkFile(pavucontrol.dt.nls,$(CDESRC)/types/pavucontrol.dt) +LinkFile(pgadmin.dt.nls,$(CDESRC)/types/pgadmin.dt) +LinkFile(powermanga.dt.nls,$(CDESRC)/types/powermanga.dt) +LinkFile(pychess.dt.nls,$(CDESRC)/types/pychess.dt) +LinkFile(rhythmbox.dt.nls,$(CDESRC)/types/rhythmbox.dt) +LinkFile(rosegarden.dt.nls,$(CDESRC)/types/rosegarden.dt) +LinkFile(skype.dt.nls,$(CDESRC)/types/skype.dt) +LinkFile(sound-juicer.dt.nls,$(CDESRC)/types/sound-juicer.dt) +LinkFile(stellarium.dt.nls,$(CDESRC)/types/stellarium.dt) +LinkFile(supertux.dt.nls,$(CDESRC)/types/supertux.dt) +LinkFile(synaptic.dt.nls,$(CDESRC)/types/synaptic.dt) +LinkFile(System.dt.nls,$(CDESRC)/types/System.dt) +LinkFile(TeX.dt.nls,$(CDESRC)/types/TeX.dt) +LinkFile(thunderbird.dt.nls,$(CDESRC)/types/thunderbird.dt) +LinkFile(tuxpaint.dt.nls,$(CDESRC)/types/tuxpaint.dt) +LinkFile(virtualbox.dt.nls,$(CDESRC)/types/virtualbox.dt) +LinkFile(vlc.dt.nls,$(CDESRC)/types/vlc.dt) +LinkFile(wicd.dt.nls,$(CDESRC)/types/wicd.dt) +LinkFile(xboard.dt.nls,$(CDESRC)/types/xboard.dt) +LinkFile(xdvi.dt.nls,$(CDESRC)/types/xdvi.dt) +LinkFile(xine.dt.nls,$(CDESRC)/types/xine.dt) +LinkFile(xournal.dt.nls,$(CDESRC)/types/xournal.dt) +LinkFile(xpdf.dt.nls,$(CDESRC)/types/xpdf.dt) +LinkFile(xv.dt.nls,$(CDESRC)/types/xv.dt) + #ifdef HPArchitecture LinkFile(hp.dt.nls,$(CDESRC)/types/hp.dt) #endif @@ -106,6 +180,76 @@ LinkFile(miscActions.dt.tmsg,_common.dt.tmsg) LinkFile(miscImages.dt.tmsg,_common.dt.tmsg) LinkFile(IconBrowse.dt.tmsg,_common.dt.tmsg) +LinkFile(DisplayImage.dt.tmsg,_common.dt.tmsg) +LinkFile(DisplayPDF.dt.tmsg,_common.dt.tmsg) +LinkFile(DisplayVideo.dt.tmsg,_common.dt.tmsg) +LinkFile(DisplayPS.dt.tmsg,_common.dt.tmsg) +LinkFile(acroread.dt.tmsg,_common.dt.tmsg) +LinkFile(videoTypes.dt.tmsg,_common.dt.tmsg) +LinkFile(amarok.dt.tmsg,_common.dt.tmsg) +LinkFile(brasero.dt.tmsg,_common.dt.tmsg) +LinkFile(caja.dt.tmsg,_common.dt.tmsg) +LinkFile(chromium.dt.tmsg,_common.dt.tmsg) +LinkFile(dreamchess.dt.tmsg,_common.dt.tmsg) +LinkFile(eboard.dt.tmsg,_common.dt.tmsg) +LinkFile(Education.dt.tmsg,_common.dt.tmsg) +LinkFile(emacs.dt.tmsg,_common.dt.tmsg) +LinkFile(engrampa.dt.tmsg,_common.dt.tmsg) +LinkFile(file-roller.dt.tmsg,_common.dt.tmsg) +LinkFile(firefox.dt.tmsg,_common.dt.tmsg) +LinkFile(firestarter.dt.tmsg,_common.dt.tmsg) +LinkFile(fontforge.dt.tmsg,_common.dt.tmsg) +LinkFile(Games.dt.tmsg,_common.dt.tmsg) +LinkFile(gcompris.dt.tmsg,_common.dt.tmsg) +LinkFile(geogebra.dt.tmsg,_common.dt.tmsg) +LinkFile(gimp.dt.tmsg,_common.dt.tmsg) +LinkFile(Graphics.dt.tmsg,_common.dt.tmsg) +LinkFile(gv.dt.tmsg,_common.dt.tmsg) +LinkFile(inkscape.dt.tmsg,_common.dt.tmsg) +LinkFile(Internet.dt.tmsg,_common.dt.tmsg) +LinkFile(k3b.dt.tmsg,_common.dt.tmsg) +LinkFile(k9copy.dt.tmsg,_common.dt.tmsg) +LinkFile(kile.dt.tmsg,_common.dt.tmsg) +LinkFile(ktuberling.dt.tmsg,_common.dt.tmsg) +LinkFile(lbreakout2.dt.tmsg,_common.dt.tmsg) +LinkFile(libreoffice-base.dt.tmsg,_common.dt.tmsg) +LinkFile(libreoffice-calc.dt.tmsg,_common.dt.tmsg) +LinkFile(libreoffice-draw.dt.tmsg,_common.dt.tmsg) +LinkFile(libreoffice-impress.dt.tmsg,_common.dt.tmsg) +LinkFile(libreoffice-main.dt.tmsg,_common.dt.tmsg) +LinkFile(libreoffice-math.dt.tmsg,_common.dt.tmsg) +LinkFile(libreoffice-writer.dt.tmsg,_common.dt.tmsg) +LinkFile(Media_Tools.dt.tmsg,_common.dt.tmsg) +LinkFile(mgv.dt.tmsg,_common.dt.tmsg) +LinkFile(nedit.dt.tmsg,_common.dt.tmsg) +LinkFile(nxclient.dt.tmsg,_common.dt.tmsg) +LinkFile(Office.dt.tmsg,_common.dt.tmsg) +LinkFile(okular.dt.tmsg,_common.dt.tmsg) +LinkFile(pavucontrol.dt.tmsg,_common.dt.tmsg) +LinkFile(pgadmin.dt.tmsg,_common.dt.tmsg) +LinkFile(powermanga.dt.tmsg,_common.dt.tmsg) +LinkFile(pychess.dt.tmsg,_common.dt.tmsg) +LinkFile(rhythmbox.dt.tmsg,_common.dt.tmsg) +LinkFile(rosegarden.dt.tmsg,_common.dt.tmsg) +LinkFile(skype.dt.tmsg,_common.dt.tmsg) +LinkFile(sound-juicer.dt.tmsg,_common.dt.tmsg) +LinkFile(stellarium.dt.tmsg,_common.dt.tmsg) +LinkFile(supertux.dt.tmsg,_common.dt.tmsg) +LinkFile(synaptic.dt.tmsg,_common.dt.tmsg) +LinkFile(System.dt.tmsg,_common.dt.tmsg) +LinkFile(TeX.dt.tmsg,_common.dt.tmsg) +LinkFile(thunderbird.dt.tmsg,_common.dt.tmsg) +LinkFile(tuxpaint.dt.tmsg,_common.dt.tmsg) +LinkFile(virtualbox.dt.tmsg,_common.dt.tmsg) +LinkFile(vlc.dt.tmsg,_common.dt.tmsg) +LinkFile(wicd.dt.tmsg,_common.dt.tmsg) +LinkFile(xboard.dt.tmsg,_common.dt.tmsg) +LinkFile(xdvi.dt.tmsg,_common.dt.tmsg) +LinkFile(xine.dt.tmsg,_common.dt.tmsg) +LinkFile(xournal.dt.tmsg,_common.dt.tmsg) +LinkFile(xpdf.dt.tmsg,_common.dt.tmsg) +LinkFile(xv.dt.tmsg,_common.dt.tmsg) + #ifdef HPArchitecture LinkFile(hp.dt.tmsg,_common.dt.tmsg) #endif @@ -139,6 +283,77 @@ DtstyleDescRule(miscActions.dt,miscActions.dt) DtstyleDescRule(miscImages.dt,miscImages.dt) DtstyleDescRule(IconBrowse.dt,IconBrowse.dt) +DtstyleDescRule(DisplayImage.dt,DisplayImage.dt) +DtstyleDescRule(DisplayPDF.dt,DisplayPDF.dt) +DtstyleDescRule(DisplayVideo.dt,DisplayVideo.dt) +DtstyleDescRule(DisplayPS.dt,DisplayPS.dt) +DtstyleDescRule(acroread.dt,acroread.dt) +DtstyleDescRule(videoTypes.dt,videoTypes.dt) +DtstyleDescRule(amarok.dt,amarok.dt) +DtstyleDescRule(brasero.dt,brasero.dt) +DtstyleDescRule(caja.dt,caja.dt) +DtstyleDescRule(chromium.dt,chromium.dt) +DtstyleDescRule(dreamchess.dt,dreamchess.dt) +DtstyleDescRule(eboard.dt,eboard.dt) +DtstyleDescRule(Education.dt,Education.dt) +DtstyleDescRule(emacs.dt,emacs.dt) +DtstyleDescRule(engrampa.dt,engrampa.dt) +DtstyleDescRule(file-roller.dt,file-roller.dt) +DtstyleDescRule(firefox.dt,firefox.dt) +DtstyleDescRule(firestarter.dt,firestarter.dt) +DtstyleDescRule(fontforge.dt,fontforge.dt) +DtstyleDescRule(Games.dt,Games.dt) +DtstyleDescRule(gcompris.dt,gcompris.dt) +DtstyleDescRule(geogebra.dt,geogebra.dt) +DtstyleDescRule(gimp.dt,gimp.dt) +DtstyleDescRule(Graphics.dt,Graphics.dt) +DtstyleDescRule(gv.dt,gv.dt) +DtstyleDescRule(inkscape.dt,inkscape.dt) +DtstyleDescRule(Internet.dt,Internet.dt) +DtstyleDescRule(k3b.dt,k3b.dt) +DtstyleDescRule(k9copy.dt,k9copy.dt) +DtstyleDescRule(kile.dt,kile.dt) +DtstyleDescRule(ktuberling.dt,ktuberling.dt) +DtstyleDescRule(lbreakout2.dt,lbreakout2.dt) +DtstyleDescRule(libreoffice-base.dt,libreoffice-base.dt) +DtstyleDescRule(libreoffice-calc.dt,libreoffice-calc.dt) +DtstyleDescRule(libreoffice-draw.dt,libreoffice-draw.dt) +DtstyleDescRule(libreoffice-impress.dt,libreoffice-impress.dt) +DtstyleDescRule(libreoffice-main.dt,libreoffice-main.dt) +DtstyleDescRule(libreoffice-math.dt,libreoffice-math.dt) +DtstyleDescRule(libreoffice-writer.dt,libreoffice-writer.dt) +DtstyleDescRule(Media_Tools.dt,Media_Tools.dt) +DtstyleDescRule(mgv.dt,mgv.dt) +DtstyleDescRule(nedit.dt,nedit.dt) +DtstyleDescRule(nxclient.dt,nxclient.dt) +DtstyleDescRule(Office.dt,Office.dt) +DtstyleDescRule(okular.dt,okular.dt) +DtstyleDescRule(pavucontrol.dt,pavucontrol.dt) +DtstyleDescRule(pgadmin.dt,pgadmin.dt) +DtstyleDescRule(powermanga.dt,powermanga.dt) +DtstyleDescRule(pychess.dt,pychess.dt) +DtstyleDescRule(rhythmbox.dt,rhythmbox.dt) +DtstyleDescRule(rosegarden.dt,rosegarden.dt) +DtstyleDescRule(skype.dt,skype.dt) +DtstyleDescRule(sound-juicer.dt,sound-juicer.dt) +DtstyleDescRule(stellarium.dt,stellarium.dt) +DtstyleDescRule(supertux.dt,supertux.dt) +DtstyleDescRule(synaptic.dt,synaptic.dt) +DtstyleDescRule(System.dt,System.dt) +DtstyleDescRule(TeX.dt,TeX.dt) +DtstyleDescRule(thunderbird.dt,thunderbird.dt) +DtstyleDescRule(tuxpaint.dt,tuxpaint.dt) +DtstyleDescRule(virtualbox.dt,virtualbox.dt) +DtstyleDescRule(vlc.dt,vlc.dt) +DtstyleDescRule(wicd.dt,wicd.dt) +DtstyleDescRule(xboard.dt,xboard.dt) +DtstyleDescRule(xdvi.dt,xdvi.dt) +DtstyleDescRule(xine.dt,xine.dt) +DtstyleDescRule(xournal.dt,xournal.dt) +DtstyleDescRule(xpdf.dt,xpdf.dt) +DtstyleDescRule(xv.dt,xv.dt) + + #ifdef HPArchitecture DtstyleDescRule(hp.dt,hp.dt) #endif diff --git a/cde/programs/types/DisplayImage.dt b/cde/programs/types/DisplayImage.dt new file mode 100644 index 00000000..b27a8d11 --- /dev/null +++ b/cde/programs/types/DisplayImage.dt @@ -0,0 +1,31 @@ +# CDE Action and DataType Definition File +# +# DisplayImage.dt - display an image file +# +#################################################################### + +ACTION DisplayImage +{ + LABEL Image Viewer + TYPE COMMAND + ICON camera + EXEC_HOST %DatabaseHost%, %LocalHost% + ARG_COUNT 0 + EXEC_STRING dtapp_vimage %(File)"Name of image file to display:"% + WINDOW_TYPE NO_STDIO + DESCRIPTION Display image +} + + +ACTION DisplayImage +{ + LABEL Image Editor + TYPE COMMAND + ICON camera + EXEC_HOST %DatabaseHost%, %LocalHost% + ARG_COUNT >0 + EXEC_STRING dtapp_vimage %(File)Args% + WINDOW_TYPE NO_STDIO + DESCRIPTION Edit image file. +} + diff --git a/cde/programs/types/DisplayPDF.dt b/cde/programs/types/DisplayPDF.dt new file mode 100644 index 00000000..110ecf9f --- /dev/null +++ b/cde/programs/types/DisplayPDF.dt @@ -0,0 +1,31 @@ +# CDE Action and DataType Definition File +# +# DisplayPDF.dt - display a PDF file +# +#################################################################### + +ACTION DisplayPDF +{ + LABEL PDF Viewer + TYPE COMMAND + ICON camera + EXEC_HOST %DatabaseHost%, %LocalHost% + ARG_COUNT 0 + EXEC_STRING dtapp_vpdf %(File)"Name of PDF file to display:"% + WINDOW_TYPE NO_STDIO + DESCRIPTION Display image +} + + +ACTION DisplayPDF +{ + LABEL PDF Editor + TYPE COMMAND + ICON camera + EXEC_HOST %DatabaseHost%, %LocalHost% + ARG_COUNT >0 + EXEC_STRING dtapp_vpdf %(File)Args% + WINDOW_TYPE NO_STDIO + DESCRIPTION Edit image file. +} + diff --git a/cde/programs/types/DisplayPS.dt b/cde/programs/types/DisplayPS.dt new file mode 100644 index 00000000..9bc825ad --- /dev/null +++ b/cde/programs/types/DisplayPS.dt @@ -0,0 +1,31 @@ +# CDE Action and DataType Definition File +# +# DisplayPS.dt - display a PS file +# +#################################################################### + +ACTION DisplayPS +{ + LABEL PS Viewer + TYPE COMMAND + ICON camera + EXEC_HOST %DatabaseHost%, %LocalHost% + ARG_COUNT 0 + EXEC_STRING dtapp_vps %(File)"Name of PS file to display:"% + WINDOW_TYPE NO_STDIO + DESCRIPTION Display image +} + + +ACTION DisplayPS +{ + LABEL PS Editor + TYPE COMMAND + ICON camera + EXEC_HOST %DatabaseHost%, %LocalHost% + ARG_COUNT >0 + EXEC_STRING dtapp_vps %(File)Args% + WINDOW_TYPE NO_STDIO + DESCRIPTION Edit image file. +} + diff --git a/cde/programs/types/DisplayVideo.dt b/cde/programs/types/DisplayVideo.dt new file mode 100644 index 00000000..9ce561da --- /dev/null +++ b/cde/programs/types/DisplayVideo.dt @@ -0,0 +1,31 @@ +# CDE Action and DataType Definition File +# +# DisplayVideo.dt - display a video file +# +#################################################################### + +ACTION DisplayVideo +{ + LABEL Video Viewer + TYPE COMMAND + ICON video + EXEC_HOST %DatabaseHost%, %LocalHost% + ARG_COUNT 0 + EXEC_STRING dtapp_vvideo %(File)"Name of video file to display:"% + WINDOW_TYPE NO_STDIO + DESCRIPTION Play video file +} + + +ACTION DisplayVideo +{ + LABEL Video Editor + TYPE COMMAND + ICON video + EXEC_HOST %DatabaseHost%, %LocalHost% + ARG_COUNT >0 + EXEC_STRING dtapp_vvideo %(File)Args% + WINDOW_TYPE NO_STDIO + DESCRIPTION Play video file. +} + diff --git a/cde/programs/types/Education.dt b/cde/programs/types/Education.dt new file mode 100644 index 00000000..1da772b2 --- /dev/null +++ b/cde/programs/types/Education.dt @@ -0,0 +1,29 @@ +DATA_ATTRIBUTES EducationAppgroup +{ + ACTIONS OpenInPlace,OpenNewView + LABEL Education + ICON DtEducation + DESCRIPTION Education Applications. +} + +DATA_CRITERIA EducationAppgroupCriteria1 +{ + DATA_ATTRIBUTES_NAME EducationAppgroup + LABEL Education + MODE d + PATH_PATTERN */appmanager/*/Education +} + +ACTION Open +{ + ARG_TYPE EducationAppgroup + TYPE MAP + MAP_ACTION OpenAppGroup +} + +ACTION Print +{ + ARG_TYPE EducationAppgroup + TYPE MAP + MAP_ACTION PrintAppGroup +} diff --git a/cde/programs/types/Games.dt b/cde/programs/types/Games.dt new file mode 100644 index 00000000..5312bea3 --- /dev/null +++ b/cde/programs/types/Games.dt @@ -0,0 +1,29 @@ +DATA_ATTRIBUTES GamesAppgroup +{ + ACTIONS OpenInPlace,OpenNewView + LABEL Games + ICON DtGamesCards + DESCRIPTION Collection of Games. +} + +DATA_CRITERIA GamesAppgroupCriteria1 +{ + DATA_ATTRIBUTES_NAME GamesAppgroup + LABEL Games + MODE d + PATH_PATTERN */appmanager/*/Games +} + +ACTION Open +{ + ARG_TYPE GamesAppgroup + TYPE MAP + MAP_ACTION OpenAppGroup +} + +ACTION Print +{ + ARG_TYPE GamesAppgroup + TYPE MAP + MAP_ACTION PrintAppGroup +} diff --git a/cde/programs/types/Graphics.dt b/cde/programs/types/Graphics.dt new file mode 100644 index 00000000..65da1798 --- /dev/null +++ b/cde/programs/types/Graphics.dt @@ -0,0 +1,29 @@ +DATA_ATTRIBUTES GraphicsAppgroup +{ + ACTIONS OpenInPlace,OpenNewView + LABEL Graphics + ICON DtGraphics + DESCRIPTION Applications for Graphics. +} + +DATA_CRITERIA GraphicsAppgroupCriteria1 +{ + DATA_ATTRIBUTES_NAME GraphicsAppgroup + LABEL Graphics + MODE d + PATH_PATTERN */appmanager/*/Graphics +} + +ACTION Open +{ + ARG_TYPE GraphicsAppgroup + TYPE MAP + MAP_ACTION OpenAppGroup +} + +ACTION Print +{ + ARG_TYPE GraphicsAppgroup + TYPE MAP + MAP_ACTION PrintAppGroup +} diff --git a/cde/programs/types/Internet.dt b/cde/programs/types/Internet.dt new file mode 100644 index 00000000..3ba68943 --- /dev/null +++ b/cde/programs/types/Internet.dt @@ -0,0 +1,29 @@ +DATA_ATTRIBUTES InternetAppgroup +{ + ACTIONS OpenInPlace,OpenNewView + LABEL Internet + ICON SDtwebbr + DESCRIPTION Applications for Internet: Browsers, Mailers etc. +} + +DATA_CRITERIA InternetAppgroupCriteria1 +{ + DATA_ATTRIBUTES_NAME InternetAppgroup + LABEL Internet + MODE d + PATH_PATTERN */appmanager/*/Internet +} + +ACTION Open +{ + ARG_TYPE InternetAppgroup + TYPE MAP + MAP_ACTION OpenAppGroup +} + +ACTION Print +{ + ARG_TYPE InternetAppgroup + TYPE MAP + MAP_ACTION PrintAppGroup +} diff --git a/cde/programs/types/Media_Tools.dt b/cde/programs/types/Media_Tools.dt new file mode 100644 index 00000000..287bf937 --- /dev/null +++ b/cde/programs/types/Media_Tools.dt @@ -0,0 +1,29 @@ +DATA_ATTRIBUTES Media_ToolsAppgroup +{ + ACTIONS OpenInPlace,OpenNewView + LABEL Sound_and_Video + ICON Dtapplications-multimedia + DESCRIPTION Test DOC +} + +DATA_CRITERIA Media_ToolsAppgroupCriteria1 +{ + DATA_ATTRIBUTES_NAME Media_ToolsAppgroup + LABEL Sound_and_Video + MODE d + PATH_PATTERN */appmanager/*/Media_Tools +} + +ACTION Open +{ + ARG_TYPE Media_ToolsAppgroup + TYPE MAP + MAP_ACTION OpenAppGroup +} + +ACTION Print +{ + ARG_TYPE Media_ToolsAppgroup + TYPE MAP + MAP_ACTION PrintAppGroup +} diff --git a/cde/programs/types/Office.dt b/cde/programs/types/Office.dt new file mode 100644 index 00000000..b93b99c9 --- /dev/null +++ b/cde/programs/types/Office.dt @@ -0,0 +1,29 @@ +DATA_ATTRIBUTES OfficeAppgroup +{ + ACTIONS OpenInPlace,OpenNewView + LABEL Office + ICON DtOffice + DESCRIPTION Office Tools. +} + +DATA_CRITERIA OfficeAppgroupCriteria1 +{ + DATA_ATTRIBUTES_NAME OfficeAppgroup + LABEL Office + MODE d + PATH_PATTERN */appmanager/*/Office +} + +ACTION Open +{ + ARG_TYPE OfficeAppgroup + TYPE MAP + MAP_ACTION OpenAppGroup +} + +ACTION Print +{ + ARG_TYPE OfficeAppgroup + TYPE MAP + MAP_ACTION PrintAppGroup +} diff --git a/cde/programs/types/System.dt b/cde/programs/types/System.dt new file mode 100644 index 00000000..5fa7a86a --- /dev/null +++ b/cde/programs/types/System.dt @@ -0,0 +1,29 @@ +DATA_ATTRIBUTES SystemAppgroup +{ + ACTIONS OpenInPlace,OpenNewView + LABEL System + ICON DtSystem + DESCRIPTION System Tools. +} + +DATA_CRITERIA SystemAppgroupCriteria1 +{ + DATA_ATTRIBUTES_NAME SystemAppgroup + LABEL System + MODE d + PATH_PATTERN */appmanager/*/System +} + +ACTION Open +{ + ARG_TYPE SystemAppgroup + TYPE MAP + MAP_ACTION OpenAppGroup +} + +ACTION Print +{ + ARG_TYPE SystemAppgroup + TYPE MAP + MAP_ACTION PrintAppGroup +} diff --git a/cde/programs/types/TeX.dt b/cde/programs/types/TeX.dt new file mode 100644 index 00000000..389f92c9 --- /dev/null +++ b/cde/programs/types/TeX.dt @@ -0,0 +1,29 @@ +DATA_ATTRIBUTES TeXAppgroup +{ + ACTIONS OpenInPlace,OpenNewView + LABEL TeX + ICON TeXGroup + DESCRIPTION TeX Applications. +} + +DATA_CRITERIA TeXAppgroupCriteria1 +{ + DATA_ATTRIBUTES_NAME TeXAppgroup + LABEL TeX + MODE d + PATH_PATTERN */appmanager/*/TeX +} + +ACTION Open +{ + ARG_TYPE TeXAppgroup + TYPE MAP + MAP_ACTION OpenAppGroup +} + +ACTION Print +{ + ARG_TYPE TeXAppgroup + TYPE MAP + MAP_ACTION PrintAppGroup +} diff --git a/cde/programs/types/acroread.dt b/cde/programs/types/acroread.dt new file mode 100644 index 00000000..284143d7 --- /dev/null +++ b/cde/programs/types/acroread.dt @@ -0,0 +1,35 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION acroread +{ + LABEL Acrobat_Reader + TYPE COMMAND + EXEC_STRING acroread "%Arg_1%" + ICON acroread + WINDOW_TYPE NO_STDIO + DESCRIPTION The standard PDF reader by Adobe. +} + + diff --git a/cde/programs/types/amarok.dt b/cde/programs/types/amarok.dt new file mode 100644 index 00000000..03ac416b --- /dev/null +++ b/cde/programs/types/amarok.dt @@ -0,0 +1,35 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION amarok +{ + LABEL amarok + TYPE COMMAND + EXEC_STRING amarok "%Arg_1%" + ICON amarok + WINDOW_TYPE NO_STDIO + DESCRIPTION Amarok KDE Media Player. +} + + diff --git a/cde/programs/types/brasero.dt b/cde/programs/types/brasero.dt new file mode 100644 index 00000000..fa242981 --- /dev/null +++ b/cde/programs/types/brasero.dt @@ -0,0 +1,78 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION brasero +{ + LABEL brasero + TYPE COMMAND + EXEC_STRING brasero %Arg_1% + ICON brasero + WINDOW_TYPE NO_STDIO + DESCRIPTION Brasero: Burn CDs and DVDs. +} + +#DATA_ATTRIBUTES vlc_FILE_1 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION MP3 files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_1A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_1 +# MODE !d +# PATH_PATTERN *.mp3 +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_1 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} +# +#DATA_ATTRIBUTES vlc_FILE_3 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION OGG files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_3A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_3 +# MODE !d +# PATH_PATTERN *.ogg +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_3 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} + diff --git a/cde/programs/types/caja.dt b/cde/programs/types/caja.dt new file mode 100644 index 00000000..bc9bc096 --- /dev/null +++ b/cde/programs/types/caja.dt @@ -0,0 +1,33 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION caja +{ + LABEL caja + TYPE COMMAND + EXEC_STRING caja --no-desktop %Arg_1% + ICON caja + WINDOW_TYPE NO_STDIO + DESCRIPTION caja: MATE desktop file manager. +} diff --git a/cde/programs/types/chromium.dt b/cde/programs/types/chromium.dt new file mode 100644 index 00000000..01d8b5e8 --- /dev/null +++ b/cde/programs/types/chromium.dt @@ -0,0 +1,34 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION chromium +{ + LABEL chromium + TYPE COMMAND + EXEC_STRING chromium-browser %Arg_1% + ICON chrome + WINDOW_TYPE NO_STDIO + DESCRIPTION CHROMIUM Web Browser. +} + diff --git a/cde/programs/types/datatypes.dt.src b/cde/programs/types/datatypes.dt.src index b21caa03..b0f8482b 100644 --- a/cde/programs/types/datatypes.dt.src +++ b/cde/programs/types/datatypes.dt.src @@ -186,13 +186,8 @@ ACTION Open { LABEL %|nls-1-Open| ARG_TYPE POSTSCRIPT - TYPE COMMAND - WINDOW_TYPE NO_STDIO - EXEC_STRING CDE_INSTALLATION_TOP/bin/dterror.ds \ - "%|nls-3008-#Cannot#|" \ - "%|nls-13-#Information#|" \ - "%|nls-6-#OK#|" - DESCRIPTION %|nls-3007-#Your system #| + TYPE MAP + MAP_ACTION DisplayPS } ACTION Print { @@ -357,7 +352,7 @@ XCOMM ####################################################### DATA_ATTRIBUTES TIFF { ACTIONS Open - ICON Dttif + ICON Dtimage NAME_TEMPLATE %s.tif MIME_TYPE image/tiff SUNV3_TYPE tiff-file @@ -404,13 +399,9 @@ ACTION Open { LABEL %|nls-1-Open| ARG_TYPE TIFF - TYPE COMMAND - WINDOW_TYPE NO_STDIO - EXEC_STRING CDE_INSTALLATION_TOP/bin/dterror.ds \ - "%|nls-3016-#Cannot#|" \ - "%|nls-13-#Information#|" \ - "%|nls-6-#OK#|" - DESCRIPTION %|nls-3015-#Your system #| + TYPE MAP + MAP_ACTION DisplayImage + DESCRIPTION Use the tiff viewer } ACTION Print { @@ -425,7 +416,7 @@ XCOMM ####################################################### DATA_ATTRIBUTES JPEG { ACTIONS Open - ICON Dtjpeg + ICON Dtimage NAME_TEMPLATE %s.jpg MIME_TYPE image/jpeg SUNV3_TYPE jpeg-file @@ -472,13 +463,9 @@ ACTION Open { LABEL %|nls-1-Open| ARG_TYPE JPEG - TYPE COMMAND - WINDOW_TYPE NO_STDIO - EXEC_STRING CDE_INSTALLATION_TOP/bin/dterror.ds \ - "%|nls-3019-#Cannot#|" \ - "%|nls-13-#Information#|" \ - "%|nls-6-#OK#|" - DESCRIPTION %|nls-3018-#Your system #| + TYPE MAP + MAP_ACTION DisplayImage + DESCRIPTION Use the jpeg viewer } ACTION Print { @@ -488,73 +475,82 @@ ACTION Print MAP_ACTION NoPrint } -XCOMM ####################################################### +XCOMM ##################################################################### +XCOMM ## BMP -DATA_ATTRIBUTES MPEG +DATA_ATTRIBUTES BMP { - ACTIONS Open - ICON Dtmpeg - NAME_TEMPLATE %s.mpg - MIME_TYPE video/mpeg - DESCRIPTION %|nls-3020-#This file#| - TYPE_LABEL %|nls-31007-#MPEG#| + ACTIONS Open + ICON Dtimage + DESCRIPTION This file contains a graphics image in \ + BMP format. Its data type is named BMP. BMP files \ + have names ending with '.bmp', '.BMP' or '.Bmp'. } -DATA_CRITERIA MPEG1 +DATA_CRITERIA BMP1 { - DATA_ATTRIBUTES_NAME MPEG - MODE f - NAME_PATTERN *.MPEG + DATA_ATTRIBUTES_NAME BMP + MODE f + PATH_PATTERN *.bmp } -DATA_CRITERIA MPEG2 +DATA_CRITERIA BMP2 { - DATA_ATTRIBUTES_NAME MPEG - MODE f - NAME_PATTERN *.mpg + DATA_ATTRIBUTES_NAME BMP + MODE f + PATH_PATTERN *.BMP } -DATA_CRITERIA MPEG3 +DATA_CRITERIA BMP3 { - DATA_ATTRIBUTES_NAME MPEG - MODE f - NAME_PATTERN *.mpeg + DATA_ATTRIBUTES_NAME BMP + MODE f + PATH_PATTERN *.Bmp } -DATA_CRITERIA MPEG4 +DATA_CRITERIA BMP4 { - DATA_ATTRIBUTES_NAME MPEG - MODE f - NAME_PATTERN *.MPG + DATA_ATTRIBUTES_NAME BMP + CONTENT 0 string BM + MODE f } -DATA_CRITERIA MPEG5 +DATA_CRITERIA BMP4 { - DATA_ATTRIBUTES_NAME MPEG - MODE f - CONTENT 0 long 0x000001b3 + DATA_ATTRIBUTES_NAME BMP + CONTENT 0 string IC + MODE f +} +DATA_CRITERIA BMP4 +{ + DATA_ATTRIBUTES_NAME BMP + CONTENT 0 string CI + MODE f +} +DATA_CRITERIA BMP4 +{ + DATA_ATTRIBUTES_NAME BMP + CONTENT 0 string CP + MODE f } ACTION Open { - LABEL %|nls-1-Open| - ARG_TYPE MPEG - TYPE COMMAND - WINDOW_TYPE NO_STDIO - EXEC_STRING CDE_INSTALLATION_TOP/bin/dterror.ds \ - "%|nls-3022-#Cannot#|" \ - "%|nls-13-#Information#|" \ - "%|nls-6-#OK#|" - DESCRIPTION %|nls-3021-#Your system #| + LABEL %|nls-1-Open| + ARG_TYPE BMP + TYPE MAP + MAP_ACTION DisplayImage + DESCRIPTION Use the bitmap viewer } ACTION Print { LABEL %|nls-2-Print| - ARG_TYPE MPEG - TYPE MAP - MAP_ACTION NoPrint + ARG_TYPE BMP + TYPE MAP + MAP_ACTION NoPrint } + XCOMM ####################################################### DATA_ATTRIBUTES GIF { ACTIONS Open - ICON Dtgif + ICON Dtimage NAME_TEMPLATE %s.gif MIME_TYPE image/gif SUNV3_TYPE gif-file @@ -589,13 +585,9 @@ ACTION Open { LABEL %|nls-1-Open| ARG_TYPE GIF - TYPE COMMAND - WINDOW_TYPE NO_STDIO - EXEC_STRING CDE_INSTALLATION_TOP/bin/dterror.ds \ - "%|nls-3025-#Cannot#|" \ - "%|nls-13-#Information#|" \ - "%|nls-6-#OK#|" - DESCRIPTION %|nls-3024-#Your system #| + TYPE MAP + MAP_ACTION DisplayImage + DESCRIPTION Use the gif viewer } ACTION Print { @@ -605,6 +597,60 @@ ACTION Print MAP_ACTION NoPrint } +XCOMM ####################################################################### +XCOMM ## PNG + +DATA_ATTRIBUTES PNG +{ + ACTIONS Open + ICON Dtimage + NAME_TEMPLATE %s.png + MIME_TYPE image/png + DESCRIPTION This file contains a graphics image in PNG format. \ + Its data type is named PNG. PNG files have \ + names ending with .png or .PNG + TYPE_LABEL PNG +} +DATA_CRITERIA PNG1 +{ + DATA_ATTRIBUTES_NAME PNG + MODE f + NAME_PATTERN *.png +} +DATA_CRITERIA PNG2 +{ + DATA_ATTRIBUTES_NAME PNG + MODE f + NAME_PATTERN *.PNG +} +DATA_CRITERIA PNG3 +{ + DATA_ATTRIBUTES_NAME PNG + CONTENT 0 string PNG + MODE f +} +DATA_CRITERIA PNG4 +{ + DATA_ATTRIBUTES_NAME PNG + CONTENT 0 byte 0x89 0x50 0x4e 0x47 + MODE f +} +ACTION Open +{ + LABEL %|nls-1-Open| + ARG_TYPE PNG + TYPE MAP + MAP_ACTION DisplayImage + DESCRIPTION Use the png viewer +} +ACTION Print +{ + LABEL %|nls-2-Print| + ARG_TYPE PNG + TYPE MAP + MAP_ACTION NoPrint +} + XCOMM ####################################################### DATA_ATTRIBUTES README @@ -805,4 +851,51 @@ ACTION Print MAP_ACTION NoPrint } +XCOMM ##################################################################### +XCOMM ## PDF + +DATA_ATTRIBUTES PDF +{ + ACTIONS Open,Print + ICON acroread + NAME_TEMPLATE %s.pdf + MIME_TYPE application/pdf + DESCRIPTION This file contains pdf data. Its data type \ + is named PDF. PDF files have names ending with '.pdf' \ + or '.PDF', or contain the characters "%PDF". + TYPE_LABEL PDF +} +DATA_CRITERIA PDF1 +{ + DATA_ATTRIBUTES_NAME PDF + MODE f&!x + NAME_PATTERN *.pdf +} +DATA_CRITERIA PDF2 +{ + DATA_ATTRIBUTES_NAME PDF + MODE f&!x + NAME_PATTERN *.PDF +} +DATA_CRITERIA PDF3 +{ + DATA_ATTRIBUTES_NAME PDF + CONTENT 0 string %PDF + MODE f&!x +} +ACTION Open +{ + LABEL Open + ARG_TYPE PDF + TYPE MAP + MAP_ACTION DisplayPDF +} +ACTION Print +{ + LABEL Print + ARG_TYPE PDF + TYPE MAP + MAP_ACTION DisplayPDF +} + XCOMM ######################## EOF ############################################ diff --git a/cde/programs/types/dreamchess.dt b/cde/programs/types/dreamchess.dt new file mode 100644 index 00000000..5790b5d7 --- /dev/null +++ b/cde/programs/types/dreamchess.dt @@ -0,0 +1,9 @@ +ACTION dreamchess +{ + LABEL dreamchess + TYPE COMMAND + EXEC_STRING dreamchess + ICON dreamchess + WINDOW_TYPE NO_STDIO +} + diff --git a/cde/programs/types/eboard.dt b/cde/programs/types/eboard.dt new file mode 100644 index 00000000..11c8012d --- /dev/null +++ b/cde/programs/types/eboard.dt @@ -0,0 +1,9 @@ +ACTION eboard +{ + LABEL eboard + TYPE COMMAND + EXEC_STRING eboard + ICON eboard + WINDOW_TYPE NO_STDIO +} + diff --git a/cde/programs/types/emacs.dt b/cde/programs/types/emacs.dt new file mode 100644 index 00000000..480a04ec --- /dev/null +++ b/cde/programs/types/emacs.dt @@ -0,0 +1,35 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION emacs +{ + LABEL Emacs + TYPE COMMAND + EXEC_STRING emacs "%Arg_1%" + ICON emacs + WINDOW_TYPE NO_STDIO + DESCRIPTION GNU Editor Emacs. +} + + diff --git a/cde/programs/types/engrampa.dt b/cde/programs/types/engrampa.dt new file mode 100644 index 00000000..2e4fd475 --- /dev/null +++ b/cde/programs/types/engrampa.dt @@ -0,0 +1,78 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION engrampa +{ + LABEL engrampa + TYPE COMMAND + EXEC_STRING engrampa %Arg_1% + ICON engrampa + WINDOW_TYPE NO_STDIO + DESCRIPTION engrampa: archive manager. +} + +DATA_ATTRIBUTES engrampa_FILE_1 +{ + ACTIONS Open + ICON engrampa + DESCRIPTION TGZ files open with engrampa. +} + +DATA_CRITERIA engrampa_FILE_1A +{ + DATA_ATTRIBUTES_NAME engrampa_FILE_1 + MODE !d + PATH_PATTERN *.tgz +} + +ACTION Open +{ + ARG_TYPE engrampa_FILE_1 + TYPE MAP + MAP_ACTION engrampa + LABEL Open +} + +DATA_ATTRIBUTES engrampa_FILE_3 +{ + ACTIONS Open + ICON engrampa + DESCRIPTION ZIP files open with engrampa. +} + +DATA_CRITERIA engrampa_FILE_3A +{ + DATA_ATTRIBUTES_NAME engrampa_FILE_3 + MODE !d + PATH_PATTERN *.zip +} + +ACTION Open +{ + ARG_TYPE engrampa_FILE_3 + TYPE MAP + MAP_ACTION engrampa + LABEL Open +} + diff --git a/cde/programs/types/file-roller.dt b/cde/programs/types/file-roller.dt new file mode 100644 index 00000000..9c707296 --- /dev/null +++ b/cde/programs/types/file-roller.dt @@ -0,0 +1,78 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION file-roller +{ + LABEL file-roller + TYPE COMMAND + EXEC_STRING file-roller %Arg_1% + ICON file-roller + WINDOW_TYPE NO_STDIO + DESCRIPTION file-roller: archive manager. +} + +#DATA_ATTRIBUTES file-roller_FILE_1 +#{ +# ACTIONS Open +## ICON +# DESCRIPTION TGZ files open with file-roller. +#} +# +#DATA_CRITERIA file-roller_FILE_1A +#{ +# DATA_ATTRIBUTES_NAME file-roller_FILE_1 +# MODE !d +# PATH_PATTERN *.tgz +#} +# +#ACTION Open +#{ +# ARG_TYPE file-roller_FILE_1 +# TYPE MAP +# MAP_ACTION file-roller +# LABEL Open +#} +# +#DATA_ATTRIBUTES file-roller_FILE_3 +#{ +# ACTIONS Open +## ICON +# DESCRIPTION ZIP files open with file-roller. +#} +# +#DATA_CRITERIA file-roller_FILE_3A +#{ +# DATA_ATTRIBUTES_NAME file-roller_FILE_3 +# MODE !d +# PATH_PATTERN *.zip +#} +# +#ACTION Open +#{ +# ARG_TYPE file-roller_FILE_3 +# TYPE MAP +# MAP_ACTION file-roller +# LABEL Open +#} + diff --git a/cde/programs/types/firefox.dt b/cde/programs/types/firefox.dt new file mode 100644 index 00000000..799da40e --- /dev/null +++ b/cde/programs/types/firefox.dt @@ -0,0 +1,143 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION firefox +{ + LABEL Firefox + TYPE COMMAND + EXEC_STRING firefox %Arg_1% + ICON firefox + WINDOW_TYPE NO_STDIO + DESCRIPTION The firefox Web Browser. +} + +DATA_ATTRIBUTES firefox_FILE_1 +{ + ACTIONS Open + ICON SDthtml + DESCRIPTION html files open with firefox Web Browser. +} + +DATA_CRITERIA firefox_FILE_1A +{ + DATA_ATTRIBUTES_NAME firefox_FILE_1 + MODE !d + PATH_PATTERN *.html +} + +ACTION Open +{ + ARG_TYPE firefox_FILE_1 + TYPE MAP + MAP_ACTION firefox + LABEL Open +} + +ACTION firefox_FILE_1_PRINT +{ + TYPE COMMAND + EXEC_STRING firefox -print %Arg_1% + WINDOW_TYPE NO_STDIO + DESCRIPTION Printing for firefox by droping and html file on the \ + penel's printer needs an add-on. Search \ + the Internet to find a command-line printing add-on for \ + firefox accordingly the print command in the file firefox.dt +} + +ACTION Print +{ + ARG_TYPE firefox_FILE_1 + TYPE MAP + MAP_ACTION firefox_FILE_1_PRINT + LABEL Print +} + + + +DATA_ATTRIBUTES firefox_FILE_3 +{ + ACTIONS Open + ICON SDthtml + DESCRIPTION htm files open with firefox Web Browser. +} + +DATA_CRITERIA firefox_FILE_3A +{ + DATA_ATTRIBUTES_NAME firefox_FILE_3 + MODE !d + PATH_PATTERN *.htm +} + +ACTION Open +{ + ARG_TYPE firefox_FILE_3 + TYPE MAP + MAP_ACTION firefox + LABEL Open +} + +ACTION firefox_FILE_3_PRINT +{ + TYPE COMMAND + EXEC_STRING firefox -print %Arg_1% + WINDOW_TYPE NO_STDIO + DESCRIPTION Printing for firefox by droping and htm file on the \ + penel's printer needs an add-on. Search \ + the Internet to find a command-line printing add-on for \ + firefox accordingly the print command in the file firefox.dt +} + +ACTION Print +{ + ARG_TYPE firefox_FILE_3 + TYPE MAP + MAP_ACTION firefox_FILE_3_PRINT + LABEL Print +} + + + +DATA_ATTRIBUTES firefox_FILE_5 +{ + ACTIONS Open + ICON SDturlweb + DESCRIPTION url files open with firefox Web Browser. +} + + +DATA_CRITERIA firefox_FILE_5A +{ + DATA_ATTRIBUTES_NAME firefox_FILE_5 + MODE !d + PATH_PATTERN *.url +} + +ACTION Open +{ + ARG_TYPE firefox_FILE_5 + TYPE MAP + MAP_ACTION firefox + LABEL Open +} + diff --git a/cde/programs/types/firestarter.dt b/cde/programs/types/firestarter.dt new file mode 100644 index 00000000..963689f7 --- /dev/null +++ b/cde/programs/types/firestarter.dt @@ -0,0 +1,35 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION firestarter +{ + LABEL firestarter + TYPE COMMAND + EXEC_STRING gksu -w -u root firestarter + ICON firestarter + WINDOW_TYPE NO_STDIO + DESCRIPTION firestarter: manage your firewall. +} + + diff --git a/cde/programs/types/fontforge.dt b/cde/programs/types/fontforge.dt new file mode 100644 index 00000000..54e4c8bc --- /dev/null +++ b/cde/programs/types/fontforge.dt @@ -0,0 +1,169 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION fontforge +{ + LABEL fontforge + TYPE COMMAND + EXEC_STRING fontforge "%Arg_1%" + ICON fontforge + WINDOW_TYPE NO_STDIO + DESCRIPTION fontforge font editor. +} + +DATA_ATTRIBUTES fontforge_FILE_1 +{ + ACTIONS Open,Print + ICON fontforge + DESCRIPTION Open font in fontforge. +} + +DATA_CRITERIA fontforge_FILE_1A +{ + DATA_ATTRIBUTES_NAME fontforge_FILE_1 + MODE !d + PATH_PATTERN *.sfd +} + +ACTION Open +{ + ARG_TYPE fontforge_FILE_1 + TYPE MAP + MAP_ACTION fontforge + LABEL Open +} + +ACTION fontforge_FILE_1_PRINT +{ + TYPE COMMAND + EXEC_STRING fontforge "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE fontforge_FILE_1 + TYPE MAP + MAP_ACTION fontforge_FILE_1_PRINT + LABEL Print +} + + + +#### +DATA_ATTRIBUTES fontforge_FILE_3 +{ + ACTIONS Open + ICON fontforge + DESCRIPTION Open font in fontforge. +} + +DATA_CRITERIA fontforge_FILE_3A +{ + DATA_ATTRIBUTES_NAME fontforge_FILE_3 + MODE !d + PATH_PATTERN *.ttf +} + +ACTION Open +{ + ARG_TYPE fontforge_FILE_3 + TYPE MAP + MAP_ACTION fontforge + LABEL Open +} + + +#### + +DATA_ATTRIBUTES fontforge_FILE_5 +{ + ACTIONS Open + ICON fontforge + DESCRIPTION Open font in fontforge. +} + +DATA_CRITERIA fontforge_FILE_5A +{ + DATA_ATTRIBUTES_NAME fontforge_FILE_5 + MODE !d + PATH_PATTERN *.pfb +} + +ACTION Open +{ + ARG_TYPE fontforge_FILE_5 + TYPE MAP + MAP_ACTION fontforge + LABEL Open +} +#### +DATA_ATTRIBUTES fontforge_FILE_7 +{ + ACTIONS Open + ICON fontforge + DESCRIPTION Open font in fontforge. +} + +DATA_CRITERIA fontforge_FILE_7A +{ + DATA_ATTRIBUTES_NAME fontforge_FILE_7 + MODE !d + PATH_PATTERN *.pfa +} + +ACTION Open +{ + ARG_TYPE fontforge_FILE_7 + TYPE MAP + MAP_ACTION fontforge + LABEL Open +} +#### +DATA_ATTRIBUTES fontforge_FILE_9 +{ + ACTIONS Open + ICON fontforge + DESCRIPTION Open font in fontforge. +} + +DATA_CRITERIA fontforge_FILE_9A +{ + DATA_ATTRIBUTES_NAME fontforge_FILE_9 + MODE !d + PATH_PATTERN *.otf +} + +ACTION Open +{ + ARG_TYPE fontforge_FILE_9 + TYPE MAP + MAP_ACTION fontforge + LABEL Open +} + + + + + diff --git a/cde/programs/types/gcompris.dt b/cde/programs/types/gcompris.dt new file mode 100644 index 00000000..fa5a7721 --- /dev/null +++ b/cde/programs/types/gcompris.dt @@ -0,0 +1,34 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION gcompris +{ + LABEL gcompris + TYPE COMMAND + EXEC_STRING gcompris %Arg_1% + ICON gcompris + WINDOW_TYPE NO_STDIO + DESCRIPTION gcompris is an education suite. +} + diff --git a/cde/programs/types/geogebra.dt b/cde/programs/types/geogebra.dt new file mode 100644 index 00000000..05271d6c --- /dev/null +++ b/cde/programs/types/geogebra.dt @@ -0,0 +1,33 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION geogebra +{ + LABEL geogebra + TYPE COMMAND + EXEC_STRING geogebra %Arg_1% + ICON geogebra + WINDOW_TYPE NO_STDIO + DESCRIPTION geogebra is for interactive geometry and algebra. +} diff --git a/cde/programs/types/gimp.dt b/cde/programs/types/gimp.dt new file mode 100644 index 00000000..b5fc8d46 --- /dev/null +++ b/cde/programs/types/gimp.dt @@ -0,0 +1,72 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION gimp +{ + LABEL Gimp + TYPE COMMAND + EXEC_STRING gimp "%Arg_1%" + ICON gimp + WINDOW_TYPE NO_STDIO + DESCRIPTION The GNU image manipulation program. +} + +DATA_ATTRIBUTES gimp_FILE_1 +{ + ACTIONS Open,Print + ICON gimp + DESCRIPTION Open image in Gimp. +} + +DATA_CRITERIA gimp_FILE_1A +{ + DATA_ATTRIBUTES_NAME gimp_FILE_1 + MODE !d + PATH_PATTERN *.xcf +} + +ACTION Open +{ + ARG_TYPE gimp_FILE_1 + TYPE MAP + MAP_ACTION gimp + LABEL Open +} + +ACTION gimp_FILE_1_PRINT +{ + TYPE COMMAND + EXEC_STRING gimp "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE gimp_FILE_1 + TYPE MAP + MAP_ACTION gimp_FILE_1_PRINT + LABEL Print +} + + diff --git a/cde/programs/types/gv.dt b/cde/programs/types/gv.dt new file mode 100644 index 00000000..8ca3fd3f --- /dev/null +++ b/cde/programs/types/gv.dt @@ -0,0 +1,34 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION gv +{ + LABEL gv + TYPE COMMAND + EXEC_STRING gv "%Arg_1%" + ICON gv + WINDOW_TYPE NO_STDIO + DESCRIPTION gv is a postscript viewer. +} + diff --git a/cde/programs/types/inkscape.dt b/cde/programs/types/inkscape.dt new file mode 100644 index 00000000..5d3ec21b --- /dev/null +++ b/cde/programs/types/inkscape.dt @@ -0,0 +1,71 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION inkscape +{ + LABEL inkscape + TYPE COMMAND + EXEC_STRING inkscape "%Arg_1%" + ICON inkscape + WINDOW_TYPE NO_STDIO + DESCRIPTION inkscape vector graphics editor +} + +DATA_ATTRIBUTES inkscape_FILE_1 +{ + ACTIONS Open,Print + DESCRIPTION Open image in inkscape. +} + +DATA_CRITERIA inkscape_FILE_1A +{ + DATA_ATTRIBUTES_NAME inkscape_FILE_1 + MODE !d + PATH_PATTERN *.svg +} + +ACTION Open +{ + ARG_TYPE inkscape_FILE_1 + TYPE MAP + MAP_ACTION inkscape + LABEL Open +} + +ACTION inkscape_FILE_1_PRINT +{ + TYPE COMMAND + EXEC_STRING inkscape %Arg_1% + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE inkscape_FILE_1 + TYPE MAP + MAP_ACTION inkscape_FILE_1_PRINT + LABEL Print +} + + diff --git a/cde/programs/types/k3b.dt b/cde/programs/types/k3b.dt new file mode 100644 index 00000000..ad9c4af3 --- /dev/null +++ b/cde/programs/types/k3b.dt @@ -0,0 +1,78 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION k3b +{ + LABEL k3b + TYPE COMMAND + EXEC_STRING k3b %Arg_1% + ICON k3b + WINDOW_TYPE NO_STDIO + DESCRIPTION k3b Burn CDs and DVDs. +} + +#DATA_ATTRIBUTES vlc_FILE_1 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION MP3 files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_1A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_1 +# MODE !d +# PATH_PATTERN *.mp3 +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_1 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} +# +#DATA_ATTRIBUTES vlc_FILE_3 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION OGG files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_3A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_3 +# MODE !d +# PATH_PATTERN *.ogg +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_3 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} + diff --git a/cde/programs/types/k9copy.dt b/cde/programs/types/k9copy.dt new file mode 100644 index 00000000..55f14439 --- /dev/null +++ b/cde/programs/types/k9copy.dt @@ -0,0 +1,78 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION k9copy +{ + LABEL k9copy + TYPE COMMAND + EXEC_STRING k9copy %Arg_1% + ICON k9copy + WINDOW_TYPE NO_STDIO + DESCRIPTION k9copy: Copy 9Gb DVDs to 4.5Gb DVDs. +} + +#DATA_ATTRIBUTES vlc_FILE_1 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION MP3 files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_1A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_1 +# MODE !d +# PATH_PATTERN *.mp3 +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_1 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} +# +#DATA_ATTRIBUTES vlc_FILE_3 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION OGG files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_3A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_3 +# MODE !d +# PATH_PATTERN *.ogg +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_3 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} + diff --git a/cde/programs/types/kile.dt b/cde/programs/types/kile.dt new file mode 100644 index 00000000..d4d27bd2 --- /dev/null +++ b/cde/programs/types/kile.dt @@ -0,0 +1,98 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION kile +{ + LABEL kile + TYPE COMMAND + EXEC_STRING kile "%Arg_1%" + ICON kile + WINDOW_TYPE NO_STDIO + DESCRIPTION LaTeX editor of KDE. +} + +DATA_ATTRIBUTES kile_FILE_1 +{ + ACTIONS Open,Print + ICON kile + DESCRIPTION TeX files open in kile. +} + +DATA_CRITERIA kile_FILE_1A +{ + DATA_ATTRIBUTES_NAME kile_FILE_1 + MODE !d + PATH_PATTERN *.tex +} + +ACTION Open +{ + ARG_TYPE kile_FILE_1 + TYPE MAP + MAP_ACTION kile + LABEL Open +} + +ACTION kile_FILE_1_PRINT +{ + TYPE COMMAND + EXEC_STRING lpr "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE kile_FILE_1 + TYPE MAP + MAP_ACTION kile_FILE_1_PRINT + LABEL Print +} + +DATA_ATTRIBUTES kile_FILE_3 +{ + ACTIONS Open,Print + ICON kile + DESCRIPTION TeX style files open in kile. +} + +DATA_CRITERIA kile_FILE_3A +{ + DATA_ATTRIBUTES_NAME kile_FILE_3 + MODE !d + PATH_PATTERN *.sty +} + +ACTION Open +{ + ARG_TYPE kile_FILE_3 + TYPE MAP + MAP_ACTION kile + LABEL Open +} + + + + + + diff --git a/cde/programs/types/ktuberling.dt b/cde/programs/types/ktuberling.dt new file mode 100644 index 00000000..f5a959df --- /dev/null +++ b/cde/programs/types/ktuberling.dt @@ -0,0 +1,9 @@ +ACTION ktuberling +{ + LABEL ktuberling + TYPE COMMAND + EXEC_STRING ktuberling + ICON ktuberling + WINDOW_TYPE NO_STDIO +} + diff --git a/cde/programs/types/lbreakout2.dt b/cde/programs/types/lbreakout2.dt new file mode 100644 index 00000000..e1763718 --- /dev/null +++ b/cde/programs/types/lbreakout2.dt @@ -0,0 +1,9 @@ +ACTION lbreakout2 +{ + LABEL lbreakout2 + TYPE COMMAND + EXEC_STRING lbreakout2 + ICON lbreakout2 + WINDOW_TYPE NO_STDIO +} + diff --git a/cde/programs/types/libreoffice-base.dt b/cde/programs/types/libreoffice-base.dt new file mode 100644 index 00000000..4e790ed7 --- /dev/null +++ b/cde/programs/types/libreoffice-base.dt @@ -0,0 +1,34 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION libreoffice-base +{ + LABEL Base + TYPE COMMAND + EXEC_STRING libreoffice --base "%Arg_1%" + ICON libreoffice-base + WINDOW_TYPE NO_STDIO + DESCRIPTION Libre Office BASE. +} + diff --git a/cde/programs/types/libreoffice-calc.dt b/cde/programs/types/libreoffice-calc.dt new file mode 100644 index 00000000..fcbf9e26 --- /dev/null +++ b/cde/programs/types/libreoffice-calc.dt @@ -0,0 +1,146 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION libreoffice-calc +{ + LABEL Calc + TYPE COMMAND + EXEC_STRING libreoffice --calc "%Arg_1%" + ICON libreoffice-calc + WINDOW_TYPE NO_STDIO + DESCRIPTION Libre Office Spreadsheets. +} + +DATA_ATTRIBUTES libreoffice-calc_FILE_1 +{ + ACTIONS Open,Print + ICON libreoffice-calc + DESCRIPTION Open Document Spreadsheet file. +} + +DATA_CRITERIA libreoffice-calc_FILE_1A +{ + DATA_ATTRIBUTES_NAME libreoffice-calc_FILE_1 + MODE !d + PATH_PATTERN *.ods +} + +ACTION Open +{ + ARG_TYPE libreoffice-calc_FILE_1 + TYPE MAP + MAP_ACTION libreoffice-calc + LABEL Open +} + +ACTION libreoffice-calc_FILE_1_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-calc_FILE_1 + TYPE MAP + MAP_ACTION libreoffice-calc_FILE_1_PRINT + LABEL Print +} + + +DATA_ATTRIBUTES libreoffice-calc_FILE_4 +{ + ACTIONS Open,Print + ICON libreoffice-calc +} + +DATA_CRITERIA libreoffice-calc_FILE_4A +{ + DATA_ATTRIBUTES_NAME libreoffice-calc_FILE_4 + MODE !d + PATH_PATTERN *.xls +} + +ACTION Open +{ + ARG_TYPE libreoffice-calc_FILE_4 + TYPE MAP + MAP_ACTION libreoffice-calc + LABEL Open +} + +ACTION libreoffice-calc_FILE_4_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-calc_FILE_4 + TYPE MAP + MAP_ACTION libreoffice-calc_FILE_4_PRINT + LABEL Print +} + + +DATA_ATTRIBUTES libreoffice-calc_FILE_6 +{ + ACTIONS Open,Print + ICON libreoffice-calc + DESCRIPTION New Microsoft Spreadsheet Format. +} + +DATA_CRITERIA libreoffice-calc_FILE_6A +{ + DATA_ATTRIBUTES_NAME libreoffice-calc_FILE_6 + MODE !d + PATH_PATTERN *.xlsx +} + +ACTION Open +{ + ARG_TYPE libreoffice-calc_FILE_6 + TYPE MAP + MAP_ACTION libreoffice-calc + LABEL Open +} + +ACTION libreoffice-calc_FILE_6_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-calc_FILE_6 + TYPE MAP + MAP_ACTION libreoffice-calc_FILE_6_PRINT + LABEL Print +} + diff --git a/cde/programs/types/libreoffice-draw.dt b/cde/programs/types/libreoffice-draw.dt new file mode 100644 index 00000000..ee079ab2 --- /dev/null +++ b/cde/programs/types/libreoffice-draw.dt @@ -0,0 +1,110 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION libreoffice-draw +{ + LABEL Draw + TYPE COMMAND + EXEC_STRING libreoffice --draw "%Arg_1%" + ICON libreoffice-draw + WINDOW_TYPE NO_STDIO + DESCRIPTION Libre Office DRAW. +} + +DATA_ATTRIBUTES libreoffice-draw_FILE_1 +{ + ACTIONS Open,Print + ICON libreoffice-draw + DESCRIPTION Open Document Draw file. +} + +DATA_CRITERIA libreoffice-draw_FILE_1A +{ + DATA_ATTRIBUTES_NAME libreoffice-draw_FILE_1 + MODE !d + PATH_PATTERN *.odg +} + +ACTION Open +{ + ARG_TYPE libreoffice-draw_FILE_1 + TYPE MAP + MAP_ACTION libreoffice-draw + LABEL Open +} + +ACTION libreoffice-draw_FILE_1_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-draw_FILE_1 + TYPE MAP + MAP_ACTION libreoffice-draw_FILE_1_PRINT + LABEL Print +} + + +DATA_ATTRIBUTES libreoffice-draw_FILE_4 +{ + ACTIONS Open,Print + ICON libreoffice-draw +} + +DATA_CRITERIA libreoffice-draw_FILE_4A +{ + DATA_ATTRIBUTES_NAME libreoffice-draw_FILE_4 + MODE !d + PATH_PATTERN *.fodg +} + +ACTION Open +{ + ARG_TYPE libreoffice-draw_FILE_4 + TYPE MAP + MAP_ACTION libreoffice-draw + LABEL Open +} + +ACTION libreoffice-writer_FILE_4_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-draw_FILE_4 + TYPE MAP + MAP_ACTION libreoffice-draw_FILE_4_PRINT + LABEL Print +} + + + diff --git a/cde/programs/types/libreoffice-impress.dt b/cde/programs/types/libreoffice-impress.dt new file mode 100644 index 00000000..f006708a --- /dev/null +++ b/cde/programs/types/libreoffice-impress.dt @@ -0,0 +1,260 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION libreoffice-impress +{ + LABEL Impress + TYPE COMMAND + EXEC_STRING libreoffice --impress "%Arg_1%" + ICON libreoffice-impress + WINDOW_TYPE NO_STDIO + DESCRIPTION Libre Office Impress. +} + +DATA_ATTRIBUTES libreoffice-impress_FILE_1 +{ + ACTIONS Open,Print + ICON libreoffice-impress + DESCRIPTION Open Document Presentation file. +} + +DATA_CRITERIA libreoffice-impress_FILE_1A +{ + DATA_ATTRIBUTES_NAME libreoffice-impress_FILE_1 + MODE !d + PATH_PATTERN *.odp +} + +ACTION Open +{ + ARG_TYPE libreoffice-impress_FILE_1 + TYPE MAP + MAP_ACTION libreoffice-impress + LABEL Open +} + +ACTION libreoffice-impress_FILE_1_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-impress_FILE_1 + TYPE MAP + MAP_ACTION libreoffice-impress_FILE_1_PRINT + LABEL Print +} + + +DATA_ATTRIBUTES libreoffice-impress_FILE_4 +{ + ACTIONS Open,Print + ICON libreoffice-impress +} + +DATA_CRITERIA libreoffice-impress_FILE_4A +{ + DATA_ATTRIBUTES_NAME libreoffice-impress_FILE_4 + MODE !d + PATH_PATTERN *.fodp +} + +ACTION Open +{ + ARG_TYPE libreoffice-impress_FILE_4 + TYPE MAP + MAP_ACTION libreoffice-impress + LABEL Open +} + +ACTION libreoffice-impress_FILE_4_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-impress_FILE_4 + TYPE MAP + MAP_ACTION libreoffice-impress_FILE_4_PRINT + LABEL Print +} + + +DATA_ATTRIBUTES libreoffice-impress_FILE_6 +{ + ACTIONS Open,Print + ICON libreoffice-impress + DESCRIPTION New Microsoft Format. +} + +DATA_CRITERIA libreoffice-impress_FILE_6A +{ + DATA_ATTRIBUTES_NAME libreoffice-impress_FILE_6 + MODE !d + PATH_PATTERN *.pptx +} + +ACTION Open +{ + ARG_TYPE libreoffice-impress_FILE_6 + TYPE MAP + MAP_ACTION libreoffice-impress + LABEL Open +} + +ACTION libreoffice-impress_FILE_6_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-impress_FILE_6 + TYPE MAP + MAP_ACTION libreoffice-impress_FILE_6_PRINT + LABEL Print +} + +DATA_ATTRIBUTES libreoffice-impress_FILE_8 +{ + ACTIONS Open,Print + ICON libreoffice-impress + DESCRIPTION New Microsoft Format. +} + +DATA_CRITERIA libreoffice-impress_FILE_8A +{ + DATA_ATTRIBUTES_NAME libreoffice-impress_FILE_8 + MODE !d + PATH_PATTERN *.ppsx +} + +ACTION Open +{ + ARG_TYPE libreoffice-impress_FILE_8 + TYPE MAP + MAP_ACTION libreoffice-impress + LABEL Open +} + +ACTION libreoffice-impress_FILE_8_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-impress_FILE_8 + TYPE MAP + MAP_ACTION libreoffice-impress_FILE_8_PRINT + LABEL Print +} + + + +DATA_ATTRIBUTES libreoffice-impress_FILE_10 +{ + ACTIONS Open,Print + ICON libreoffice-impress + DESCRIPTION Microsoft Presentation Format. +} + +DATA_CRITERIA libreoffice-impress_FILE_10A +{ + DATA_ATTRIBUTES_NAME libreoffice-impress_FILE_10 + MODE !d + PATH_PATTERN *.ppt +} + +ACTION Open +{ + ARG_TYPE libreoffice-impress_FILE_10 + TYPE MAP + MAP_ACTION libreoffice-impress + LABEL Open +} + +ACTION libreoffice-impress_FILE_10_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-impress_FILE_10 + TYPE MAP + MAP_ACTION libreoffice-impress_FILE_10_PRINT + LABEL Print +} + + +DATA_ATTRIBUTES libreoffice-impress_FILE_12 +{ + ACTIONS Open,Print + ICON libreoffice-impress + DESCRIPTION Microsoft Presentation Format. +} + +DATA_CRITERIA libreoffice-impress_FILE_12A +{ + DATA_ATTRIBUTES_NAME libreoffice-impress_FILE_12 + MODE !d + PATH_PATTERN *.pps +} + +ACTION Open +{ + ARG_TYPE libreoffice-impress_FILE_12 + TYPE MAP + MAP_ACTION libreoffice-impress + LABEL Open +} + +ACTION libreoffice-impress_FILE_12_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-impress_FILE_12 + TYPE MAP + MAP_ACTION libreoffice-impress_FILE_12_PRINT + LABEL Print +} + diff --git a/cde/programs/types/libreoffice-main.dt b/cde/programs/types/libreoffice-main.dt new file mode 100644 index 00000000..59f35fb6 --- /dev/null +++ b/cde/programs/types/libreoffice-main.dt @@ -0,0 +1,37 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION libreoffice-main +{ + LABEL LibreOffice + TYPE COMMAND + EXEC_STRING libreoffice "%Arg_1%" + ICON libreoffice-main + WINDOW_TYPE NO_STDIO + DESCRIPTION Libre Office. +} + + + + diff --git a/cde/programs/types/libreoffice-math.dt b/cde/programs/types/libreoffice-math.dt new file mode 100644 index 00000000..c8eacdc8 --- /dev/null +++ b/cde/programs/types/libreoffice-math.dt @@ -0,0 +1,72 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION libreoffice-math +{ + LABEL Math + TYPE COMMAND + EXEC_STRING libreoffice --math "%Arg_1%" + ICON libreoffice-math + WINDOW_TYPE NO_STDIO + DESCRIPTION Libre Office MATH. +} + +DATA_ATTRIBUTES libreoffice-math_FILE_1 +{ + ACTIONS Open,Print + ICON libreoffice-math + DESCRIPTION Open Document Math file. +} + +DATA_CRITERIA libreoffice-math_FILE_1A +{ + DATA_ATTRIBUTES_NAME libreoffice-math_FILE_1 + MODE !d + PATH_PATTERN *.odf +} + +ACTION Open +{ + ARG_TYPE libreoffice-math_FILE_1 + TYPE MAP + MAP_ACTION libreoffice-math + LABEL Open +} + +ACTION libreoffice-math_FILE_1_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-math_FILE_1 + TYPE MAP + MAP_ACTION libreoffice-math_FILE_1_PRINT + LABEL Print +} + + diff --git a/cde/programs/types/libreoffice-writer.dt b/cde/programs/types/libreoffice-writer.dt new file mode 100644 index 00000000..53918474 --- /dev/null +++ b/cde/programs/types/libreoffice-writer.dt @@ -0,0 +1,146 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION libreoffice-writer +{ + LABEL Writer + TYPE COMMAND + EXEC_STRING libreoffice --writer "%Arg_1%" + ICON libreoffice-writer + WINDOW_TYPE NO_STDIO + DESCRIPTION Libre Office Writer +} + +DATA_ATTRIBUTES libreoffice-writer_FILE_1 +{ + ACTIONS Open,Print + ICON libreoffice-writer + DESCRIPTION Open Document Text file. +} + +DATA_CRITERIA libreoffice-writer_FILE_1A +{ + DATA_ATTRIBUTES_NAME libreoffice-writer_FILE_1 + MODE !d + PATH_PATTERN *.odt +} + +ACTION Open +{ + ARG_TYPE libreoffice-writer_FILE_1 + TYPE MAP + MAP_ACTION libreoffice-writer + LABEL Open +} + +ACTION libreoffice-writer_FILE_1_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-writer_FILE_1 + TYPE MAP + MAP_ACTION libreoffice-writer_FILE_1_PRINT + LABEL Print +} + + +DATA_ATTRIBUTES libreoffice-writer_FILE_4 +{ + ACTIONS Open,Print + ICON libreoffice-writer +} + +DATA_CRITERIA libreoffice-writer_FILE_4A +{ + DATA_ATTRIBUTES_NAME libreoffice-writer_FILE_4 + MODE !d + PATH_PATTERN *.doc +} + +ACTION Open +{ + ARG_TYPE libreoffice-writer_FILE_4 + TYPE MAP + MAP_ACTION libreoffice-writer + LABEL Open +} + +ACTION libreoffice-writer_FILE_4_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-writer_FILE_4 + TYPE MAP + MAP_ACTION libreoffice-writer_FILE_4_PRINT + LABEL Print +} + + +DATA_ATTRIBUTES libreoffice-writer_FILE_6 +{ + ACTIONS Open,Print + ICON libreoffice-writer + DESCRIPTION New Microsoft Format. +} + +DATA_CRITERIA libreoffice-writer_FILE_6A +{ + DATA_ATTRIBUTES_NAME libreoffice-writer_FILE_6 + MODE !d + PATH_PATTERN *.docx +} + +ACTION Open +{ + ARG_TYPE libreoffice-writer_FILE_6 + TYPE MAP + MAP_ACTION libreoffice-writer + LABEL Open +} + +ACTION libreoffice-writer_FILE_6_PRINT +{ + TYPE COMMAND + EXEC_STRING libreoffice -p "%Arg_1%" + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE libreoffice-writer_FILE_6 + TYPE MAP + MAP_ACTION libreoffice-writer_FILE_6_PRINT + LABEL Print +} + diff --git a/cde/programs/types/mgv.dt b/cde/programs/types/mgv.dt new file mode 100644 index 00000000..98518038 --- /dev/null +++ b/cde/programs/types/mgv.dt @@ -0,0 +1,71 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION mgv +{ + LABEL mgv + TYPE COMMAND + EXEC_STRING mgv "%Arg_1%" + ICON mgv + WINDOW_TYPE NO_STDIO + DESCRIPTION mgv, the Motif version of gv, is the default ps viewer. +} + +#DATA_ATTRIBUTES mgv_FILE_1 +#{ +# ACTIONS Open,Print +# DESCRIPTION Postscript files open with mgv. +#} +# +#DATA_CRITERIA mgv_FILE_1A +#{ +# DATA_ATTRIBUTES_NAME mgv_FILE_1 +# MODE !d +# PATH_PATTERN *.ps +#} +# +#ACTION Open +#{ +# ARG_TYPE mgv_FILE_1 +# TYPE MAP +# MAP_ACTION mgv +# LABEL Open +#} +# +#ACTION mgv_FILE_1_PRINT +#{ +# TYPE COMMAND +# EXEC_STRING lpr "%Arg_1%" +# WINDOW_TYPE NO_STDIO +#} +# +#ACTION Print +#{ +# ARG_TYPE mgv_FILE_1 +# TYPE MAP +# MAP_ACTION mgv_FILE_1_PRINT +# LABEL Print +#} + + diff --git a/cde/programs/types/nedit.dt b/cde/programs/types/nedit.dt new file mode 100644 index 00000000..fff1cc48 --- /dev/null +++ b/cde/programs/types/nedit.dt @@ -0,0 +1,35 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION nedit +{ + LABEL Nedit + TYPE COMMAND + EXEC_STRING nedit "%Arg_1%" + ICON nedit + WINDOW_TYPE NO_STDIO + DESCRIPTION Nedit is a Motif Editor. +} + + diff --git a/cde/programs/types/nxclient.dt b/cde/programs/types/nxclient.dt new file mode 100644 index 00000000..7d119997 --- /dev/null +++ b/cde/programs/types/nxclient.dt @@ -0,0 +1,56 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION nxclient +{ + LABEL nxclient + TYPE COMMAND + EXEC_STRING nxclient %Arg_1% + ICON nxclient-icon + WINDOW_TYPE NO_STDIO + DESCRIPTION Remote desktop access via NXCLIENT. +} + +DATA_ATTRIBUTES nxclient_FILE_1 +{ + ACTIONS Open + ICON nxclient-desktop + DESCRIPTION nxs files open with NXCLIENT. +} + +DATA_CRITERIA nxclient_FILE_1A +{ + DATA_ATTRIBUTES_NAME nxclient_FILE_1 + MODE !d + PATH_PATTERN *.nxs +} + +ACTION Open +{ + ARG_TYPE nxclient_FILE_1 + TYPE MAP + MAP_ACTION nxclient + LABEL Open +} + diff --git a/cde/programs/types/okular.dt b/cde/programs/types/okular.dt new file mode 100644 index 00000000..86d3a5bc --- /dev/null +++ b/cde/programs/types/okular.dt @@ -0,0 +1,36 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION okular +{ + LABEL okular + TYPE COMMAND + EXEC_STRING okular "%Arg_1%" + ICON okular + WINDOW_TYPE NO_STDIO + DESCRIPTION okular pdf viewer. +} + + + diff --git a/cde/programs/types/pavucontrol.dt b/cde/programs/types/pavucontrol.dt new file mode 100644 index 00000000..a92eba86 --- /dev/null +++ b/cde/programs/types/pavucontrol.dt @@ -0,0 +1,35 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION pavucontrol +{ + LABEL PulseAudioCtrl + TYPE COMMAND + EXEC_STRING pavucontrol + ICON Dtaudio + WINDOW_TYPE NO_STDIO + DESCRIPTION Control Pulse Audio. +} + + diff --git a/cde/programs/types/pgadmin.dt b/cde/programs/types/pgadmin.dt new file mode 100644 index 00000000..ba37a38d --- /dev/null +++ b/cde/programs/types/pgadmin.dt @@ -0,0 +1,33 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION pgadmin +{ + LABEL pgadmin + TYPE COMMAND + EXEC_STRING pgadmin %Arg_1% + ICON pgadmin + WINDOW_TYPE NO_STDIO +} + diff --git a/cde/programs/types/powermanga.dt b/cde/programs/types/powermanga.dt new file mode 100644 index 00000000..7a74f6e6 --- /dev/null +++ b/cde/programs/types/powermanga.dt @@ -0,0 +1,9 @@ +ACTION powermanga +{ + LABEL powermanga + TYPE COMMAND + EXEC_STRING powermanga + ICON powermanga + WINDOW_TYPE NO_STDIO +} + diff --git a/cde/programs/types/pychess.dt b/cde/programs/types/pychess.dt new file mode 100644 index 00000000..b3489356 --- /dev/null +++ b/cde/programs/types/pychess.dt @@ -0,0 +1,9 @@ +ACTION pychess +{ + LABEL pychess + TYPE COMMAND + EXEC_STRING pychess + ICON pychess + WINDOW_TYPE NO_STDIO +} + diff --git a/cde/programs/types/rhythmbox.dt b/cde/programs/types/rhythmbox.dt new file mode 100644 index 00000000..6dcb07a9 --- /dev/null +++ b/cde/programs/types/rhythmbox.dt @@ -0,0 +1,78 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION rhythmbox +{ + LABEL rhythmbox + TYPE COMMAND + EXEC_STRING rhythmbox %Arg_1% + ICON rhythmbox + WINDOW_TYPE NO_STDIO + DESCRIPTION rhythmbox: music player. +} + +#DATA_ATTRIBUTES vlc_FILE_1 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION MP3 files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_1A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_1 +# MODE !d +# PATH_PATTERN *.mp3 +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_1 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} +# +#DATA_ATTRIBUTES vlc_FILE_3 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION OGG files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_3A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_3 +# MODE !d +# PATH_PATTERN *.ogg +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_3 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} + diff --git a/cde/programs/types/rosegarden.dt b/cde/programs/types/rosegarden.dt new file mode 100644 index 00000000..6d26c092 --- /dev/null +++ b/cde/programs/types/rosegarden.dt @@ -0,0 +1,78 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION rosegarden +{ + LABEL rosegarden + TYPE COMMAND + EXEC_STRING rosegarden %Arg_1% + ICON rosegarden + WINDOW_TYPE NO_STDIO + DESCRIPTION rosegarden: Create music. +} + +#DATA_ATTRIBUTES vlc_FILE_1 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION MP3 files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_1A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_1 +# MODE !d +# PATH_PATTERN *.mp3 +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_1 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} +# +#DATA_ATTRIBUTES vlc_FILE_3 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION OGG files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_3A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_3 +# MODE !d +# PATH_PATTERN *.ogg +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_3 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} + diff --git a/cde/programs/types/skype.dt b/cde/programs/types/skype.dt new file mode 100644 index 00000000..3ef5443c --- /dev/null +++ b/cde/programs/types/skype.dt @@ -0,0 +1,33 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION skype +{ + LABEL skype + TYPE COMMAND + EXEC_STRING skype %Arg_1% + ICON skype + WINDOW_TYPE NO_STDIO + DESCRIPTION Talk through SKYPE. +} diff --git a/cde/programs/types/sound-juicer.dt b/cde/programs/types/sound-juicer.dt new file mode 100644 index 00000000..e9d60a6a --- /dev/null +++ b/cde/programs/types/sound-juicer.dt @@ -0,0 +1,78 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION sound-juicer +{ + LABEL sound-juicer + TYPE COMMAND + EXEC_STRING sound-juicer "%Arg_1%" + ICON sound-juicer + WINDOW_TYPE NO_STDIO + DESCRIPTION sound-juicer: Rip audio CDs. +} + +#DATA_ATTRIBUTES vlc_FILE_1 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION MP3 files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_1A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_1 +# MODE !d +# PATH_PATTERN *.mp3 +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_1 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} +# +#DATA_ATTRIBUTES vlc_FILE_3 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION OGG files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_3A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_3 +# MODE !d +# PATH_PATTERN *.ogg +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_3 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} + diff --git a/cde/programs/types/stellarium.dt b/cde/programs/types/stellarium.dt new file mode 100644 index 00000000..38aa11e1 --- /dev/null +++ b/cde/programs/types/stellarium.dt @@ -0,0 +1,33 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION stellarium +{ + LABEL stellarium + TYPE COMMAND + EXEC_STRING stellarium %Arg_1% + ICON stellarium + WINDOW_TYPE NO_STDIO + DESCRIPTION stellarium is an astronomy program. +} diff --git a/cde/programs/types/supertux.dt b/cde/programs/types/supertux.dt new file mode 100644 index 00000000..3458a551 --- /dev/null +++ b/cde/programs/types/supertux.dt @@ -0,0 +1,9 @@ +ACTION supertux +{ + LABEL supertux + TYPE COMMAND + EXEC_STRING supertux + ICON supertux + WINDOW_TYPE NO_STDIO +} + diff --git a/cde/programs/types/synaptic.dt b/cde/programs/types/synaptic.dt new file mode 100644 index 00000000..f525fb25 --- /dev/null +++ b/cde/programs/types/synaptic.dt @@ -0,0 +1,33 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION synaptic +{ + LABEL synaptic + TYPE COMMAND + EXEC_STRING synaptic %Arg_1% + ICON synaptic + WINDOW_TYPE NO_STDIO + DESCRIPTION synaptic: package manager. +} diff --git a/cde/programs/types/thunderbird.dt b/cde/programs/types/thunderbird.dt new file mode 100644 index 00000000..ca432200 --- /dev/null +++ b/cde/programs/types/thunderbird.dt @@ -0,0 +1,58 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION thunderbird +{ + LABEL thunderbird + TYPE COMMAND + EXEC_STRING thunderbird %Arg_1% + ICON thunderbird + WINDOW_TYPE NO_STDIO + DESCRIPTION The THUNDERBIRD Mailer. +} + +DATA_ATTRIBUTES thunderbird_FILE_1 +{ + ACTIONS Open + ICON Dtmail + DESCRIPTION EML files open with THUNDERBIRD Mailer. +} + +DATA_CRITERIA thunderbird_FILE_1A +{ + DATA_ATTRIBUTES_NAME thunderbird_FILE_1 + MODE !d + PATH_PATTERN *.eml +} + +ACTION Open +{ + ARG_TYPE thunderbird_FILE_1 + TYPE MAP + MAP_ACTION thunderbird + LABEL Open +} + + + diff --git a/cde/programs/types/tuxpaint.dt b/cde/programs/types/tuxpaint.dt new file mode 100644 index 00000000..3ae6ba56 --- /dev/null +++ b/cde/programs/types/tuxpaint.dt @@ -0,0 +1,33 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION tuxpaint +{ + LABEL tuxpaint + TYPE COMMAND + EXEC_STRING tuxpaint %Arg_1% + ICON tuxpaint + WINDOW_TYPE NO_STDIO + DESCRIPTION tuxpaint is a paint program. +} diff --git a/cde/programs/types/videoTypes.dt b/cde/programs/types/videoTypes.dt new file mode 100644 index 00000000..802cd638 --- /dev/null +++ b/cde/programs/types/videoTypes.dt @@ -0,0 +1,375 @@ +############################################################################### +# +# videoTypes.dt +# +# Additional Action and DataType definitions for Common Desktop Environment +# Video +# +############################################################################### + +############################################################################### +## MPEG + +DATA_ATTRIBUTES MPEG +{ + ACTIONS Open + ICON video + NAME_TEMPLATE %s.mpg + MIME_TYPE video/mpeg + DESCRIPTION This file contains a graphics image movie in MPEG \ + Interchange File Format. Its data type is \ + named MPEG. MPEG files have names ending with \ + '.MPEG', '.mpg', '.mpeg', or '.MPG'. + TYPE_LABEL MPEG +} +DATA_CRITERIA MPEG1 +{ + DATA_ATTRIBUTES_NAME MPEG + MODE f + NAME_PATTERN *.MPEG +} +DATA_CRITERIA MPEG2 +{ + DATA_ATTRIBUTES_NAME MPEG + MODE f + NAME_PATTERN *.mpg +} +DATA_CRITERIA MPEG3 +{ + DATA_ATTRIBUTES_NAME MPEG + MODE f + NAME_PATTERN *.mpeg +} +DATA_CRITERIA MPEG4 +{ + DATA_ATTRIBUTES_NAME MPEG + MODE f + NAME_PATTERN *.MPG +} +DATA_CRITERIA MPEG5 +{ + DATA_ATTRIBUTES_NAME MPEG + MODE f + CONTENT 0 long 0x000001b3 +} +DATA_CRITERIA MPEG6 +{ + DATA_ATTRIBUTES_NAME MPEG + MODE f + NAME_PATTERN *.MP4 +} +DATA_CRITERIA MPEG7 +{ + DATA_ATTRIBUTES_NAME MPEG + MODE f + NAME_PATTERN *.mp4 +} +DATA_CRITERIA MPEG8 +{ + DATA_ATTRIBUTES_NAME MPEG + MODE f + NAME_PATTERN *.MP3 +} +DATA_CRITERIA MPEG9 +{ + DATA_ATTRIBUTES_NAME MPEG + MODE f + NAME_PATTERN *.mp3 +} +DATA_CRITERIA MPEG10 +{ + DATA_ATTRIBUTES_NAME MPEG + MODE f + NAME_PATTERN *.mkv +} +ACTION Open +{ + LABEL %|nls-1-Open| + ARG_TYPE MPEG + TYPE MAP + MAP_ACTION DisplayVideo + DESCRIPTION Use the mpeg viewer +} +ACTION Print +{ + LABEL %|nls-2-Print| + ARG_TYPE MPEG + TYPE MAP + MAP_ACTION NoPrint +} + + +############################################################################### +## QTMOV + +DATA_ATTRIBUTES QTMOV +{ + ACTIONS Open + ICON video + NAME_TEMPLATE %s.mov + MIME_TYPE video/quicktime + DESCRIPTION This file contains a graphics image movie in QTMOV. \ + Its data type is \ + named MOV. MOV files have names ending with \ + '.MOV', '.mov', '.qt', or '.QT'. + TYPE_LABEL QTMOV +} +DATA_CRITERIA QTMOV1 +{ + DATA_ATTRIBUTES_NAME QTMOV + MODE f + NAME_PATTERN *.MOV +} +DATA_CRITERIA QTMOV2 +{ + DATA_ATTRIBUTES_NAME QTMOV + MODE f + NAME_PATTERN *.mov +} +DATA_CRITERIA QTMOV3 +{ + DATA_ATTRIBUTES_NAME QTMOV + MODE f + NAME_PATTERN *.qt +} +DATA_CRITERIA QTMOV4 +{ + DATA_ATTRIBUTES_NAME QTMOV + MODE f + NAME_PATTERN *.QT +} +DATA_CRITERIA QTMOV5 +{ + DATA_ATTRIBUTES_NAME QTMOV + MODE f + NAME_PATTERN *.moov +} +DATA_CRITERIA QTMOV6 +{ + DATA_ATTRIBUTES_NAME QTMOV + MODE f + NAME_PATTERN *.MooV +} +DATA_CRITERIA QTMOV7 +{ + DATA_ATTRIBUTES_NAME QTMOV + MODE f + NAME_PATTERN *.hqx +} +DATA_CRITERIA QTMOV8 +{ + DATA_ATTRIBUTES_NAME QTMOV + MODE f + NAME_PATTERN *.qtvr +} +DATA_CRITERIA QTMOV9 +{ + DATA_ATTRIBUTES_NAME QTMOV + MODE f + CONTENT 4 string moov +} +DATA_CRITERIA QTMOV6 +{ + DATA_ATTRIBUTES_NAME QTMOV + MODE f + CONTENT 4 string mdat +} +ACTION Open +{ + LABEL %|nls-1-Open| + ARG_TYPE QTMOV + TYPE MAP + MAP_ACTION DisplayVideo + DESCRIPTION Use the Xanim viewer +} +ACTION Print +{ + LABEL %|nls-2-Print| + ARG_TYPE QTMOV + TYPE MAP + MAP_ACTION NoPrint +} + + +############################################################################### +## MISCANIM + +DATA_ATTRIBUTES MISCANIM +{ + ACTIONS Open + ICON video + NAME_TEMPLATE %s.x-anim + MIME_TYPE video/x-flick + DESCRIPTION This file contains a graphics image movie in one \ + of many formats. + TYPE_LABEL MISCANIM +} +DATA_CRITERIA MISCANIM1 +{ + DATA_ATTRIBUTES_NAME MISCANIM + MODE f + NAME_PATTERN *.fli +} +DATA_CRITERIA MISCANIM2 +{ + DATA_ATTRIBUTES_NAME MISCANIM + MODE f + NAME_PATTERN *.flc +} +DATA_CRITERIA MISCANIM3 +{ + DATA_ATTRIBUTES_NAME MISCANIM + MODE f + NAME_PATTERN *.dl +} +DATA_CRITERIA MISCANIM3 +{ + DATA_ATTRIBUTES_NAME MISCANIM + MODE f + NAME_PATTERN *.anim +} +DATA_CRITERIA MISCANIM3 +{ + DATA_ATTRIBUTES_NAME MISCANIM + MODE f + NAME_PATTERN *.anim3 +} +DATA_CRITERIA MISCANIM3 +{ + DATA_ATTRIBUTES_NAME MISCANIM + MODE f + NAME_PATTERN *.anim5 +} +DATA_CRITERIA MISCANIM3 +{ + DATA_ATTRIBUTES_NAME MISCANIM + MODE f + NAME_PATTERN *.anim7 +} +DATA_CRITERIA MISCANIM3 +{ + DATA_ATTRIBUTES_NAME MISCANIM + MODE f + NAME_PATTERN *.iff +} +DATA_CRITERIA MISCANIM9 +{ + DATA_ATTRIBUTES_NAME MISCANIM + MODE f + CONTENT 4 byte 0x11 0xAF +} + +DATA_CRITERIA MISCANIM0 +{ + DATA_ATTRIBUTES_NAME MISCANIM + MODE f + CONTENT 4 byte 0x12 0xAF +} +ACTION Open +{ + LABEL %|nls-1-Open| + ARG_TYPE MISCANIM + TYPE MAP + MAP_ACTION DisplayVideo + DESCRIPTION Use the Xanim viewer +} +ACTION Print +{ + LABEL %|nls-2-Print| + ARG_TYPE MISCANIM + TYPE MAP + MAP_ACTION NoPrint +} + + +############################################################################### +## AVI + +DATA_ATTRIBUTES AVI +{ + ACTIONS Open + ICON video + NAME_TEMPLATE %s.avi + MIME_TYPE video/x-microsoft-avi + DESCRIPTION This file contains a graphics image movie in AVI. \ + Its data type is \ + named AVI. AVI files have names ending with \ + '.avi'. + TYPE_LABEL AVI +} +DATA_CRITERIA AVI1 +{ + DATA_ATTRIBUTES_NAME AVI + MODE f + NAME_PATTERN *.avi +} +DATA_CRITERIA AVI2 +{ + DATA_ATTRIBUTES_NAME AVI + MODE f + NAME_PATTERN *.AVI +} +ACTION Open +{ + LABEL %|nls-1-Open| + ARG_TYPE AVI + TYPE MAP + MAP_ACTION DisplayVideo + DESCRIPTION Use the Xanim viewer +} +ACTION Print +{ + LABEL %|nls-2-Print| + LABEL Print + ARG_TYPE AVI + TYPE MAP + MAP_ACTION NoPrint +} + +############################################################################### +## JMOV + +DATA_ATTRIBUTES JMOV +{ + ACTIONS Open + ICON video + NAME_TEMPLATE %s.jmov + MIME_TYPE video/x-microsoft-JMOV + DESCRIPTION This file contains a graphics image movie in JMOV. \ + Its data type is \ + named JMOV. AVI files have names ending with \ + '.JMOV'. + TYPE_LABEL JMOV +} +DATA_CRITERIA JMOV1 +{ + DATA_ATTRIBUTES_NAME JMOV + MODE f + NAME_PATTERN *.jmov +} +DATA_CRITERIA JMOV2 +{ + DATA_ATTRIBUTES_NAME JMOV + MODE f + NAME_PATTERN *.JMV +} +ACTION Open +{ + LABEL %|nls-1-Open| + ARG_TYPE JMOV + TYPE MAP + MAP_ACTION DisplayVideo + DESCRIPTION Use the Xanim viewer +} +ACTION Print +{ + LABEL %|nls-2-Print| + ARG_TYPE JMOV + TYPE MAP + MAP_ACTION NoPrint +} + + + +############################################################################### +## EOF diff --git a/cde/programs/types/virtualbox.dt b/cde/programs/types/virtualbox.dt new file mode 100644 index 00000000..6bbe0237 --- /dev/null +++ b/cde/programs/types/virtualbox.dt @@ -0,0 +1,78 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION virtualbox +{ + LABEL virtualbox + TYPE COMMAND + EXEC_STRING virtualbox %Arg_1% + ICON virtualbox + WINDOW_TYPE NO_STDIO + DESCRIPTION virtualbox: run OSes in a desktop window. +} + +#DATA_ATTRIBUTES vlc_FILE_1 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION MP3 files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_1A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_1 +# MODE !d +# PATH_PATTERN *.mp3 +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_1 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} +# +#DATA_ATTRIBUTES vlc_FILE_3 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION OGG files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_3A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_3 +# MODE !d +# PATH_PATTERN *.ogg +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_3 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} + diff --git a/cde/programs/types/vlc.dt b/cde/programs/types/vlc.dt new file mode 100644 index 00000000..877effc7 --- /dev/null +++ b/cde/programs/types/vlc.dt @@ -0,0 +1,34 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION vlc +{ + LABEL vlc + TYPE COMMAND + EXEC_STRING vlc "%Arg_1%" + ICON vlc + WINDOW_TYPE NO_STDIO + DESCRIPTION VLC Media Player +} + diff --git a/cde/programs/types/wicd.dt b/cde/programs/types/wicd.dt new file mode 100644 index 00000000..561473c5 --- /dev/null +++ b/cde/programs/types/wicd.dt @@ -0,0 +1,33 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION wicd +{ + LABEL wicd + TYPE COMMAND + EXEC_STRING wicd-gtk %Arg_1% + ICON wicd + WINDOW_TYPE NO_STDIO + DESCRIPTION wicd: configure your ethernet and wifi connections. +} diff --git a/cde/programs/types/xboard.dt b/cde/programs/types/xboard.dt new file mode 100644 index 00000000..eb924f94 --- /dev/null +++ b/cde/programs/types/xboard.dt @@ -0,0 +1,9 @@ +ACTION xboard +{ + LABEL xboard + TYPE COMMAND + EXEC_STRING xboard + ICON xboard + WINDOW_TYPE NO_STDIO +} + diff --git a/cde/programs/types/xdvi.dt b/cde/programs/types/xdvi.dt new file mode 100644 index 00000000..b3335a5b --- /dev/null +++ b/cde/programs/types/xdvi.dt @@ -0,0 +1,72 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION xdvi +{ + LABEL xdvi + TYPE COMMAND + EXEC_STRING xdvi "%Arg_1%" + ICON dvi + WINDOW_TYPE NO_STDIO + DESCRIPTION xdvi is the default dvi viewer. +} + +DATA_ATTRIBUTES xdvi_FILE_1 +{ + ACTIONS Open,Print + ICON dvi + DESCRIPTION DVI files open with xdvi. +} + +DATA_CRITERIA xdvi_FILE_1A +{ + DATA_ATTRIBUTES_NAME xdvi_FILE_1 + MODE !d + PATH_PATTERN *.dvi +} + +ACTION Open +{ + ARG_TYPE xdvi_FILE_1 + TYPE MAP + MAP_ACTION xdvi + LABEL Open +} + +ACTION xdvi_FILE_1_PRINT +{ + TYPE COMMAND + EXEC_STRING dvips "%Arg_1%" -o - | lpr + WINDOW_TYPE NO_STDIO +} + +ACTION Print +{ + ARG_TYPE xdvi_FILE_1 + TYPE MAP + MAP_ACTION xdvi_FILE_1_PRINT + LABEL Print +} + + diff --git a/cde/programs/types/xine.dt b/cde/programs/types/xine.dt new file mode 100644 index 00000000..79443214 --- /dev/null +++ b/cde/programs/types/xine.dt @@ -0,0 +1,78 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION xine +{ + LABEL xine + TYPE COMMAND + EXEC_STRING xine "%Arg_1%" + ICON xine + WINDOW_TYPE NO_STDIO + DESCRIPTION xine: movie player. +} + +#DATA_ATTRIBUTES vlc_FILE_1 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION MP3 files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_1A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_1 +# MODE !d +# PATH_PATTERN *.mp3 +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_1 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} +# +#DATA_ATTRIBUTES vlc_FILE_3 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION OGG files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_3A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_3 +# MODE !d +# PATH_PATTERN *.ogg +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_3 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} + diff --git a/cde/programs/types/xournal.dt b/cde/programs/types/xournal.dt new file mode 100644 index 00000000..7636f505 --- /dev/null +++ b/cde/programs/types/xournal.dt @@ -0,0 +1,78 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 4747 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION xournal +{ + LABEL xournal + TYPE COMMAND + EXEC_STRING xournal "%Arg_1%" + ICON xournal + WINDOW_TYPE NO_STDIO + DESCRIPTION xournal: pdf presentations with on screen writing support. +} + +#DATA_ATTRIBUTES vlc_FILE_1 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION MP3 files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_1A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_1 +# MODE !d +# PATH_PATTERN *.mp3 +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_1 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} +# +#DATA_ATTRIBUTES vlc_FILE_3 +#{ +# ACTIONS Open +# ICON mp3 +# DESCRIPTION OGG files open with VLC Media Player. +#} +# +#DATA_CRITERIA vlc_FILE_3A +#{ +# DATA_ATTRIBUTES_NAME vlc_FILE_3 +# MODE !d +# PATH_PATTERN *.ogg +#} +# +#ACTION Open +#{ +# ARG_TYPE vlc_FILE_3 +# TYPE MAP +# MAP_ACTION vlc +# LABEL Open +#} + diff --git a/cde/programs/types/xpdf.dt b/cde/programs/types/xpdf.dt new file mode 100644 index 00000000..631b45f0 --- /dev/null +++ b/cde/programs/types/xpdf.dt @@ -0,0 +1,34 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION xpdf +{ + LABEL xpdf + TYPE COMMAND + EXEC_STRING xpdf "%Arg_1%" + ICON xpdf + WINDOW_TYPE NO_STDIO + DESCRIPTION Xpdf pdf viewer. +} + diff --git a/cde/programs/types/xv.dt b/cde/programs/types/xv.dt new file mode 100644 index 00000000..b280f7ac --- /dev/null +++ b/cde/programs/types/xv.dt @@ -0,0 +1,35 @@ +###################################################################### +# +# Common Desktop Environment (CDE) +# +# Action and DataType Definition File +# +# Generated by the CreateAction tool +# +# $Revision: 1.0 +# +# $KEY: 108 +# +###################################################################### +# +# WARNING: +# +# This file was generated by the CDE CreateAction tool. +# If this file is modified by some other tool, such as vi, +# the CreateAction tool will no longer be able to load and +# update this file. For this reason, changes to this file +# should be handled through CreateAction whenever possible. +# +###################################################################### + +ACTION xv +{ + LABEL xv + TYPE COMMAND + EXEC_STRING xv "%Arg_1%" + ICON xv + WINDOW_TYPE NO_STDIO + DESCRIPTION xv image viewer. +} + +