ModernUI Workbench/pl: Difference between revisions

From FreeCAD Documentation
(Created page with "* Autor: Hakan Seven * Kod źródłowy na portalu github: https://github.com/HakanSeven12/Modern-UI")
(Created page with "==Ograniczenia i rozwiązywanie problemów==")
Line 19: Line 19:
* Kod źródłowy na portalu github: https://github.com/HakanSeven12/Modern-UI
* Kod źródłowy na portalu github: https://github.com/HakanSeven12/Modern-UI


==Ograniczenia i rozwiązywanie problemów==
== Limitations and Troubleshooting ==


* If you experience unexpected behavior, always first try to uninstall and then reinstall the ModernUI workbench.
* If you experience unexpected behavior, always first try to uninstall and then reinstall the ModernUI workbench.

Revision as of 16:25, 30 August 2021

Other languages:

Ta dokumentacja nie jest ukończona. Prosimy o pomoc w tworzeniu dokumentacji.

Strona Model polecenia GUI wyjaśnia jak powinny być dokumentowane polecenia. Przejrzyj stronę Category:UnfinishedDocu, aby zobaczyć więcej niekompletnych stron, takich jak ta. Zobacz stronę Category:Command Reference aby poznać wszystkie komendy.

Zobacz stronę wytycznych Wikidla FreeCAD aby dowiedzieć się, jak edytować strony Wiki, i przejdź do strony Pomóż w rozwoju FreeCAD, aby dowiedzieć się o innych sposobach, w jakie możesz wnieść swój wkład.

Ikonka FreeCAD dla środowiska Nowoczesny UI

Wprowadzenie

Środowisko pracy Nowoczesny UI jest zewnętrznym środowiskiem pracy, które zastępuje standardowy interfejs użytkownika. Posiada ono nowoczesne funkcje, takie jak:

  • Każde środowisko pracy posiada swoją zakładkę wstążki.
  • zakładka Modern UI zastępuje menu główne.
  • Aktywowanie zakładki dla danego środowiska pracy pokazuje grupy narzędzi tego środowiska.
  • Panele takie jak Widok połączony są zwijane / rozwijane po najechaniu kursorem myszki.

Ustawienia

Ograniczenia i rozwiązywanie problemów

  • If you experience unexpected behavior, always first try to uninstall and then reinstall the ModernUI workbench.
  • The workbench is primarily tested with English and may exhibit unexpected behavior in other languages.
  • Installing more workbenches after installing ModernUI may cause problems.

Install

Install with the Addon Manager.

Note: To uninstall, you have to create a macro and execute it. If you do not feel confident about this, consider to not install.

Running Modern UI in a self-contained directory

To easily test Modern UI without interfering with your standard configuration, you can contain it in a separate directory. Uninstalling Modern UI is then simply accomplished by deleting the directory. introduced in version 0.19

Linux

For example:

$ mkdir modernUI  # new directory that contains Modern UI
$ cd modernUI
$ HOME="$PWD" FREECAD_USER_HOME="$PWD" FreeCAD_0.19.AppImage

When starting FreeCAD like this for the first time, you have a new default configuration. Now install (and configure) Modern UI. This is essentially a portable FreeCAD version.

Instead of using the command line, you can also create a dedicated desktop icon.

Windows

There are not dedicated instructions for Windows yet, however, it is very similar to creating a portable version of FreeCAD on a USB medium.

Uninstall

Detailed instructions can be found on GitHub.

The uninstall sequence is as follows:

  1. Uninstall with the Addon Manager.
  2. Restart FreeCAD.
  3. Create a macro with this code:
    from PySide2 import QtCore, QtGui, QtWidgets
    mw = FreeCADGui.getMainWindow()
    mw.menuBar().show()
     
    WBList = FreeCADGui.listWorkbenches()
    for WB in WBList:
        FreeCADGui.activateWorkbench(WB)
        for tb in mw.findChildren(QtWidgets.QToolBar):
            tb.show()
    
  4. Wykonaj makro.
  5. Zrestartuj FreeCAD.

Odnośniki internetowe