Sfoglia il codice sorgente

* more status line hints fixed

florian 20 anni fa
parent
commit
f16e3660a8
2 ha cambiato i file con 19 aggiunte e 2 eliminazioni
  1. 10 1
      ide/fphelp.pas
  2. 9 1
      ide/fpstre.inc

+ 10 - 1
ide/fphelp.pas

@@ -177,8 +177,13 @@ begin
     hcGrep          : S:=hint_grep;
     hcMsgGotoSource : S:=hint_gotosource;
     hcRegistersWindow : S:=hint_registers;
+    hcFPURegisters    : S:=hint_FPURegisters;
+    hcVectorRegisters : S:=hint_VectorRegisters;
 
     hcToolsMessages : S:=hint_messageswindow;
+    hcToolsMsgNext  : S:=hint_gotonextmsg;
+    hcToolsMsgPrev  : S:=hint_gotoprevmsg;
+
     hcToolsBase..
     hcToolsBase+MaxToolCount
                     : S:=hint_usertool;
@@ -220,6 +225,7 @@ begin
     hcZoom          : S:=hint_zoom;
     hcNext          : S:=hint_next;
     hcPrev          : S:=hint_prev;
+    hcHide          : S:=hint_hide;
     hcClose         : S:=hint_closewindow;
     hcWindowList    : S:=hint_windowlist;
     hcUserScreenWindow:S:=hint_userscreenwindow;
@@ -516,7 +522,10 @@ end;
 END.
 {
   $Log$
-  Revision 1.11  2005-03-13 12:25:02  florian
+  Revision 1.12  2005-03-13 12:32:41  florian
+    * more status line hints fixed
+
+  Revision 1.11  2005/03/13 12:25:02  florian
     + Recent files write full name now as hint in the status line
     * Rundir hint in status line fixed
 

+ 9 - 1
ide/fpstre.inc

@@ -988,7 +988,11 @@ const
       hint_grep              = 'Run grep';
       hint_gotosource        = 'Edit source';
       hint_registers         = 'Open the Registers Window';
+      hint_fpuregisters      = 'Open the FPU Registers Window';
+      hint_vectorregisters   = 'Open the Vector Registers Window';
       hint_messageswindow    = 'Open the message window';
+      hint_gotonextmsg       = 'Jumps to the next message in the Message Window';
+      hint_gotoprevmsg       = 'Jumps to the previous message in the Message Window';
       hint_usertool          = 'User installed tool';
       hint_asciitable        = 'Show ASCII table';
       hint_optionsmenu       = 'Setting for compiler, editor, mouse, etc.';
@@ -1023,6 +1027,7 @@ const
       hint_zoom              = 'Enlarge or restore the size of the active window';
       hint_next              = 'Make the next window active';
       hint_prev              = 'Make the previous window active';
+      hint_hide              = 'Hide the current window';
       hint_closewindow       = 'Close the active window';
       hint_windowlist        = 'Show a list of all open windows';
       hint_userscreenwindow  = 'Show contents of user screen in a window';
@@ -1063,7 +1068,10 @@ const
 
 {
   $Log$
-  Revision 1.30  2005-03-13 12:25:02  florian
+  Revision 1.31  2005-03-13 12:32:41  florian
+    * more status line hints fixed
+
+  Revision 1.30  2005/03/13 12:25:02  florian
     + Recent files write full name now as hint in the status line
     * Rundir hint in status line fixed