2025-05-20 11:24:07 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<ui version="4.0">
|
|
|
|
|
<class>MainWindow</class>
|
|
|
|
|
<widget class="QMainWindow" name="MainWindow">
|
|
|
|
|
<property name="geometry">
|
|
|
|
|
<rect>
|
|
|
|
|
<x>0</x>
|
|
|
|
|
<y>0</y>
|
2025-05-27 20:10:19 +02:00
|
|
|
<width>1263</width>
|
2025-08-10 14:03:15 +02:00
|
|
|
<height>774</height>
|
2025-05-20 11:24:07 +02:00
|
|
|
</rect>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="windowTitle">
|
2025-06-06 19:30:57 +02:00
|
|
|
<string>DocuMentor</string>
|
2025-05-20 11:24:07 +02:00
|
|
|
</property>
|
|
|
|
|
<widget class="QWidget" name="centralwidget">
|
|
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
2025-07-27 20:24:53 +02:00
|
|
|
<property name="leftMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="topMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="rightMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="bottomMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
2025-05-20 11:24:07 +02:00
|
|
|
<item>
|
2025-07-27 20:24:53 +02:00
|
|
|
<widget class="QSplitter" name="splitter">
|
|
|
|
|
<property name="orientation">
|
|
|
|
|
<enum>Qt::Orientation::Horizontal</enum>
|
2025-05-21 20:26:03 +02:00
|
|
|
</property>
|
2025-12-20 21:16:33 +01:00
|
|
|
<property name="opaqueResize">
|
|
|
|
|
<bool>false</bool>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="childrenCollapsible">
|
|
|
|
|
<bool>false</bool>
|
|
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<widget class="QFrame" name="frame">
|
|
|
|
|
<property name="sizePolicy">
|
|
|
|
|
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
|
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
|
</sizepolicy>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="minimumSize">
|
|
|
|
|
<size>
|
|
|
|
|
<width>200</width>
|
|
|
|
|
<height>0</height>
|
|
|
|
|
</size>
|
2025-05-21 20:26:03 +02:00
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<property name="frameShape">
|
|
|
|
|
<enum>QFrame::Shape::StyledPanel</enum>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="frameShadow">
|
|
|
|
|
<enum>QFrame::Shadow::Raised</enum>
|
|
|
|
|
</property>
|
|
|
|
|
<layout class="QVBoxLayout" name="verticalLayout">
|
|
|
|
|
<property name="bottomMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
2026-02-09 21:17:21 +01:00
|
|
|
<item>
|
|
|
|
|
<widget class="QLabel" name="projectPath">
|
|
|
|
|
<property name="styleSheet">
|
|
|
|
|
<string notr="true">QLabel { padding: 5px; font-weight: bold; }</string>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string>Kein Projekt geladen</string>
|
|
|
|
|
</property>
|
|
|
|
|
</widget>
|
|
|
|
|
</item>
|
2025-05-21 20:26:03 +02:00
|
|
|
<item>
|
2025-07-27 20:24:53 +02:00
|
|
|
<widget class="QTreeWidget" name="treeWidget">
|
|
|
|
|
<property name="sizePolicy">
|
|
|
|
|
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
|
</sizepolicy>
|
2025-05-21 20:26:03 +02:00
|
|
|
</property>
|
2026-02-09 21:17:21 +01:00
|
|
|
<property name="styleSheet">
|
|
|
|
|
<string notr="true">QTreeWidget::item {
|
|
|
|
|
padding: 4px 4px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QTreeWidget::item:selected {
|
|
|
|
|
background-color: palette(highlight);
|
|
|
|
|
color: palette(highlighted-text);
|
|
|
|
|
}</string>
|
|
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<property name="columnCount">
|
2025-12-13 21:06:40 +01:00
|
|
|
<number>3</number>
|
2025-05-21 20:26:03 +02:00
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<attribute name="headerHighlightSections">
|
|
|
|
|
<bool>true</bool>
|
|
|
|
|
</attribute>
|
|
|
|
|
<attribute name="headerStretchLastSection">
|
|
|
|
|
<bool>true</bool>
|
|
|
|
|
</attribute>
|
|
|
|
|
<column>
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string notr="true">1</string>
|
|
|
|
|
</property>
|
|
|
|
|
</column>
|
|
|
|
|
<column>
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string notr="true">2</string>
|
|
|
|
|
</property>
|
|
|
|
|
</column>
|
2025-12-13 21:06:40 +01:00
|
|
|
<column>
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string notr="true">3</string>
|
|
|
|
|
</property>
|
|
|
|
|
</column>
|
2025-05-21 20:26:03 +02:00
|
|
|
</widget>
|
|
|
|
|
</item>
|
|
|
|
|
</layout>
|
|
|
|
|
</widget>
|
2025-07-27 20:24:53 +02:00
|
|
|
<widget class="QScrollArea" name="scrollArea">
|
|
|
|
|
<property name="sizePolicy">
|
|
|
|
|
<sizepolicy hsizetype="Minimum" vsizetype="Minimum">
|
|
|
|
|
<horstretch>0</horstretch>
|
|
|
|
|
<verstretch>0</verstretch>
|
|
|
|
|
</sizepolicy>
|
2025-06-22 14:47:17 +02:00
|
|
|
</property>
|
2025-12-20 21:16:33 +01:00
|
|
|
<property name="frameShadow">
|
|
|
|
|
<enum>QFrame::Shadow::Raised</enum>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="midLineWidth">
|
|
|
|
|
<number>1</number>
|
|
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<property name="widgetResizable">
|
|
|
|
|
<bool>true</bool>
|
2025-06-22 14:47:17 +02:00
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<widget class="QWidget" name="scrollAreaWidgetContents">
|
|
|
|
|
<property name="geometry">
|
|
|
|
|
<rect>
|
|
|
|
|
<x>0</x>
|
|
|
|
|
<y>0</y>
|
2026-02-07 20:25:21 +01:00
|
|
|
<width>68</width>
|
|
|
|
|
<height>728</height>
|
2025-07-27 20:24:53 +02:00
|
|
|
</rect>
|
|
|
|
|
</property>
|
|
|
|
|
<layout class="QVBoxLayout" name="verticalLayout_2">
|
|
|
|
|
<item>
|
|
|
|
|
<widget class="QLabel" name="label">
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string/>
|
|
|
|
|
</property>
|
|
|
|
|
</widget>
|
|
|
|
|
</item>
|
|
|
|
|
<item>
|
|
|
|
|
<widget class="QLabel" name="label_2">
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string/>
|
|
|
|
|
</property>
|
|
|
|
|
</widget>
|
|
|
|
|
</item>
|
|
|
|
|
<item>
|
|
|
|
|
<spacer name="verticalSpacer">
|
|
|
|
|
<property name="orientation">
|
|
|
|
|
<enum>Qt::Orientation::Vertical</enum>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="sizeHint" stdset="0">
|
|
|
|
|
<size>
|
|
|
|
|
<width>20</width>
|
|
|
|
|
<height>40</height>
|
|
|
|
|
</size>
|
|
|
|
|
</property>
|
|
|
|
|
</spacer>
|
|
|
|
|
</item>
|
|
|
|
|
</layout>
|
|
|
|
|
</widget>
|
|
|
|
|
</widget>
|
|
|
|
|
<widget class="QFrame" name="frame_3">
|
|
|
|
|
<property name="frameShape">
|
2025-12-20 21:16:33 +01:00
|
|
|
<enum>QFrame::Shape::StyledPanel</enum>
|
2025-06-22 14:47:17 +02:00
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<property name="frameShadow">
|
|
|
|
|
<enum>QFrame::Shadow::Raised</enum>
|
2025-06-22 14:47:17 +02:00
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<layout class="QVBoxLayout" name="verticalLayout_4">
|
|
|
|
|
<property name="leftMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="topMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="rightMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="bottomMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<item>
|
|
|
|
|
<widget class="QFrame" name="frame_4">
|
|
|
|
|
<property name="frameShape">
|
2025-12-20 21:16:33 +01:00
|
|
|
<enum>QFrame::Shape::NoFrame</enum>
|
2025-06-22 11:58:57 +02:00
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<property name="frameShadow">
|
|
|
|
|
<enum>QFrame::Shadow::Raised</enum>
|
2025-05-21 20:26:03 +02:00
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
2025-06-22 14:47:17 +02:00
|
|
|
<property name="leftMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="topMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="rightMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="bottomMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
2025-05-22 20:22:51 +02:00
|
|
|
<item>
|
2025-07-27 20:24:53 +02:00
|
|
|
<spacer name="horizontalSpacer_4">
|
|
|
|
|
<property name="orientation">
|
|
|
|
|
<enum>Qt::Orientation::Horizontal</enum>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="sizeHint" stdset="0">
|
|
|
|
|
<size>
|
|
|
|
|
<width>40</width>
|
|
|
|
|
<height>20</height>
|
|
|
|
|
</size>
|
|
|
|
|
</property>
|
|
|
|
|
</spacer>
|
|
|
|
|
</item>
|
|
|
|
|
<item>
|
2026-01-02 20:11:56 +01:00
|
|
|
<widget class="QPushButton" name="view_ref_pdf">
|
|
|
|
|
<property name="enabled">
|
|
|
|
|
<bool>false</bool>
|
|
|
|
|
</property>
|
2025-05-22 20:22:51 +02:00
|
|
|
<property name="text">
|
2025-07-27 20:24:53 +02:00
|
|
|
<string>Vorher (Referenz)</string>
|
2025-05-22 20:22:51 +02:00
|
|
|
</property>
|
2026-03-14 17:16:27 +01:00
|
|
|
<property name="icon">
|
|
|
|
|
<iconset theme="QIcon::ThemeIcon::DocumentOpen"/>
|
|
|
|
|
</property>
|
2025-05-22 20:22:51 +02:00
|
|
|
</widget>
|
|
|
|
|
</item>
|
|
|
|
|
<item>
|
2025-07-27 20:24:53 +02:00
|
|
|
<widget class="QSlider" name="alpha">
|
2026-01-02 20:22:29 +01:00
|
|
|
<property name="enabled">
|
|
|
|
|
<bool>false</bool>
|
|
|
|
|
</property>
|
2026-01-02 20:11:56 +01:00
|
|
|
<property name="toolTip">
|
2026-01-02 20:22:29 +01:00
|
|
|
<string>Blendet zwischen Referenz-PDF (links) und neuer PDF (rechts) um. Doppelklick setzt auf Mitte zurück.</string>
|
2026-01-02 20:11:56 +01:00
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<property name="minimum">
|
|
|
|
|
<number>-100</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="maximum">
|
|
|
|
|
<number>100</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="orientation">
|
|
|
|
|
<enum>Qt::Orientation::Horizontal</enum>
|
|
|
|
|
</property>
|
|
|
|
|
</widget>
|
|
|
|
|
</item>
|
|
|
|
|
<item>
|
2026-01-02 20:11:56 +01:00
|
|
|
<widget class="QPushButton" name="view_new_pdf">
|
|
|
|
|
<property name="enabled">
|
|
|
|
|
<bool>false</bool>
|
|
|
|
|
</property>
|
2025-05-22 20:22:51 +02:00
|
|
|
<property name="text">
|
2025-07-27 20:24:53 +02:00
|
|
|
<string>Nachher (Neu)</string>
|
|
|
|
|
</property>
|
2026-03-14 17:16:27 +01:00
|
|
|
<property name="icon">
|
|
|
|
|
<iconset theme="QIcon::ThemeIcon::DocumentOpen"/>
|
|
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
</widget>
|
|
|
|
|
</item>
|
|
|
|
|
<item>
|
|
|
|
|
<spacer name="horizontalSpacer_2">
|
|
|
|
|
<property name="orientation">
|
|
|
|
|
<enum>Qt::Orientation::Horizontal</enum>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="sizeHint" stdset="0">
|
|
|
|
|
<size>
|
|
|
|
|
<width>40</width>
|
|
|
|
|
<height>20</height>
|
|
|
|
|
</size>
|
|
|
|
|
</property>
|
|
|
|
|
</spacer>
|
|
|
|
|
</item>
|
|
|
|
|
<item>
|
|
|
|
|
<widget class="QLabel" name="label_5">
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string>Zoom</string>
|
|
|
|
|
</property>
|
|
|
|
|
</widget>
|
|
|
|
|
</item>
|
|
|
|
|
<item>
|
|
|
|
|
<widget class="QSlider" name="zoom">
|
2026-01-02 20:22:29 +01:00
|
|
|
<property name="enabled">
|
|
|
|
|
<bool>false</bool>
|
|
|
|
|
</property>
|
2026-01-02 20:11:56 +01:00
|
|
|
<property name="toolTip">
|
2026-01-02 20:22:29 +01:00
|
|
|
<string>Vergrößert oder verkleinert die PDF-Ansicht (25% bis 300%). Doppelklick setzt auf 100% zurück.</string>
|
2026-01-02 20:11:56 +01:00
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<property name="minimum">
|
|
|
|
|
<number>25</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="maximum">
|
|
|
|
|
<number>300</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="value">
|
|
|
|
|
<number>100</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="orientation">
|
|
|
|
|
<enum>Qt::Orientation::Horizontal</enum>
|
2025-05-22 20:22:51 +02:00
|
|
|
</property>
|
|
|
|
|
</widget>
|
|
|
|
|
</item>
|
2025-07-27 20:24:53 +02:00
|
|
|
<item>
|
|
|
|
|
<spacer name="horizontalSpacer_5">
|
|
|
|
|
<property name="orientation">
|
|
|
|
|
<enum>Qt::Orientation::Horizontal</enum>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="sizeHint" stdset="0">
|
|
|
|
|
<size>
|
|
|
|
|
<width>40</width>
|
|
|
|
|
<height>20</height>
|
|
|
|
|
</size>
|
|
|
|
|
</property>
|
|
|
|
|
</spacer>
|
|
|
|
|
</item>
|
2025-12-15 21:10:15 +01:00
|
|
|
<item>
|
|
|
|
|
<widget class="QPushButton" name="accept_changes">
|
|
|
|
|
<property name="enabled">
|
|
|
|
|
<bool>false</bool>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="text">
|
2026-03-14 17:16:27 +01:00
|
|
|
<string>Änderungen übernehmen</string>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="icon">
|
|
|
|
|
<iconset theme="emblem-default"/>
|
2025-12-15 21:10:15 +01:00
|
|
|
</property>
|
|
|
|
|
</widget>
|
|
|
|
|
</item>
|
|
|
|
|
<item>
|
|
|
|
|
<spacer name="horizontalSpacer_3">
|
|
|
|
|
<property name="orientation">
|
|
|
|
|
<enum>Qt::Orientation::Horizontal</enum>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="sizeHint" stdset="0">
|
|
|
|
|
<size>
|
|
|
|
|
<width>40</width>
|
|
|
|
|
<height>20</height>
|
|
|
|
|
</size>
|
|
|
|
|
</property>
|
|
|
|
|
</spacer>
|
|
|
|
|
</item>
|
2025-05-22 20:22:51 +02:00
|
|
|
</layout>
|
2025-05-21 20:26:03 +02:00
|
|
|
</widget>
|
2025-07-27 20:24:53 +02:00
|
|
|
</item>
|
|
|
|
|
<item>
|
|
|
|
|
<widget class="QScrollArea" name="scrollArea_2">
|
2026-01-02 20:11:56 +01:00
|
|
|
<property name="enabled">
|
|
|
|
|
<bool>true</bool>
|
|
|
|
|
</property>
|
2025-12-20 21:16:33 +01:00
|
|
|
<property name="frameShape">
|
|
|
|
|
<enum>QFrame::Shape::NoFrame</enum>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="frameShadow">
|
|
|
|
|
<enum>QFrame::Shadow::Raised</enum>
|
|
|
|
|
</property>
|
2025-07-27 20:24:53 +02:00
|
|
|
<property name="widgetResizable">
|
|
|
|
|
<bool>true</bool>
|
|
|
|
|
</property>
|
|
|
|
|
<widget class="QWidget" name="scrollAreaWidgetContents_2">
|
|
|
|
|
<property name="geometry">
|
|
|
|
|
<rect>
|
|
|
|
|
<x>0</x>
|
|
|
|
|
<y>0</y>
|
2026-02-07 20:25:21 +01:00
|
|
|
<width>880</width>
|
|
|
|
|
<height>697</height>
|
2025-07-27 20:24:53 +02:00
|
|
|
</rect>
|
|
|
|
|
</property>
|
|
|
|
|
<layout class="QVBoxLayout" name="verticalLayout_3">
|
|
|
|
|
<property name="leftMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="topMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="rightMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="bottomMargin">
|
|
|
|
|
<number>0</number>
|
|
|
|
|
</property>
|
|
|
|
|
</layout>
|
|
|
|
|
</widget>
|
|
|
|
|
</widget>
|
|
|
|
|
</item>
|
|
|
|
|
</layout>
|
|
|
|
|
</widget>
|
2025-05-20 11:24:07 +02:00
|
|
|
</widget>
|
|
|
|
|
</item>
|
|
|
|
|
</layout>
|
|
|
|
|
</widget>
|
|
|
|
|
<widget class="QMenuBar" name="menubar">
|
|
|
|
|
<property name="geometry">
|
|
|
|
|
<rect>
|
|
|
|
|
<x>0</x>
|
|
|
|
|
<y>0</y>
|
2025-05-27 20:10:19 +02:00
|
|
|
<width>1263</width>
|
2026-02-07 20:25:21 +01:00
|
|
|
<height>22</height>
|
2025-05-20 11:24:07 +02:00
|
|
|
</rect>
|
|
|
|
|
</property>
|
2025-05-27 20:10:19 +02:00
|
|
|
<widget class="QMenu" name="menuProjekt">
|
|
|
|
|
<property name="title">
|
|
|
|
|
<string>Projekt</string>
|
|
|
|
|
</property>
|
|
|
|
|
<addaction name="actionNeu"/>
|
|
|
|
|
<addaction name="separator"/>
|
2025-06-22 11:58:57 +02:00
|
|
|
<addaction name="actionVorhandene_Projekte"/>
|
|
|
|
|
<addaction name="separator"/>
|
2025-06-14 12:30:39 +02:00
|
|
|
<addaction name="actionEinstellungen"/>
|
|
|
|
|
<addaction name="separator"/>
|
2025-05-27 20:10:19 +02:00
|
|
|
<addaction name="actionBeenden"/>
|
|
|
|
|
</widget>
|
2025-05-27 20:48:21 +02:00
|
|
|
<widget class="QMenu" name="menuThema">
|
|
|
|
|
<property name="title">
|
|
|
|
|
<string>Thema</string>
|
|
|
|
|
</property>
|
|
|
|
|
</widget>
|
2026-01-25 15:23:32 +01:00
|
|
|
<widget class="QMenu" name="menuAktion">
|
|
|
|
|
<property name="enabled">
|
|
|
|
|
<bool>false</bool>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="title">
|
|
|
|
|
<string>Aktion</string>
|
|
|
|
|
</property>
|
|
|
|
|
<addaction name="actionAlle_XML_Dateien_transformieren"/>
|
|
|
|
|
<addaction name="actionAlle_XML_Dateien_neu_transformieren_force"/>
|
|
|
|
|
<addaction name="separator"/>
|
|
|
|
|
<addaction name="actionAus_Datenbank_laden"/>
|
|
|
|
|
</widget>
|
2025-05-27 20:10:19 +02:00
|
|
|
<addaction name="menuProjekt"/>
|
2026-01-25 15:23:32 +01:00
|
|
|
<addaction name="menuAktion"/>
|
2025-05-27 20:48:21 +02:00
|
|
|
<addaction name="menuThema"/>
|
2025-05-20 11:24:07 +02:00
|
|
|
</widget>
|
|
|
|
|
<widget class="QStatusBar" name="statusbar"/>
|
2025-05-27 20:10:19 +02:00
|
|
|
<action name="actionNeu">
|
|
|
|
|
<property name="icon">
|
|
|
|
|
<iconset theme="folder-new"/>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string>Neu ...</string>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="shortcut">
|
|
|
|
|
<string>Ctrl+N</string>
|
|
|
|
|
</property>
|
|
|
|
|
</action>
|
|
|
|
|
<action name="actionBeenden">
|
|
|
|
|
<property name="icon">
|
|
|
|
|
<iconset theme="QIcon::ThemeIcon::ApplicationExit"/>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string>Beenden</string>
|
|
|
|
|
</property>
|
|
|
|
|
</action>
|
2025-06-14 12:30:39 +02:00
|
|
|
<action name="actionEinstellungen">
|
|
|
|
|
<property name="icon">
|
|
|
|
|
<iconset theme="QIcon::ThemeIcon::DocumentProperties"/>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string>Einstellungen ...</string>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="shortcut">
|
|
|
|
|
<string>Ctrl+S</string>
|
|
|
|
|
</property>
|
|
|
|
|
</action>
|
2025-06-22 11:58:57 +02:00
|
|
|
<action name="actionVorhandene_Projekte">
|
|
|
|
|
<property name="enabled">
|
|
|
|
|
<bool>false</bool>
|
|
|
|
|
</property>
|
2026-01-25 15:23:32 +01:00
|
|
|
<property name="icon">
|
|
|
|
|
<iconset theme="folder-open"/>
|
|
|
|
|
</property>
|
2025-06-22 11:58:57 +02:00
|
|
|
<property name="text">
|
|
|
|
|
<string>Vorhandene Projekte</string>
|
|
|
|
|
</property>
|
|
|
|
|
</action>
|
2026-01-25 15:23:32 +01:00
|
|
|
<action name="actionAlle_XML_Dateien_transformieren">
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string>Alle XML-Dateien transformieren</string>
|
|
|
|
|
</property>
|
|
|
|
|
</action>
|
|
|
|
|
<action name="actionAlle_XML_Dateien_neu_transformieren_force">
|
|
|
|
|
<property name="icon">
|
|
|
|
|
<iconset theme="QIcon::ThemeIcon::ViewRefresh"/>
|
|
|
|
|
</property>
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string>Alle XML-Dateien neu transformieren (force)</string>
|
|
|
|
|
</property>
|
|
|
|
|
</action>
|
|
|
|
|
<action name="actionFN2">
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string>FN2</string>
|
|
|
|
|
</property>
|
|
|
|
|
</action>
|
|
|
|
|
<action name="actionAus_Datenbank_laden">
|
|
|
|
|
<property name="text">
|
|
|
|
|
<string>Aus Datenbank laden</string>
|
|
|
|
|
</property>
|
|
|
|
|
</action>
|
2025-05-20 11:24:07 +02:00
|
|
|
</widget>
|
|
|
|
|
<resources/>
|
2025-05-27 20:10:19 +02:00
|
|
|
<connections>
|
|
|
|
|
<connection>
|
|
|
|
|
<sender>actionBeenden</sender>
|
|
|
|
|
<signal>triggered()</signal>
|
|
|
|
|
<receiver>MainWindow</receiver>
|
|
|
|
|
<slot>close()</slot>
|
|
|
|
|
<hints>
|
|
|
|
|
<hint type="sourcelabel">
|
|
|
|
|
<x>-1</x>
|
|
|
|
|
<y>-1</y>
|
|
|
|
|
</hint>
|
|
|
|
|
<hint type="destinationlabel">
|
|
|
|
|
<x>741</x>
|
|
|
|
|
<y>460</y>
|
|
|
|
|
</hint>
|
|
|
|
|
</hints>
|
|
|
|
|
</connection>
|
|
|
|
|
</connections>
|
2025-05-20 11:24:07 +02:00
|
|
|
</ui>
|