Changeset 10
- Timestamp:
- Feb 21, 2018, 12:49:59 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/common.rc
r2 r10 25 25 #include "version.h" 26 26 27 ICON 1 " src\\data\\gotcha.ico"28 POINTER 2 " src\\data\\gotcha.ptr"29 BITMAP 3 " src\\data\\snap.bmp"30 BITMAP 4 " src\\data\\smile.bmp"27 ICON 1 "..\\data\\gotcha.ico" 28 POINTER 2 "..\\data\\gotcha.ptr" 29 BITMAP 3 "..\\data\\snap.bmp" 30 BITMAP 4 "..\\data\\smile.bmp" 31 31 32 32 /** Haupthilfstabelle ****************************************************/ -
trunk/czech/gotrescz.rc
r4 r10 22 22 23 23 /* Please do NOT try to translate the following statement :-) */ 24 RCINCLUDE " src\common.rc"24 RCINCLUDE "..\common.rc" 25 25 26 26 /* Pros¡m, upravte jmno jazyka (ale ponechte ¡slo) :-) -
trunk/deutsch/gotresde.rc
r5 r10 20 20 21 21 /* Bitte die folgende Zeile NICHT bersetzen :-) */ 22 RCINCLUDE " src\common.rc"22 RCINCLUDE "..\common.rc" 23 23 24 24 /* Please adjust the name of the language (but leave the number alone :-) -
trunk/dll/gotchdll.h
r2 r10 2 2 #ifndef _THTH_GOTCHDLL_H_ 3 3 #define _THTH_GOTCHDLL_H_ 4 #ifdef __cplusplus 5 extern "C" { 6 #endif 4 7 5 8 extern void EXPENTRY InitDLL (HAB hab, HWND hwnd); … … 8 11 extern USHORT Version (VOID); 9 12 13 #ifdef __cplusplus 14 } 10 15 #endif 16 17 #endif -
trunk/english/gotcha_en.ipf
r6 r10 1 1 :userdoc. 2 2 3 .im src\common.ipf3 .im ..\common.ipf 4 4 5 5 .*------------------------------------------------------------------------- … … 7 7 8 8 :h1 id=about res=1000.About &progname. 9 :artwork name=' src\data\gotcha.bmp' align=center.9 :artwork name='..\data\gotcha.bmp' align=center. 10 10 :p.&progname. is a small (well, not :hp1.that:ehp1. small any more) 11 11 utility for OS/2 which allows to easily capture windows, window interiors, … … 16 16 .* FIXME 17 17 .* changed from: 18 .*(bitmap format)18 (bitmap format) 19 19 .* changed to: 20 .*(in many image formats, depending on what MMOS/2 can do).20 (in many image formats, depending on what MMOS/2 can do). 21 21 22 22 :p.&progname. also has features for automatically making a capture every n … … 373 373 .*------------------------------------------------------------------------- 374 374 .*Version history 375 :h2 id=history.Version history :p.Here you can see what was added or changed 375 :h2 id=history res=5001.Version history 376 377 :p.Here you can see what was added or changed 376 378 in the different versions of the program. 377 379 … … 543 545 .*fold00.*Future enhancements 544 546 545 :h2 id=future .Future enhancements547 :h2 id=future res=5002.Future enhancements 546 548 :p.Well, there's still a few things that users requested and that will be 547 549 added a long time ago in a galaxy far away ... aarg, a future version I … … 557 559 .*fold00.*Disclaimer & legal stuff 558 560 559 :h1 id=disclaimer .Disclaimer &. legal stuff561 :h1 id=disclaimer res=5003.Disclaimer &. legal stuff 560 562 :p.Following are the usual disclaimers. For those of you, who have read them 561 563 far too many times, here is just the short version&colon. … … 605 607 .*fold00.*GNU Public License 606 608 607 :h1 id=gpl .GNU GENERAL PUBLIC LICENSE609 :h1 id=gpl res=5004.GNU GENERAL PUBLIC LICENSE 608 610 609 611 :lines. … … 954 956 .*fold00.*Author & Gotcha! homepage 955 957 956 :h1 id=author .Author &. &progname. homepage958 :h1 id=author res=5005.Author &. &progname. homepage 957 959 :p.:hp7.Author:ehp7. 958 960 … … 970 972 :edl. 971 973 972 :artwork name=' src\data\teamlogo.bmp' align=center.974 :artwork name='..\data\teamlogo.bmp' align=center. 973 975 :p.Proud member of Team OS/2 Region Trier (:hp1.www.teamos2.ipcon.de:ehp1.), 974 976 the makers of the "Team Trier Collection"-CDROM. … … 986 988 .*------------------------------------------------------------------------- 987 989 .*fold00.*Help wanted! 988 :h1 id=helpwanted .Help wanted!990 :h1 id=helpwanted res=5006.Help wanted! 989 991 :p.Now that &progname. supports other languages, I of course want to include 990 992 as many as possible. The problem is that I only speak english and german well … … 1005 1007 .*fold00.*Credits 1006 1008 1007 :h1 id=credits .Credits1009 :h1 id=credits res=5007.Credits 1008 1010 :p.I wish to thank the following people, for their help and support with 1009 1011 &progname.&colon. … … 1027 1029 .*------------------------------------------------------------------------- 1028 1030 .*fold00.*Registering 1029 :h1 id=register ."Registering"1031 :h1 id=register res=5008."Registering" 1030 1032 .*:p. if you are satisfied with what &progname. 1.67 offers, you are free to keep 1031 1033 .*using this version ... but please keep in mind that it lacks many useful … … 1109 1111 .*fold00.*Dedication 1110 1112 1111 :h1 id=dedication .Dedication1112 :p.:artwork name=' src\data\rosaleen.bmp' align=center.1113 :h1 id=dedication res=5009.Dedication 1114 :p.:artwork name='..\data\rosaleen.bmp' align=center. 1113 1115 :hp2. 1114 1116 .ce Gotcha! is dedicated to Rosaleen. -
trunk/gotcha.cpp
r2 r10 21 21 22 22 #include "gotcha.h" 23 //#include "dll/gotchdll.h"23 #include "dll/gotchdll.h" 24 24 #include "settings.h" 25 25 #include "string.h" -
trunk/gotcha.h
r2 r10 28 28 #define INCL_DOSRESOURCES 29 29 #define INCL_WINHELP 30 #define INCL_MMIOOS2 30 31 31 32 #define OS2EMX_PLAIN_CHAR … … 83 84 84 85 HBITMAP CaptureWindow (HWND hwnd, HWND hwndParent, PRECTL prcl, BOOL f); 85 VOID SaveBitmap (HBITMAP hbm, HPS hps );86 VOID SaveBitmap (HBITMAP hbm, HPS hps, int width, int height, int bitCount); 86 87 VOID SaveBitmapToClipboard (HBITMAP hbm); 87 88 VOID SaveBitmapToFile (HBITMAP hbm, PSZ psz, HPS hps); -
trunk/gotcha.rc
r2 r10 1 ICON 1 " SRC\\gotcha.ico"1 ICON 1 ".\\gotcha.ico" -
trunk/italiano/gotcha_it.ipf
r6 r10 1 1 :userdoc. 2 2 3 .* 3 .* Note from Thorsten: This file is not licensed under the GPL but 4 4 .* copyright by Alberto Gabrielli. 5 5 6 6 .*############################## 7 7 .* 8 .* 9 .* 10 .* 11 .* 12 .* 8 .* Gotcha! 9 .* ======= 10 .* italiano.ipf 11 .* v.1.73 - GA 12 .* 2002-05-21 13 13 .* 14 .* 14 .* (C) 2002 - Alberto Gabrielli 15 15 .* 16 16 .*############################## … … 24 24 .* - Removed a "&version." no longer needed 25 25 26 .im src\common.ipf26 .im ..\common.ipf 27 27 28 28 .*------------------------------------------------------------------------- … … 30 30 31 31 :h1 id=about res=1000.Informazioni sul programma 32 :artwork name=' src\data\gotcha.bmp' align=center.32 :artwork name='..\data\gotcha.bmp' align=center. 33 33 .*:p.Attention&colon. This version of the documentation may be outdated or 34 34 .*incomplete. If you think you are missing something, see the English version! … … 415 415 .*------------------------------------------------------------------------- 416 416 .*FOLD00.*Version history 417 :h2 id=history.Cronologia :p.Questa pagina contiene l'elenco dei cambiamenti nelle varie 417 :h2 id=history res=5001.Cronologia 418 419 :p.Questa pagina contiene l'elenco dei cambiamenti nelle varie 418 420 versioni del programma. 419 421 … … 527 529 .*fold00.*Bugs 528 530 529 :h2 id=bugs .Problemi conosciuti531 :h2 id=bugs res=5002.Problemi conosciuti 530 532 :p.Dopo il rilascio della v1.00, la mia sensazione che il codice di &progname. fosse il 531 533 pi pasticciato degli ultimi anni si rivelata esatta, visto che … … 604 606 .*fold00.*Future enhancements 605 607 606 :h2 id=future .Miglioramenti futuri608 :h2 id=future res=5003.Miglioramenti futuri 607 609 :p.Beh, ci sono ancora alcune cose richieste dagli utenti, e che verranno aggiunte in un tempo 608 610 lontano, in una remotissima galassia... aargh, in una futura versione, intendevo... ;-) … … 616 618 .*fold00.*Disclaimer & legal stuff 617 619 618 :h1 id=disclaimer .Disclaimer &. questioni legali620 :h1 id=disclaimer res=5004.Disclaimer &. questioni legali 619 621 620 622 :p.[inizio N.d.T.] … … 700 702 .*fold00.*GNU Public License 701 703 702 :h1 id=gpl .GNU GENERAL PUBLIC LICENSE704 :h1 id=gpl res=5005.GNU GENERAL PUBLIC LICENSE 703 705 704 706 :lines. … … 1049 1051 .*fold00.*Author & Gotcha! homepage 1050 1052 1051 :h1 id=author .L'autore &. la pagina Web di &progname.1053 :h1 id=author res=5006.L'autore &. la pagina Web di &progname. 1052 1054 :p.:hp7.Autore:ehp7. 1053 1055 … … 1065 1067 :edl. 1066 1068 1067 :artwork name=' src\data\teamlogo.bmp' align=center.1069 :artwork name='..\data\teamlogo.bmp' align=center. 1068 1070 :p.Membro orgoglioso del Team OS/2 Region Trier (:hp1.www.teamos2.ipcon.de:ehp1.), 1069 1071 i creatori del CD-ROM "Team Trier Collection". … … 1080 1082 .*------------------------------------------------------------------------- 1081 1083 .*fold00.*Help wanted! 1082 :h1 id=helpwanted .Richiesta di aiuto!1084 :h1 id=helpwanted res=5007.Richiesta di aiuto! 1083 1085 1084 1086 :p.Ora che &progname. gestisce altre lingue, chiaro che vorrei includerne quante pi … … 1102 1104 .*fold00.*Credits 1103 1105 1104 :h1 id=credits .Ringraziamenti1106 :h1 id=credits res=5008.Ringraziamenti 1105 1107 :p.Per il loro l'aiuto ed appoggio su &progname., desidero ringraziare le seguenti persone&colon. 1106 1108 … … 1124 1126 .*------------------------------------------------------------------------- 1125 1127 .*fold00.*Registering 1126 :h1 id=register ."Registrazione"1128 :h1 id=register res=5009."Registrazione" 1127 1129 .*:p. if you are satisfied with what &progname. 1.67 offers, you are free to keep 1128 1130 .*using this version ... but please keep in mind that it lacks many useful … … 1227 1229 .*fold00.*Dedication 1228 1230 1229 :h1 id=dedication .Dedica1230 :p.:artwork name=' src\data\rosaleen.bmp' align=center.1231 :h1 id=dedication res=5010.Dedica 1232 :p.:artwork name='..\data\rosaleen.bmp' align=center. 1231 1233 :hp2. 1232 1234 .ce &progname. dedicato a Rosaleen. -
trunk/italiano/gotresit.rc
r5 r10 56 56 57 57 /* Please do NOT try to translate the following statement :-) */ 58 RCINCLUDE " src\common.rc"58 RCINCLUDE "..\common.rc" 59 59 60 60 /* Please adjust the name of the language (but leave the number alone :-) -
trunk/mainwin.cpp
r2 r10 326 326 // I have no idea why this delay is necessary, but CAP_SCREEN with 327 327 // hiding our window does not work without it ... 328 _sleep2(100);328 DosSleep (100); 329 329 usState = STATE_SELECTWINDOW; 330 330 WinSendMsg (hwnd, UM_SELECTWINDOW, 0,0); … … 466 466 // I have no idea why this delay is necessary, but CAP_SCREEN with 467 467 // hiding our window does not work without it ... 468 _sleep2(100);468 DosSleep (100); 469 469 WinSendMsg (hwnd, UM_CAPTURE2, 0,0); 470 470 return MRESULT (FALSE); -
trunk/portbras/gotcha_br.ipf
r6 r10 2 2 .* :title.DocumentaÆo do Gotcha! 1.65 3 3 4 .* 4 .* Note from Thorsten: This file is not licensed under the GPL but 5 5 .* copyright by rico Mendona. 6 6 7 .im src\common.ipf7 .im ..\common.ipf 8 8 9 9 .*------------------------------------------------------------------------- … … 11 11 12 12 :h1 id=about res=1000.Sobre Gotcha! 13 :artwork name=' src\\data\\gotcha.bmp' align=center.13 :artwork name='..\\data\\gotcha.bmp' align=center. 14 14 :p.Attention&colon. This version of the documentation may be outdated or 15 15 incomplete. If you think you are missing something, see the English version! … … 317 317 .*------------------------------------------------------------------------- 318 318 .*FOLD00.*Alteraäes em cada versÆo 319 :h2 id=history .Alteraäes em cada versÆo :p.Aqui voc pode ver o que foi acrescentado ou319 :h2 id=history res=5001.Alteraäes em cada versÆo :p.Aqui voc pode ver o que foi acrescentado ou 320 320 alterado nas diferentes versäes deste programa. 321 321 … … 429 429 .*fold00.*Bugs 430 430 431 :h2 id=bugs .Bugs conhecidos431 :h2 id=bugs res=5002.Bugs conhecidos 432 432 :p.Ap¢s o lanamento da v1.00, meu consenso de que Gotcha! o meu c¢digo mais 433 433 bagunado dos £ltimos anos se confirmou, pois mesmo os bugs tinham bugs! ;-) … … 487 487 .*fold00.*Melhorias futuras 488 488 489 :h2 id=future .Futuras melhorias489 :h2 id=future res=5003.Futuras melhorias 490 490 :p.Bem, ainda existem algumas coisas que os usu rios pediram e que serÆo acrescentadas 491 491 num futuro distante em uma gal xia long¡nqua ... aarg, quer dizer, em uma versÆo futura ;-) … … 501 501 .*fold00.*Avisos & consideraäes legais 502 502 503 :h1 id=disclaimer .Avisos &. consideraäes legais503 :h1 id=disclaimer res=5004.Avisos &. consideraäes legais 504 504 :p.Seguem os avisos de sempre. Para aqueles que ainda nÆo leram este tipo de aviso 505 505 vezes demais, aqui tem uma versÆo mais curta&colon. … … 545 545 .*FOLD00.*GNU Public License 546 546 547 :h1 id=gpl .GNU GENERAL PUBLIC LICENSE547 :h1 id=gpl res=5005.GNU GENERAL PUBLIC LICENSE 548 548 549 549 :lines. … … 894 894 .*fold00.*Homepage do autor e de Gotcha! 895 895 896 :h1 id=author .Homepage do autor e de &progname.896 :h1 id=author res=5006.Homepage do autor e de &progname. 897 897 :p.:hp7.Autor:ehp7. 898 898 … … 910 910 :edl. 911 911 912 :artwork name=' src\\data\\teamlogo.bmp' align=center.912 :artwork name='..\\data\\teamlogo.bmp' align=center. 913 913 :p.Orgulhoso membro do Team OS/2 Region Trier e.V., criadores do CDROM "Team Trier Collection". 914 914 … … 925 925 .*------------------------------------------------------------------------- 926 926 .*fold00.*Precisa-se de ajuda! 927 :h1 id=helpwanted .Precisa-se de ajuda!927 :h1 id=helpwanted res=5007.Precisa-se de ajuda! 928 928 :p.Agora que &progname. suporta outra l¡nguas, claro que eu gostaria 929 929 de incluir quantas forem poss¡veis. O problema que eu apenas falo … … 948 948 .*fold00.*Crditos 949 949 950 :h1 id=credits .Crditos950 :h1 id=credits res=5008.Crditos 951 951 :p.Eu gostaria de agradecer as pessoas abaixo, por sua ajuda e suporte com 952 952 &progname.&colon. … … 970 970 .*------------------------------------------------------------------------- 971 971 .*fold00.*Registrando 972 :h1 id=register ."Registrando"972 :h1 id=register res=5009."Registrando" 973 973 .*:p. se voc est satisfeito com o que &progname. 1.67 oferece, voc pode continuar 974 974 .*utilizando esta versÆo ... mas lembre-se que ela ainda nÆo possui muitas funäes £teis … … 1051 1051 .*fold00.*Dedicat¢ria 1052 1052 1053 :h1 id=dedication .Dedicat¢ria1054 :p.:artwork name=' src\\data\\rosaleen.bmp' align=center.1053 :h1 id=dedication res=5010.Dedicat¢ria 1054 :p.:artwork name='..\\data\\rosaleen.bmp' align=center. 1055 1055 :hp2. 1056 1056 .ce Gotcha! dedicado a Rosaleen. -
trunk/portbras/gotresbr.rc
r5 r10 23 23 24 24 /* Please do NOT try to translate the following statement :-) */ 25 RCINCLUDE " src\common.rc"25 RCINCLUDE "..\common.rc" 26 26 27 27 /* Please adjust the name of the language (but leave the number alone :-) -
trunk/rstring.cpp
r2 r10 17 17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 18 ***/ 19 19 #define INCL_DOS 20 #include <os2.h> 20 21 #include "rstring.h" 21 22 -
trunk/rstring.h
r2 r10 21 21 #define _RSTRING_H_ 22 22 23 #define OS2EMX_PLAIN_CHAR 23 //#define OS2EMX_PLAIN_CHAR 24 #define INCL_DOSMODULEMGR 24 25 25 26 #include <os2.h>
Note:
See TracChangeset
for help on using the changeset viewer.