home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 Mobile / Chip_Mobile_2001.iso / palm / hobby / pdof / pdof.EXE / pdof.rcp < prev    next >
Text File  |  2000-11-27  |  3KB  |  58 lines

  1. /*
  2.     PDoF 1.2 Copyright (c) 2000 Matti J. KΣrki
  3.  
  4.     This program is free software; you can redistribute it and/or modify
  5.     it under the terms of the GNU General Public License as published by
  6.     the Free Software Foundation; either version 2 of the License, or
  7.     (at your option) any later version.
  8.  
  9.     This program is distributed in the hope that it will be useful,
  10.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.     GNU General Public License for more details.
  13.  
  14.     You should have received a copy of the GNU General Public License
  15.     along with this program; if not, write to the Free Software
  16.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  17. */
  18.  
  19. #include "pdof.h"
  20.  
  21. FORM ID PDoFForm AT (1 1 158 158)
  22. FRAME
  23. MODAL
  24. NOSAVEBEHIND
  25. HELPID 1
  26. BEGIN
  27.   TITLE "PDoF"
  28.   LABEL "Enter focal length (mm): " ID PDoFLabel1 AT (5 32)
  29.   FIELD ID PDoFField1 AT (5 PREVBOTTOM+2 100 AUTO) EDITABLE UNDERLINED MAXCHARS 10
  30.   LABEL "Enter aperture: " ID PDoFLabel2 AT (5 PREVBOTTOM+2)
  31.   FIELD ID PDoFField2 AT (5 PREVBOTTOM+2 100 AUTO) EDITABLE UNDERLINED MAXCHARS 10
  32.   LABEL "Enter distance (m): " ID PDoFLabel3 AT (5 PREVBOTTOM+2)
  33.   FIELD ID PDoFField3 AT (5 PREVBOTTOM+2 100 AUTO) EDITABLE UNDERLINED MAXCHARS 10
  34.  
  35.   LABEL "Film size: " ID PDoFLabel4 AT (5 PREVBOTTOM+2)
  36.   POPUPTRIGGER "" PDoFTrigger1 AT (PREVRIGHT+2 PREVTOP 60 AUTO) LEFTANCHOR
  37.   LIST "35mm" "6x6cm" "4x5in" ID PDoFList1 AT (PREVLEFT PREVTOP 50 AUTO) VISIBLEITEMS 3 NONUSABLE
  38.   POPUPLIST ID PDoFTrigger1 PDoFList1
  39.  
  40.   BUTTON "Calculate" ID PDoFButton1 AT (5 PREVTOP+16 AUTO AUTO)
  41.   GRAFFITISTATEINDICATOR AT (140 144)
  42. END
  43.  
  44. ALERT ID InformationResults
  45. INFORMATION
  46. BEGIN
  47.   TITLE "Results"
  48.   MESSAGE "Near edge:\n^1 m\nFar Edge:\n^2 m"
  49.   BUTTONS "OK"
  50. END
  51.  
  52. STRING ID 1 "PDoF 1.2 Copyright ⌐ 2000 Matti J. KΣrki\n\nmjk@iki.fi\nhttp://www.iki.fi/mjk\n\nPDoF is a small application for photographers to help calculating Depth-of-Field values.\n\nUsage:\nEnter required values and press Calculate button. Use '.' as a decimal separator.\n\nPlease, feel free to send me an e-mail if you like PDoF. You can also send me feedback, bug reports and comments about the program. The address is: <mjk@iki.fi>.\n\nThis program comes without any warranty. Use at your own risk.\n\nThis program is distributed under the General Public License Version 2.0. To see detailed license, please read the GPL.TXT file or visit at the web site http://www.gnu.org/copyleft/gpl.txt\n"
  53.  
  54. VERSION ID 1 "1.2"
  55. ICON "pdof.pbitm"
  56. APPLICATIONICONNAME ID 1000 "PDoF"
  57.  
  58.