Difference between revisions of "IDE Development/ru"

From Free Pascal wiki
Jump to navigationJump to search
Line 143: Line 143:
 
*use jcf for indentation
 
*use jcf for indentation
  
=Debugger=
+
=Отладка=
  
 
==Краткое описание==
 
==Краткое описание==

Revision as of 21:34, 23 September 2014

English (en) 한국어 (ko) русский (ru)

This page contains notes for lazarus core developers about ongoing development.

Note: This paragraph is referenced by

Multi form properties / using DataModules from other forms in the designer

Краткое описание

This feature allows to use components of other designer forms. A common example is to use the TDataSource on a DataModule for the DataSource property of a db control. Designer forms can only reference each other if they have a CreateForm statement in the lpr file (Project Options / Forms).

Работает

  • Manual referencing via source code works.
  • TPersistentPropertyEditor.GetValues - List all possible values. Check for class compatibility and if the target form is listed in the CreateForm statements of the lpr file and if the target unit does not belong to a package that will conflict if used.
  • TPersistentPropertyEditor.GetValue - Show component path
  • TPersistentPropertyEditor.SetValue - search the component via the given path
  • When component is deleted, the property must be set to nil - This is not the job of the IDE, but should be achieved by the normal TComponent FreeNotification feature. Maybe eventually a check could be added, if this is implemented properly and force a nil on error.
  • When a component is renamed the property does not need to be updated, because the form is open and use the pointer not the name. But the designer must be flagged 'modified', because the lfm has changed. See below.
  • When reference form is opened, then target forms are opened too.
  • When target form is closed, then only the designer is closed. The component is kept hidden.
  • When all referring forms are closed/hidden, the hidden component will be automatically freed.
  • Circle dependencies are allowed.
  • When referenced component is renamed, the using units must be set modified.
  • When referenced component is deleted, the using units must be set modified.
  • Opening a unit now checks if designer is already created
  • Reopen/Revert a form - all connected forms are now closed

ToDo

  • Allow to connect to forms, that are used in the uses section. Technically there is no connection between the uses section and the form streaming, because form streaming uses global variables. But the IDE must somehow find the referenced form. Without the uses section the IDE must in worst case search and read every reachable lfm file on disk. So the uses section is a good compromise between speed and flexibility.

Переводы, i18n, lrt файлы, po файлы

Краткое описание

Это функция автоматического создания и обновления .po файлов для пакетов и проектов.

Работает

  • Диалог настроек для проекта/пакета для включения i18n
  • Сбор TTranslateStrings из RTTI пока designer form writing и записывание их в lrt файл.
  • Копирование новых строк из rst и lrt файлов в один .po файл для каждого проекта
  • Загрузка .po файлов
  • Удаление неиспользуемых строк из .po файла для пакетов/проектов
  • Обновление переведенных .po файлов, похоже на updatepofiles tool.

ToDo

  • Копирование новых строк из rst и lrt файлов в один .po файл для каждого пакета (реализован, необходим диалог настройки для изменения имени файла po или необходимо соглашение для использования того же имени для пакетов)
  • Сбор всех .po файлов проекта и всех испольуемых пакетов в директорию. Эта директория может быть использована для проекта при загрузки строк runtime. И установщики могут копировать содержимое.
  • стандартизация имен файлов и путей, для того чтобы загружать переводы runtime, возможно без написания кода.

Фреймы

Краткое описание

Фреймы - это специальные дочерние формы. The goal is to edit them like forms in the IDE designer, and to use them as components on designer forms.

Работает

compile lazarus clean with passing -dEnableTFrame (not necessary starting from svn release 16909)

  • Manually creating via source
  • gtk1, gtk2, qt, win32/win64
  • Create a new frame
  • Open a frame in the designer
  • Save a frame
  • Close a frame
  • Revert a frame
  • Design a frame (adding, selecting, moving controls, ...)
  • Opening a nested frame
  • Opening a nested frame with ancestors
  • Support for the inline keyword for lfm and lrs streams.
  • Add a frame to a form, add unit to uses section, package to project dependencies
    • Auto opening frame if not yet loaded
  • Close a frame that is currently used by a nested frame
  • Close a form with an embedded frame
  • Save a form with an embedded frame
  • Delete a frame embedded in a form
  • Inherited nested Components (Components with the frame as Owner and not the Form)
    • Show inherited nested components properties in OI
    • Forbid deleting nested inherited components
    • Forbid renaming nested inherited components
    • Show inherited nested components events in OI as ClassName.MethodName
    • When dblclick on inherited nested components events in OI create an event with the following code: Frame1.FrameResize(Sender);
    • When Ctrl+Click on inherited nested components events in OI jump to inherited code.
    • show nested components in OI component tree
    • Write nested component to stream
  • Forbid putting a component onto a nested frame, because TWriter does not support that.
  • Revert a form with an embedded frame

ToDo

  • Propagate changes of ancestor to nested controls
  • Tutorial
  • Документация
  • Обновление

VFI - Visual Form Inheritance

Краткое описание

Forms can inherit from other forms. The .lfm streams of ancestors are read/applied before the current lfm. The .lfm of the descendant is the difference between ancestor and current state. The IDE allows to open and edit inherited forms. VFI does not only apply to TForm, but TDataModule, TFrame and any registered base designer class. For the full features compile with -dEnableTFrame.

Работает

  • find ancestor unit, lfm and class
  • automatically open ancestor form hidden in background
  • open descendant and read ancestor lfm first
  • show hidden ancestor form
  • hide ancestor form
  • automatically close hidden ancestor form if not needed anymore
  • create new ancestor form via 'File / New ... / Inherited Items'
  • forbid deleting inherited components
  • forbid renaming inherited components

ToDo

  • inherited events (partially working)
  • apply changes of ancestor to descendants when both are open
  • Tutorial
  • Documentation

The jedi code formatter

Краткое описание

Работает

  • Pressing ctrl+D will format your source file
  • Settings are stored and read by IDE from JCFSettings.cfg file
  • port the jcf option dialogs

ToDo

  • use jcf for indentation

Отладка

Краткое описание

Работает

  • show breakpoints etc in asm window
  • implement/design interface on debugger class to show/handle threads
  • attach to process

ToDo

  • implement/design interface on debuggerclass to handle os exceptions
  • implement/design interface on debugger class to show messages
  • implement/design interface on debugger class to show loaded modules
  • implement debugging of forked processes
  • implement launching process on xterm (mainly for console apps)
  • find include files in fpc sources

Release Notes