home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 October / PCWorld_2000-10_cd2.bin / Borland / interbase / IBConsole_src.ZIP / ibconsole / zluContextHelp.pas < prev    next >
Pascal/Delphi Source File  |  2000-07-24  |  4KB  |  122 lines

  1. {
  2.  * The contents of this file are subject to the InterBase Public License
  3.  * Version 1.0 (the "License"); you may not use this file except in
  4.  * compliance with the License.
  5.  * 
  6.  * You may obtain a copy of the License at http://www.Inprise.com/IPL.html.
  7.  * 
  8.  * Software distributed under the License is distributed on an "AS IS"
  9.  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
  10.  * the License for the specific language governing rights and limitations
  11.  * under the License.  The Original Code was created by Inprise
  12.  * Corporation and its predecessors.
  13.  * 
  14.  * Portions created by Inprise Corporation are Copyright (C) Inprise
  15.  * Corporation. All Rights Reserved.
  16.  * 
  17.  * Contributor(s): ______________________________________.
  18. }
  19.  
  20. {****************************************************************
  21. *
  22. *  z l u C o n t e x t H e l p
  23. *
  24. ****************************************************************
  25. *  Author: The Client Server Factory Inc.
  26. *  Date:   March 1, 1999
  27. *
  28. *  Description: This is an interface unit containing integer
  29. *  mappings of Topic IDs (names of Help
  30. *  Topics) which are located in ibconsole.rtf
  31. *  This file is re-written by RoboHELP
  32. *  whenever ibtools.rtf is saved.
  33. *
  34. *  However, the numeric values stored in
  35. *  ibtools.hh are the 'master values' and if you
  36. *  modify the value in ibtools.hh and then
  37. *  save the ibtools.rtf again, this file will
  38. *  reflect the changed values.
  39. *
  40. *
  41. *****************************************************************
  42. * Revisions:
  43. *
  44. *****************************************************************}
  45.  
  46. Unit zluContextHelp;
  47.   Interface
  48.     Const
  49.       SQL_REFERENCE = 'sqlref.hlp';
  50.       CONTEXT_HELP_FILE='ibconsole.hlp';
  51.       INTERBASE_HELP_FILE='ib32.hlp';
  52.       SERVER_SECURITY = 1;
  53.       SERVER_LOGIN = 2;
  54.       DATABASE_REGISTER = 3;
  55.       SERVER_CERTIFICATES = 4;
  56.       FEATURES_DIAGNOSTICS = 5;
  57.       DATABASE_CREATE = 6;
  58.       DATABASE_PROPERTIES = 7;
  59.       DATABASE_ACTIVITY = 8;
  60.       DATABASE_VALIDATION = 9;
  61.       DATABASE_BACKUP = 10;
  62.       DATABASE_RESTORE = 11;
  63.       GENERAL_OVERVIEW = 12;
  64.       GENERAL_PRINT = 13;
  65.       GENERAL_PRINTER_SETUP = 14;
  66.       GENERAL_EXIT = 15;
  67.       EDITING_UNDO = 16;
  68.       GENERAL_EDITING = 17;
  69.       EDITING_FIND = 18;
  70.       SERVER_REGISTER = 19;
  71.       SERVER_UNREGISTER = 20;
  72.       SERVER_LOGOUT = 21;
  73.       SERVER_SERVER_LOG = 22;
  74.       SERVER_ADMINISTRATION_LOG = 23;
  75.       BACKUP_CONFIGURATION_REMOVE = 24;
  76.       SERVER_PROPERTIES = 25;
  77.       FAILPDF = 26;
  78.       DATABASE_DROP = 27;
  79.       DATABASE_UNREGISTER = 28;
  80.       DATABASE_CONNECT = 29;
  81.       DATABASE_DISCONNECT = 30;
  82.       SCRIPTS_LOAD = 31;
  83.       SCRIPTS_SAVE = 32;
  84.       SCRIPTS_HISTORY = 33;
  85.       SCRIPTS_SAVE_RESULTS = 34;
  86.       TRANSACTIONS_ABOUT_COMMITTING = 35;
  87.       GENERAL_SHORTCUTS = 36;
  88.       DATABASE_SHUTDOWN = 37;
  89.       DATABASE_RESTART = 38;
  90.       DATABASE_SWEEP = 39;
  91.       DATABASE_STATISTICS = 40;
  92.       TRANSACTIONS_RECOVERY = 41;
  93.       GENERAL_VIEW = 42;
  94.       VIEW_FONT = 43;
  95.       VIEW_REFRESH = 44;
  96.       SCRIPTS_EXECUTE = 45;
  97.       TRANSACTIONS_RECOVERY_DIALOG_BOX = 46;
  98.       TRANSACTIONS_RECOVERY_ADVICE = 47;
  99.       FEATURES_TREE = 48;
  100.       FEATURES_INTERNAL_TEXT_VIEWER = 49;
  101.       TOOLBARS_STANDARD = 50;
  102.       TABS_SQL_SCRIPT = 51;
  103.       TABS_SUMMARY = 52;
  104.       TABS_DEFINITION = 53;
  105.       TABS_DATA = 54;
  106.       TABS_ISQL = 55;
  107.       FEATURES_MAIN_STATUS_BAR = 56;
  108.       TOOLBARS_ISQL = 57;
  109.       BACKUP_CONFIGURATION_ABOUT = 58;
  110.       TABS_ACTIONS = 59;
  111.       GENERAL_PREFERENCES = 60;
  112.       BACKUP_CONFIGURATION_PROPERTIES = 61;
  113.       TOOLBARS_SERVER = 62;
  114.       TOOLBARS_DATABASE = 63;
  115.       GENERAL_ABSOLUTE_PATHS = 64;
  116.       TOOLBARS_EDIT = 65;
  117.       HOW_TO_ACCESS_DATA = 66;
  118.       FEATURES_TOOLBARS = 67;
  119.       TOOLBARS_GRAB_BAR = 68;
  120.   Implementation
  121. end.
  122.