From e1c029f87b75367da004410c347ecd75f90b5d5d Mon Sep 17 00:00:00 2001
From: mattias
TMenuActionLink
+
: defines the link between a selected menu item and its corresponding action. Properties are protected and not readily accessible by application programmers.
TMenuItem
+
- The base structure of each item in a Menu. This Component does the hard work of processing the Items found in the various types of menus. It defines a lot of the properties and methods used in the various sorts of menu, including TMainMenu, TMenu and TPopUpMenu
ShortCut
+
- the quick key sequence to be used in selecting this menu item If you select this property in the Object Inspector, a list-box will appear with choices for various key-combinations to be used. The chosen key-sequence will be displayed, at run-time, on the menu drop-down next to the caption for the menu item.
TMenu
+
: The base class for all menus The class definition contains very few public or published properties or methods accessible to the application programmer, but contains the entry Items which points to the Menu Items that appear in the menu displays
TMainMenu
+
- the Main Menu that appears at the top of most windows; form designers can
customise by choosing various menu items. Main Menu is a non-visible component : that is, if the icon is selected from the Component Pallete and placed on the Form, it will not appear at Run-time. Instead, a Menu bar with a structure defined by the Menu Editor will appear.
TPopupMenu + : a menu panel that pops up on the desktop when the right mouse button is clicked.
Inherits all the properties of TMenu (including the properties of TMenuItem), but has some new properties (procedure PopUp and procedure Close) that define its behaviour when actually invoked.
PopupPoint defines the position of the Popup menu, usually at the current cursor position.
@@ -2179,17 +2213,20 @@ customise by choosing various menu items. HowToUseMenus + - hints for creating Menus for your FormsHowToUseMenus + - hints for creating Menus for your Forms
TMainMenu + is the Main Menu that appears at the top of most forms; form designers can customise by choosing various menu items. TPopupMenu is a menu window that pops up with pertinent, usually context-sensitive, details and choices when the right mouse button is clicked near a control
Main Menu is a non-visible component : that is, if the icon is selected from the Component Palette and placed on the Form, it will not appear at Run-time. Instead, a Menu bar with a structure defined by the Menu Editor will appear. Popup menus, placed on the form by selecting the icon from the Component Palette, do not appear at all unless the right mouse button is clicked on a control that owns such a menu.
diff --git a/ide/fpdoceditwindow.pas b/ide/fpdoceditwindow.pas index 2541d5ee95..428668940f 100644 --- a/ide/fpdoceditwindow.pas +++ b/ide/fpdoceditwindow.pas @@ -576,7 +576,7 @@ begin end; chprFailed: begin - DebugLn(['TFPDocEditForm.UpdateChain failed LazDocBoss.GetElementChain for ',fSourceFilename,' ',dbgs(CaretXY)]); + //DebugLn(['TFPDocEditForm.UpdateChain failed LazDocBoss.GetElementChain for ',fSourceFilename,' ',dbgs(CaretXY)]); exit; end; else