aboutsummaryrefslogtreecommitdiff
path: root/SrcShared/Palm/Platform/Incs/Core/UI/Find.h
diff options
context:
space:
mode:
Diffstat (limited to 'SrcShared/Palm/Platform/Incs/Core/UI/Find.h')
-rw-r--r--SrcShared/Palm/Platform/Incs/Core/UI/Find.h124
1 files changed, 124 insertions, 0 deletions
diff --git a/SrcShared/Palm/Platform/Incs/Core/UI/Find.h b/SrcShared/Palm/Platform/Incs/Core/UI/Find.h
new file mode 100644
index 0000000..5e3c891
--- /dev/null
+++ b/SrcShared/Palm/Platform/Incs/Core/UI/Find.h
@@ -0,0 +1,124 @@
+/******************************************************************************
+ *
+ * Copyright (c) 1994-1999 Palm Computing, Inc. or its subsidiaries.
+ * All rights reserved.
+ *
+ * File: Find.h
+ *
+ * Description:
+ * This file defines field structures and routines.
+ *
+ * History:
+ * August 29, 1994 Created by Art Lamb
+ *
+ *****************************************************************************/
+
+#ifndef __FIND_H__
+#define __FIND_H__
+
+#include <PalmTypes.h>
+#include <CoreTraps.h>
+
+#include <DataMgr.h>
+#include <Rect.h>
+
+#define maxFinds 9
+#define maxFindStrLen 16
+
+typedef struct {
+ UInt16 appCardNo; // card number of the application
+ LocalID appDbID; // LocalID of the application
+ Boolean foundInCaller; // true if found in app that called Find
+ UInt8 reserved;
+
+ UInt16 dbCardNo; // card number of the database record was found in
+ LocalID dbID; // LocalID of the database record was found in
+ UInt16 recordNum; // index of record that contain a match
+ UInt16 matchPos; // postion in record of the match.
+ UInt16 matchFieldNum; // field number
+ UInt32 matchCustom; // app specific data
+ } FindMatchType;
+
+typedef FindMatchType *FindMatchPtr;
+
+typedef struct {
+
+ // These fields are used by the applications.
+ UInt16 dbAccesMode; // read mode and maybe show secret
+ UInt16 recordNum; // index of last record that contained a match
+ Boolean more; // true of more matches to display
+ Char strAsTyped [maxFindStrLen+1]; // search string as entered
+ Char strToFind [maxFindStrLen+1]; // search string is lower case
+ UInt8 reserved1;
+
+
+ // The lineNumber field can be modified by the app. The continuation field can
+ // be tested by the app. All other fields are private to the Find routine and
+ // should NOT be accessed by applications.
+ UInt16 numMatches; // # of matches
+ UInt16 lineNumber; // next line in the results tabel
+ Boolean continuation; // true if contining search of same app
+ Boolean searchedCaller; // true after we've searched app that initiated the find
+
+ LocalID callerAppDbID; // dbID of app that initiated search
+ UInt16 callerAppCardNo; // cardNo of app that initiated search
+
+ LocalID appDbID; // dbID of app that we're currently searching
+ UInt16 appCardNo; // card number of app that we're currently searching
+
+ Boolean newSearch; // true for first search
+ UInt8 reserved2;
+ DmSearchStateType searchState; // search state
+ FindMatchType match [maxFinds];
+} FindParamsType;
+
+typedef FindParamsType *FindParamsPtr;
+
+
+// Param Block passsed with the sysAppLaunchCmdGoto Command
+typedef struct {
+ Int16 searchStrLen; // length of search string.
+ UInt16 dbCardNo; // card number of the database
+ LocalID dbID; // LocalID of the database
+ UInt16 recordNum; // index of record that contain a match
+ UInt16 matchPos; // postion in record of the match.
+ UInt16 matchFieldNum; // field number string was found int
+ UInt32 matchCustom; // application specific info
+ } GoToParamsType;
+
+typedef GoToParamsType *GoToParamsPtr;
+
+
+//----------------------------------------------------------
+// Find Functions
+//----------------------------------------------------------
+
+#ifdef REMOVE_FOR_EMULATOR
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void Find (GoToParamsPtr goToP)
+ SYS_TRAP(sysTrapFind);
+
+
+Boolean FindStrInStr (Char const *strToSearch, Char const *strToFind,
+ UInt16 *posP)
+ SYS_TRAP(sysTrapFindStrInStr);
+
+Boolean FindSaveMatch (FindParamsPtr findParams, UInt16 recordNum,
+ UInt16 pos, UInt16 fieldNum, UInt32 appCustom, UInt16 cardNo, LocalID dbID)
+ SYS_TRAP(sysTrapFindSaveMatch);
+
+void FindGetLineBounds (const FindParamsType *findParams, RectanglePtr r)
+ SYS_TRAP(sysTrapFindGetLineBounds);
+
+Boolean FindDrawHeader (FindParamsPtr findParams, Char const *title)
+ SYS_TRAP(sysTrapFindDrawHeader);
+
+#ifdef __cplusplus
+}
+#endif
+#endif
+
+#endif //__FIND_H__