openadaptxt-developers Mailing List for OpenAdaptxt
Brought to you by:
keypoint,
openadaptxt
You can subscribe to this list here.
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2012 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
From: <giu...@gm...> - 2016-11-23 11:06:38
|
Hello everyone, I want use OpenAdaptxt to add word prediction to an accessibility application that I'm writing in C#. Would you be able to give me a few pointers on how to get started? I'm using Visual Studio 2015 (on window 10).I have already downloaded the example for android and it works well, i have downloaded the Framework Windows v2.6.0.0 project but i don’t know how to use OpenAdaptxt in windows projects.Many thanks who kindly help me.Giuseppe |
From: Peter B. <pb...@ci...> - 2014-01-31 10:15:50
|
Hi, I just checked out the source code of openadaptxt, I think it's a very interesting project! I tried now to compile the source code on Linux (Ubuntu 13.04) but got stuck with an error. I am following the instruction in openadaptxt/Branches/Current/OpenAdaptxt2.6/KPTFramework_BuildProcedure.pdf. The first step "Generating libraries for pal" seems to work fine. When I try to build the api with "make build" I get the following errors: ../../../../v2core/core/include/common/atxfiledefs.h:83:79: Fehler: Größe des Feldes »_GUARD_SIZEOF_TDHeaderBlockT_« ist negativ ../../../../v2core/core/include/common/atxfiledefs.h:103:100: Fehler: Größe des Feldes »_GUARD_SIZEOF_TDHeaderBlockDescriptorT_« ist negativ ../../../../v2core/core/include/common/atxfiledefs.h:168:83: Fehler: Größe des Feldes »_GUARD_SIZEOF_TDContextHeaderT_« ist negativ My system is german, the error in English is something like "Error: size of the field ... is negative". How can I solve the problem? Best, Peter |
From: s b <sh...@gm...> - 2012-06-15 09:34:41
|
Hi, I'm using the android version of adaptTxt , How to implement auto-correction feature , like if we press spacebar on keyboard the word should be replaced with the word in the suggestion list . Thanks! Zirra |
From: s b <sh...@gm...> - 2012-06-01 04:44:50
|
Hello, I have downloaded OpenAdapttxt for android sample .The document says The frameword expicitly adds words to personal dictionary. Can we stop the framework to do this? Thanks AD |
From: openadaptxt-developers <ope...@ke...> - 2012-01-17 07:13:00
|
Hi All, We are happy to announce the release of our OpenAdaptxt SDK for Android platform. Available for download from SourceForge.net – Download today. http://sourceforge.net/projects/openadaptxt/ Enjoy! |
From: Kian P. Y. <kia...@gm...> - 2011-11-28 06:59:27
|
Hi, Can someone help to explain what the CRS test application do exactly? I followed the user guide and ran the program as described in the guide and obtained a .result and .err file. What should I expect to see in the contents of the .result file? Also, what are the test scripts for? My other problem is with the QT test application. I can't seem to figure out how to compile and build the .exe file becasue there are no project files. I will appreciate if someone can guide me on how to go about doing it. Thank you. Cheers, KP |
From: Vinay K. <vka...@ke...> - 2011-10-10 14:44:12
|
Hi Tim, Pls refer the below link https://sourceforge.net/projects/openadaptxt/files/Binaries/KPTFramework/ Download Framework_Windows_2.6.0.0.tar.gz<http://sourceforge.net/projects/openadaptxt/files/Binaries/KPTFramework/Framework_Windows_2.6.0.0.tar.gz/download> . ->This folder contain data folder which contains all dictionaries and context files and this needs to be set as your base path. -> Create a example console app and include all the .h files from inc folder in Framework_Windows_2.6.0.0.tar.gz<http://sourceforge.net/projects/openadaptxt/files/Binaries/KPTFramework/Framework_Windows_2.6.0.0.tar.gz/download>. ->Copy the pertaining libs(kptframeworkv2DMTd.lib) from api/lib/win32 to the libs folder in Framework_Windows_2.6.0.0.tar.gz<http://sourceforge.net/projects/openadaptxt/files/Binaries/KPTFramework/Framework_Windows_2.6.0.0.tar.gz/download> and include this libs directory in the example app properities->linker->Additional library directories. And also the add the lib name (kptframeworkv2DMTd.lib) in linker->Additonal dependencies. ->Copy the pertaining dll (kptframeworkv2DMTd..dll) to the debug folder of example app . The main could be like #include "stdafx.h" #include "kptapi_framework.h" int _tmain(int argc, _TCHAR* argv[]) { KPTResultT result; /* 1. Create the Framework */ const KPTSysCharT *pBasePath = _T("C:\\Framework_Windows_2.6.0.0\\Framework_Windows_2.6.0.0\\data\\base"); KPTInitT initItems[] = { { KPT_CC_FRAMEWORK, 0, KPT_INIT_FRAMEWORK_LOCKINGENABLED, (intptr_t) eKPTTrue }, { KPT_CC_FRAMEWORK, 0, KPT_INIT_FRAMEWORK_BASEPATH, (intptr_t) pBasePath }, }; KPTCreateParamsT createParams = { 0 }; createParams.initItems = initItems; createParams.initItemCount = sizeof(initItems) / sizeof(*initItems); result = KPTFwkCreate(&createParams); if (KPTRESULT_FAILED(result)) { return result; } } Other framework functions that needs to be used can grasped from the https://sourceforge.net/projects/openadaptxt/files/Documents/KPTFramework_ReferenceGuide/KPTFramework.chm. Regards, Vinay ________________________________ From: Tim Brogden [mailto:tcb...@gm...] Sent: Thursday, October 06, 2011 4:45 PM To: ope...@li... Subject: [Openadaptxt-developers] Building and running OpenAdaptxt on Windows 7 Hello, I'm interested in trying out OpenAdaptxt to add word prediction to an accessibility application I'm writing. Would you be able to give me a few pointers on how to get started? I'm using Visual C++ 2010 Express on Window 7. I made some partly successful attempts to get the code to build and run - here's what I tried: - Downloaded api, pal, testingTools and v2core code from SVN - Downloaded the Framework_Windows_2.6.0.0 project which contains a nice looking data/base folder - Followed the build procedures doc: (i) Built pal solution: 28 libs built successfully, DLLs failed but I guess I can do without them for now (ii) Built api solution: 8 libs built successfully, DLLs failed but I guess I can do without them for now - Created a C++ console app project containing the code from Example_KPTFwkCreate and including kpt*.h, referencing the lib files, and setting the KPT_LIBAPI_LIB preprocessor option (#define) - Implemented the "GetPathToFrameworkFiles" method in order to set the "base path" to the data/base folder as shown below (maybe wrong?) const KPTSysCharT* GetPathToFrameworkFiles() { return _T("C:\\Users\\Tim\\Documents\\Visual Studio 2010\\Projects\\OpenAdaptxtTest\\OpenAdaptxtTest\\Framework_Windows_2.6.0.0\\data\\base"); } Outcome: KPTFwkCreate returns the result severity 3 (error), component 25 (?), status code 34 (KPT_SC_OSERROR) Any ideas where I'm going wrong? Thanks in advance for any help you can offer. Tim |
From: Tim B. <tcb...@gm...> - 2011-10-06 11:15:09
|
Hello, I'm interested in trying out OpenAdaptxt to add word prediction to an accessibility application I'm writing. Would you be able to give me a few pointers on how to get started? I'm using Visual C++ 2010 Express on Window 7. I made some partly successful attempts to get the code to build and run - here's what I tried: - Downloaded api, pal, testingTools and v2core code from SVN - Downloaded the Framework_Windows_2.6.0.0 project which contains a nice looking data/base folder - Followed the build procedures doc: (i) Built pal solution: 28 libs built successfully, DLLs failed but I guess I can do without them for now (ii) Built api solution: 8 libs built successfully, DLLs failed but I guess I can do without them for now - Created a C++ console app project containing the code from Example_KPTFwkCreate and including kpt*.h, referencing the lib files, and setting the KPT_LIBAPI_LIB preprocessor option (#define) - Implemented the "GetPathToFrameworkFiles" method in order to set the "base path" to the data/base folder as shown below (maybe wrong?) const KPTSysCharT* GetPathToFrameworkFiles() { return _T("C:\\Users\\Tim\\Documents\\Visual Studio 2010\\Projects\\OpenAdaptxtTest\\OpenAdaptxtTest\\Framework_Windows_2.6.0.0\\data\\base"); } Outcome: KPTFwkCreate returns the result severity 3 (error), component 25 (?), status code 34 (KPT_SC_OSERROR) Any ideas where I'm going wrong? Thanks in advance for any help you can offer. Tim |
From: Anirudh S. <as...@ke...> - 2011-06-01 09:58:34
|
Dear fellow developers, Welcome to the word of Adaptxt. Please use this for all OpenAdaptxt related developer communications. For topics that may be of interest to end users, please cross post to the openadaptxt-users at lists.sourceforge.net mailing list. Enjoy! |