인터페이스

From FreeCAD Documentation
Revision as of 11:13, 8 June 2024 by Urstein (talk | contribs) (Created page with "=== 패널 ===")

소개

FreeCAD 인터페이스는 잘 알려진 그래픽 사용자 인터페이스(GUI) 툴킷인 Qt를 기반으로 하며, 특히 Linux에서 사용되지만 Windows 및 MacOS에서도 사용할 수 있습니다.

v0.19의 표준 인터페이스.

애플리케이션의 기본 창은 대략 11개 섹션으로 나눌 수 있습니다.

  1. 다양한 탭 창을 포함할 수 있는 주요 보기 영역
  2. 3D 보기는 일반적으로 주요 보기 영역에 포함됩니다.
  3. 트리 보기작업판을 포함하는 콤보 보기의 상단 부분
  4. 속성 편집기를 포함하는 콤보 보기의 하단 부분
  5. 선택 보기
  6. 보고서 보기
  7. 파이썬 콘솔
  8. 상태 표시줄
  9. 도구 모음 영역, 도구 모음에 대한 다음 정보를 참조하세요.
  10. 작업대 모음
  11. 표준메뉴

인터페이스의 구성 요소

많은 소프트웨어와 마찬가지로 FreeCAD에는 표준 메뉴 표시줄과 사용자 도구가 있는 일련의 도구 모음 및 패널이 포함되어 있습니다.

메뉴

표준 메뉴는: 파일, 편집, 보기, 도구, 매크로, , 도움말 입니다.

도구 모음

인터페이스에 나타나는 표준 도구 모음은 다음과 같습니다:

  • 파일 도구 모음: 파일 작업, 문서 열기, 복사, 붙여넣기, 실행 취소 및 다시 실행 작업을 수행하는 도구입니다.
  • 작업대 모음: 활성 작업대를 선택하는 단일 위젯이 포함되어 있습니다.
  • 매크로 도구 모음: 매크로를 기록, 편집, 실행하는 도구입니다.
  • 보기 도구 모음: 3D 보기에 개체가 표시되는 방식을 제어하는 ​​도구입니다.
  • 구조 도구 모음: 문서의 개체를 구성하고 추가 문서에 대한 링크를 만드는 도구입니

도구 모음 중 하나의 빈 공간을 마우스 오른쪽 버튼으로 클릭하고 원하는 요소를 선택하거나 메뉴, View → Toolbars에서 이 기능을 켜고 끌 수 있습니다.

패널

The main panels that allow working with objects are:

  • 3D view: the area where 2D and 3D geometry is drawn.
  • Combo view: the panel that contains the tree view, the task panel, and the property editor.
  • Tree view: the element that shows all objects in the document and their parametric history.
  • Task panel: the panel that shows different actions and options depending on the drawing tool selected.
  • Property editor: the place where object properties are modified.
  • Selection view: the panel that shows elements that are currently selected.
  • Report view: the text box that shows different messages from the application and its tools.
  • Python console: the editor that allows running Python code interactively to see results in the 3D view.
  • Status bar: the bar that shows certain messages from the application, and that has the mouse navigation selector.
  • DAG view: an alternative to the tree view, which shows the relationships between different objects through a graph.

With the exception of the 3D view, all can be turned on and off by right clicking on an empty space on one of the top toolbars and choosing the desired element, or from the menu, View → Panels.

To activate and deactivate the status bar use the menu, View → Status bar.

Other

Other useful interfaces and windows include:

  • Scene inspector: a panel that shows the Coin3D nodes that make up the scenegraph. For power users and developers, it may be useful to troubleshoot operations that manipulate the scene directly, and the objects created in the 3D view.
  • Dependency graph: a window showing the dependency graph of all the objects in the document, created with the auxiliary program Graphviz. It is helpful to recognize problems in the creation of objects, such as circular dependencies, which may not be entirely evident from the tree view or the DAG view.

Customization

Toolbars can have more or fewer buttons, and custom toolbars can be created with a mix of different tools, and to store developed macros.

These options are in the menu, Tools → Customize. See interface customization.