From 91cb5515ccdec7643fda0fb67aa00027a2a0763f Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Mon, 22 Apr 2019 12:17:54 -0400 Subject: [PATCH] add back files that were ignored --- .gitignore | 1 - examples/Axis/Chart/mainwindow.ui | 95 +++ examples/Axis/Labels/mainwindow.ui | 55 ++ examples/Axis/Parameters/mainwindow.ui | 467 +++++++++++++ examples/Bars/Advanced/mainwindow.ui | 273 ++++++++ examples/DataValueTexts/mainwindow.ui | 612 ++++++++++++++++++ examples/DrawIntoPainter/mainwindow.ui | 477 ++++++++++++++ examples/Gantt/legend_example/entrydialog.ui | 184 ++++++ examples/Gantt/legend_example/mainwindow.ui | 47 ++ examples/Grids/PolarGrid/mainwindow.ui | 169 +++++ .../Advanced/addheaderdialog.ui | 161 +++++ .../HeadersFooters/Advanced/mainwindow.ui | 115 ++++ .../Legends/LegendAdvanced/addlegenddialog.ui | 181 ++++++ examples/Legends/LegendAdvanced/mainwindow.ui | 126 ++++ examples/Lines/Advanced/mainwindow.ui | 378 +++++++++++ examples/Lines/PointChart/mainwindow.ui | 301 +++++++++ examples/ModelView/HidingData/mainwindow.ui | 92 +++ examples/Pie/Advanced/mainwindow.ui | 325 ++++++++++ examples/Plane/OverlayedPlanes/mainwindow.ui | 100 +++ examples/Plotter/BigDataset/Controls.ui | 152 +++++ examples/Plotter/BubbleChart/mainwindow.ui | 77 +++ examples/Polar/Advanced/mainwindow.ui | 167 +++++ .../SeparateDiagrams/mainwindow.ui | 53 ++ examples/Stock/Advanced/mainwindow.ui | 190 ++++++ examples/TernaryCharts/Advanced/mainwindow.ui | 43 ++ examples/Widget/Advanced/mainwindow.ui | 117 ++++ examples/Zoom/Keyboard/mainwindow.ui | 40 ++ examples/Zoom/ScrollBars/mainwindow.ui | 170 +++++ examples/demo/axissettings.ui | 73 +++ examples/demo/datasetsettings.ui | 112 ++++ examples/demo/datavaluesettings.ui | 593 +++++++++++++++++ examples/demo/diagramsettings.ui | 163 +++++ examples/demo/diagramtypedialog.ui | 54 ++ examples/demo/gradientdialog.ui | 152 +++++ kdablibfakes/include/KDABLibFakes | 1 + qtests/DrawIntoPainter/mainwindow.ui | 471 ++++++++++++++ src/KDChart/KDChartDatasetSelector.ui | 164 +++++ tests/Gantt/apireview/entrydialog.ui | 183 ++++++ tests/Gantt/apireview/mainwindow.ui | 47 ++ tests/RootIndex/mainwindow.ui | 53 ++ 40 files changed, 7233 insertions(+), 1 deletion(-) create mode 100644 examples/Axis/Chart/mainwindow.ui create mode 100644 examples/Axis/Labels/mainwindow.ui create mode 100644 examples/Axis/Parameters/mainwindow.ui create mode 100644 examples/Bars/Advanced/mainwindow.ui create mode 100644 examples/DataValueTexts/mainwindow.ui create mode 100644 examples/DrawIntoPainter/mainwindow.ui create mode 100644 examples/Gantt/legend_example/entrydialog.ui create mode 100644 examples/Gantt/legend_example/mainwindow.ui create mode 100644 examples/Grids/PolarGrid/mainwindow.ui create mode 100644 examples/HeadersFooters/Advanced/addheaderdialog.ui create mode 100644 examples/HeadersFooters/Advanced/mainwindow.ui create mode 100644 examples/Legends/LegendAdvanced/addlegenddialog.ui create mode 100644 examples/Legends/LegendAdvanced/mainwindow.ui create mode 100644 examples/Lines/Advanced/mainwindow.ui create mode 100644 examples/Lines/PointChart/mainwindow.ui create mode 100644 examples/ModelView/HidingData/mainwindow.ui create mode 100644 examples/Pie/Advanced/mainwindow.ui create mode 100644 examples/Plane/OverlayedPlanes/mainwindow.ui create mode 100644 examples/Plotter/BigDataset/Controls.ui create mode 100644 examples/Plotter/BubbleChart/mainwindow.ui create mode 100644 examples/Polar/Advanced/mainwindow.ui create mode 100644 examples/SharedAbscissa/SeparateDiagrams/mainwindow.ui create mode 100644 examples/Stock/Advanced/mainwindow.ui create mode 100644 examples/TernaryCharts/Advanced/mainwindow.ui create mode 100644 examples/Widget/Advanced/mainwindow.ui create mode 100644 examples/Zoom/Keyboard/mainwindow.ui create mode 100644 examples/Zoom/ScrollBars/mainwindow.ui create mode 100644 examples/demo/axissettings.ui create mode 100644 examples/demo/datasetsettings.ui create mode 100644 examples/demo/datavaluesettings.ui create mode 100644 examples/demo/diagramsettings.ui create mode 100644 examples/demo/diagramtypedialog.ui create mode 100644 examples/demo/gradientdialog.ui create mode 100644 kdablibfakes/include/KDABLibFakes create mode 100644 qtests/DrawIntoPainter/mainwindow.ui create mode 100644 src/KDChart/KDChartDatasetSelector.ui create mode 100644 tests/Gantt/apireview/entrydialog.ui create mode 100644 tests/Gantt/apireview/mainwindow.ui create mode 100644 tests/RootIndex/mainwindow.ui diff --git a/.gitignore b/.gitignore index cebb89742..413d4f542 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,6 @@ build-* *.moc *.obj -*.ui *.o *.app *.user diff --git a/examples/Axis/Chart/mainwindow.ui b/examples/Axis/Chart/mainwindow.ui new file mode 100644 index 000000000..822473d88 --- /dev/null +++ b/examples/Axis/Chart/mainwindow.ui @@ -0,0 +1,95 @@ + + MainWindow + + + + 0 + 0 + 735 + 691 + + + + Axes + + + + 9 + + + 6 + + + + + 999 + + + 10 + + + 100 + + + 500 + + + Qt::Vertical + + + + + + + 999 + + + 10 + + + 100 + + + 500 + + + Qt::Horizontal + + + + + + + Qt::Horizontal + + + + + 3 + 3 + 0 + 0 + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + + diff --git a/examples/Axis/Labels/mainwindow.ui b/examples/Axis/Labels/mainwindow.ui new file mode 100644 index 000000000..42bc9c1db --- /dev/null +++ b/examples/Axis/Labels/mainwindow.ui @@ -0,0 +1,55 @@ + + + MainWindow + + + + 0 + 0 + 720 + 680 + + + + Axis Labels + + + + + + + + + + + x Axis Annotations + + + + + + + true + + + Grid Lines on Annotations + + + + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + diff --git a/examples/Axis/Parameters/mainwindow.ui b/examples/Axis/Parameters/mainwindow.ui new file mode 100644 index 000000000..e0567a378 --- /dev/null +++ b/examples/Axis/Parameters/mainwindow.ui @@ -0,0 +1,467 @@ + + + MainWindow + + + + 0 + 0 + 735 + 680 + + + + Axes + + + + + + + + + 9 + + + 6 + + + + + 999 + + + 10 + + + 100 + + + 500 + + + Qt::Vertical + + + + + + + 999 + + + 10 + + + 100 + + + 500 + + + Qt::Horizontal + + + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + 6 + + + 0 + + + + + Display Data Values + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Line Chart Type + + + + + + + + Normal + + + + + Stacked + + + + + Percent + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Markers + + + + + + + Paint Markers + + + + + + + Markers Style + + + + + + + + Square + + + + + Map + + + + + Circle + + + + + Diamond + + + + + 1 Pixel + + + + + 4 Pixels + + + + + Ring + + + + + Cross + + + + + Fast Cross + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Markers Size + + + + + + + 6 + + + 0 + + + + + 6 + + + 0 + + + + + Width + + + + + + + Height + + + + + + + + + 6 + + + 0 + + + + + 10 + + + + + + + 10 + + + + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Area Charts + + + + + + + Display Areas + + + + + + + 6 + + + 0 + + + + + Opacity + + + + + + + 255 + + + 20 + + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Zoom + + + + + + + 6 + + + 0 + + + + + Zoom Factor + + + + + + + 0.010000000000000 + + + 9.900000000000000 + + + 0.100000000000000 + + + 1.000000000000000 + + + + + + + + + + + Qt::Horizontal + + + + + + + Display Legend + + + true + + + + + + + Qt::Vertical + + + + 170 + 16 + + + + + + + + + + + + + diff --git a/examples/Bars/Advanced/mainwindow.ui b/examples/Bars/Advanced/mainwindow.ui new file mode 100644 index 000000000..87a49177a --- /dev/null +++ b/examples/Bars/Advanced/mainwindow.ui @@ -0,0 +1,273 @@ + + + MainWindow + + + + 0 + 0 + 692 + 424 + + + + Bar Chart + + + + + + + + + + + Data / plane space relation fixed + + + + + + + Qt::Vertical + + + + 171 + 51 + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + + + Configure Width + + + + + + + 6 + + + + + Bars Width + + + + + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + + + Paint ThreeD Bars + + + + + + + ThreeD + + + + + + + 6 + + + + + Bars Depth + + + + + + + 20 + + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + + + Pen Settings + + + + + + + 6 + + + + + Mark Column + + + + + + + 3 + + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + + + Bar Chart Type + + + + + + + + Normal + + + + + Stacked + + + + + Percent + + + + + + + + Bar Orientation + + + + + + + + Vertical + + + + + Horizontal + + + + + + + + + + Qt::Horizontal + + + + + + + Display Data Values + + + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + + diff --git a/examples/DataValueTexts/mainwindow.ui b/examples/DataValueTexts/mainwindow.ui new file mode 100644 index 000000000..c413fae92 --- /dev/null +++ b/examples/DataValueTexts/mainwindow.ui @@ -0,0 +1,612 @@ + + + MainWindow + + + + 0 + 0 + 899 + 698 + + + + Setting up Data Value Texts + + + + + + + + + + + Scope of settings + + + + + + dataset + + + + + + + item + + + + + + + One Bar + + + + + + + 3 + + + + + + + 3 + + + + + + + A Series + + + + + + + 3 + + + + + + + Common + + + + + + + + + + Qt::Horizontal + + + + + 2 + 2 + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + Qt::Vertical + + + + 54 + 16 + + + + + + + + Display Data Values + + + + + + + Qt::Horizontal + + + + + + + + + Font + + + + + + + + + + + + Relative Size + + + + + + + + + + Minimum Size + + + + + + + + + + Rotation + + + + + + + -359 + + + 359 + + + 15 + + + + + + + Qt::Vertical + + + + 54 + 16 + + + + + + + + + 50 + true + false + + + + Positive Pos. + + + + + + + + ( Default Value ) + + + + + Center + + + + + NorthEast + + + + + North + + + + + NorthWest + + + + + West + + + + + SouthWest + + + + + South + + + + + SouthEast + + + + + East + + + + + + + + Alignment + + + + + + + + Center + + + + + BottomLeft + + + + + Bottom + + + + + BottomRight + + + + + Right + + + + + TopRight + + + + + Top + + + + + TopLeft + + + + + Left + + + + + + + + Padding + + + + + + + H. + + + + + + + -1000 + + + 1000 + + + 100 + + + + + + + V. + + + + + + + -1000 + + + 1000 + + + 100 + + + + + + + Qt::Vertical + + + + 54 + 16 + + + + + + + + + true + + + + Negative Pos. + + + + + + + + ( Default Value ) + + + + + Center + + + + + NorthEast + + + + + North + + + + + NorthWest + + + + + West + + + + + SouthWest + + + + + South + + + + + SouthEast + + + + + East + + + + + + + + Alignment + + + + + + + + Center + + + + + BottomLeft + + + + + Bottom + + + + + BottomRight + + + + + Right + + + + + TopRight + + + + + Top + + + + + TopLeft + + + + + Left + + + + + + + + Padding + + + + + + + H. + + + + + + + -1000 + + + 1000 + + + 100 + + + + + + + V. + + + + + + + -1000 + + + 1000 + + + 100 + + + + + + + Qt::Vertical + + + + 52 + 16 + + + + + + + + + + Custom Label + + + + + + + + + + Prefix + + + + + + + + + + Suffix + + + + + + + + + + + + + diff --git a/examples/DrawIntoPainter/mainwindow.ui b/examples/DrawIntoPainter/mainwindow.ui new file mode 100644 index 000000000..500a13c0a --- /dev/null +++ b/examples/DrawIntoPainter/mainwindow.ui @@ -0,0 +1,477 @@ + + + MainWindow + + + + 0 + 0 + 700 + 618 + + + + KD Chart drawing into a foreign QPainter + + + + + + + + + + + + + Display Data Values + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Line Chart Type + + + + + + + + Normal + + + + + Stacked + + + + + Percent + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Markers + + + + + + + Paint Markers + + + + + + + Markers Style + + + + + + + + Square + + + + + Map + + + + + Circle + + + + + Diamond + + + + + 1 Pixel + + + + + 4 Pixels + + + + + Ring + + + + + Cross + + + + + Fast Cross + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Markers Size + + + + + + + 6 + + + 0 + + + + + 6 + + + 0 + + + + + Width + + + + + + + Height + + + + + + + + + 6 + + + 0 + + + + + 10 + + + + + + + 10 + + + + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Areas + + + + + + + Display Areas + + + + + + + 6 + + + 0 + + + + + Opacity + + + + + + + 255 + + + 20 + + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Zoom + + + + + + + 6 + + + 0 + + + + + Zoom Factor + + + + + + + 0.010000000000000 + + + 9.900000000000000 + + + 0.100000000000000 + + + 1.000000000000000 + + + + + + + + + + + Qt::Horizontal + + + + + + + Display Legend + + + true + + + + + + + Qt::Vertical + + + + 170 + 16 + + + + + + + + Save as PNG + + + + + + + Save as PDF + + + + + + + + + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + 999 + + + 10 + + + 100 + + + 500 + + + Qt::Vertical + + + + + + + + + 999 + + + 10 + + + 100 + + + 500 + + + Qt::Horizontal + + + + + + + + + + + + diff --git a/examples/Gantt/legend_example/entrydialog.ui b/examples/Gantt/legend_example/entrydialog.ui new file mode 100644 index 000000000..82949b11c --- /dev/null +++ b/examples/Gantt/legend_example/entrydialog.ui @@ -0,0 +1,184 @@ + + + EntryDialog + + + + 0 + 0 + 439 + 206 + + + + + + + + + Name + + + + + + + + + + + + + + Legend + + + + + + + + + + + + + + Type + + + + + + + + + + Qt::Horizontal + + + + 41 + 20 + + + + + + + + Start date + + + + + + + true + + + + + + + Completion + + + + + + + % + + + 100 + + + + + + + End date + + + + + + + true + + + + + + + Read Only + + + + + + + Depends on + + + + + + + + - None - + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + + buttonBox + accepted() + EntryDialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + EntryDialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/examples/Gantt/legend_example/mainwindow.ui b/examples/Gantt/legend_example/mainwindow.ui new file mode 100644 index 000000000..43a536a90 --- /dev/null +++ b/examples/Gantt/legend_example/mainwindow.ui @@ -0,0 +1,47 @@ + + MainWindow + + + + 0 + 0 + 556 + 330 + + + + Qt::DefaultContextMenu + + + KD Gantt Example + + + + + + + + + + + + 0 + 0 + 556 + 29 + + + + + + + + KDGantt::View + QWidget +
KDGanttView
+ 1 +
+
+ + +
diff --git a/examples/Grids/PolarGrid/mainwindow.ui b/examples/Grids/PolarGrid/mainwindow.ui new file mode 100644 index 000000000..833ad3f59 --- /dev/null +++ b/examples/Grids/PolarGrid/mainwindow.ui @@ -0,0 +1,169 @@ + + + MainWindow + + + + 0 + 0 + 717 + 691 + + + + Polar Chart + + + + + + + + + 9 + + + 6 + + + + + Grid lines + + + false + + + false + + + + 6 + + + 9 + + + + + Circular + + + true + + + + + + + Sagittal + + + true + + + + + + + + + + Coordinate plane + + + false + + + false + + + + 9 + + + 6 + + + + + Start + + + + + + + + 0 + 0 + + + + 360 + + + Qt::Horizontal + + + + + + + 0.000000000000000 + + + 360.000000000000000 + + + 1.000000000000000 + + + 0.000000000000000 + + + + + + + + + + Qt::Vertical + + + + 128 + 221 + + + + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + + diff --git a/examples/HeadersFooters/Advanced/addheaderdialog.ui b/examples/HeadersFooters/Advanced/addheaderdialog.ui new file mode 100644 index 000000000..500bc0fac --- /dev/null +++ b/examples/HeadersFooters/Advanced/addheaderdialog.ui @@ -0,0 +1,161 @@ + + + AddHeaderDialog + + + + 0 + 0 + 333 + 142 + + + + Dialog + + + + 6 + + + 9 + + + + + 0 + + + 6 + + + + + &Position + + + positionCO + + + + + + + + + + + + + + + + + T&ype + + + typeCO + + + + + + + + Header + + + + + Footer + + + + + + + + &Text + + + textED + + + + + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + + 131 + 31 + + + + + + + + &OK + + + + + + + &Cancel + + + + + + + + + + + okButton + clicked() + AddHeaderDialog + accept() + + + 278 + 253 + + + 96 + 254 + + + + + cancelButton + clicked() + AddHeaderDialog + reject() + + + 369 + 253 + + + 179 + 282 + + + + + diff --git a/examples/HeadersFooters/Advanced/mainwindow.ui b/examples/HeadersFooters/Advanced/mainwindow.ui new file mode 100644 index 000000000..7d26e25d2 --- /dev/null +++ b/examples/HeadersFooters/Advanced/mainwindow.ui @@ -0,0 +1,115 @@ + + + + + MainWindow + + + + 0 + 0 + 885 + 597 + + + + KD Chart 2 example: Headers and Footers + + + + 9 + + + 6 + + + + + Qt::Horizontal + + + + Qt::Vertical + + + + Headers and Footers + + + + 9 + + + 6 + + + + + + Text + + + + + Type + + + + + Position + + + + + + + + 0 + + + 6 + + + + + &Add... + + + + + + + Edit... + + + + + + + &Remove + + + + + + + + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + + + diff --git a/examples/Legends/LegendAdvanced/addlegenddialog.ui b/examples/Legends/LegendAdvanced/addlegenddialog.ui new file mode 100644 index 000000000..46478572a --- /dev/null +++ b/examples/Legends/LegendAdvanced/addlegenddialog.ui @@ -0,0 +1,181 @@ + + + AddLegendDialog + + + + 0 + 0 + 355 + 232 + + + + Dialog + + + + 9 + + + 6 + + + + + + MarkersOnly + + + + + LinesOnly + + + + + MarkersAndLines + + + + + + + + Style + + + + + + + Show lines + + + + + + + Title Text + + + + + + + + + + Orientation + + + + + + + + Vertical + + + + + Horizontal + + + + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + + 131 + 31 + + + + + + + + OK + + + + + + + Cancel + + + + + + + + + + + + + + + Position + + + + + + + Alignment + + + + + + + + + okButton + clicked() + AddLegendDialog + accept() + + + 278 + 253 + + + 96 + 254 + + + + + cancelButton + clicked() + AddLegendDialog + reject() + + + 369 + 253 + + + 179 + 282 + + + + + diff --git a/examples/Legends/LegendAdvanced/mainwindow.ui b/examples/Legends/LegendAdvanced/mainwindow.ui new file mode 100644 index 000000000..85e521441 --- /dev/null +++ b/examples/Legends/LegendAdvanced/mainwindow.ui @@ -0,0 +1,126 @@ + + MainWindow + + + + 0 + 0 + 885 + 597 + + + + KD Chart 2 example: Legends + + + + 9 + + + 6 + + + + + Qt::Horizontal + + + + Qt::Vertical + + + + Legends + + + + 9 + + + 6 + + + + + + Position + + + + + Show Lines + + + + + Title + + + + + Orientation + + + + + Alignment + + + + + Style + + + + + + + + 0 + + + 6 + + + + + A&dd... + + + + + + + Edit... + + + + + + + R&emove + + + + + + + + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + + diff --git a/examples/Lines/Advanced/mainwindow.ui b/examples/Lines/Advanced/mainwindow.ui new file mode 100644 index 000000000..9ad9696d2 --- /dev/null +++ b/examples/Lines/Advanced/mainwindow.ui @@ -0,0 +1,378 @@ + + + MainWindow + + + + 0 + 0 + 692 + 545 + + + + Line Chart + + + + + + + + + 6 + + + 9 + + + + + 6 + + + 0 + + + + + Display Data Values + + + + + + + Center Data Points + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Line Chart Type + + + + + + + + Normal + + + + + Stacked + + + + + Percent + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + 6 + + + 0 + + + + + ThreeD Mode + + + + + + + ThreeD Mode + + + + + + + + + 6 + + + 0 + + + + + ThreeD Mode + + + + + + + 99 + + + 20 + + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Show Areas + + + + + + + 6 + + + 0 + + + + + Highlight Area + + + + + + + 3 + + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Animate + + + + + + + Highlight + + + + + + + 6 + + + 0 + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Value tracker + + + + + + + 6 + + + 0 + + + + + Enable value tracker + + + + + + + 3 + + + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Reverse Axis + + + + + + + Reverse abscissa axis + + + + + + + Reverse ordinate axis + + + + + + + + + Qt::Vertical + + + + 193 + 41 + + + + + + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + + diff --git a/examples/Lines/PointChart/mainwindow.ui b/examples/Lines/PointChart/mainwindow.ui new file mode 100644 index 000000000..ed1c09d11 --- /dev/null +++ b/examples/Lines/PointChart/mainwindow.ui @@ -0,0 +1,301 @@ + + + MainWindow + + + + 0 + 0 + 692 + 421 + + + + Line Chart + + + + + + + + + 9 + + + 6 + + + + + 6 + + + 0 + + + + + Display Data Values + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Line Chart Type + + + + + + + + Normal + + + + + Stacked + + + + + Percent + + + + + + + + Paint Lines + + + false + + + + + + + + + Qt::Horizontal + + + + + + + 6 + + + 0 + + + + + Markers + + + + + + + Paint Markers + + + true + + + + + + + Markers Style + + + + + + + + Circle + + + + + Square + + + + + Diamond + + + + + 1 Pixel + + + + + 4 Pixels + + + + + Ring + + + + + Cross + + + + + Fast Cross + + + + + CustomPainterPath + + + + + + + + + + 6 + + + 0 + + + + + Markers Size + + + + + + + 6 + + + 0 + + + + + 6 + + + 0 + + + + + Width + + + + + + + Height + + + + + + + + + 6 + + + 0 + + + + + 10 + + + + + + + 10 + + + + + + + + + + + + + Qt::Vertical + + + + 159 + 41 + + + + + + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + diff --git a/examples/ModelView/HidingData/mainwindow.ui b/examples/ModelView/HidingData/mainwindow.ui new file mode 100644 index 000000000..8860c4f3b --- /dev/null +++ b/examples/ModelView/HidingData/mainwindow.ui @@ -0,0 +1,92 @@ + + MainWindow + + + + 0 + 0 + 692 + 408 + + + + Hiding data without removing them from the model + + + + 9 + + + 6 + + + + + Qt::Vertical + + + + 159 + 291 + + + + + + + + Display 3rd dataset + + + true + + + + + + + Display 2nd dataset + + + true + + + + + + + Display 1st dataset + + + true + + + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + + diff --git a/examples/Pie/Advanced/mainwindow.ui b/examples/Pie/Advanced/mainwindow.ui new file mode 100644 index 000000000..bdebb7d5e --- /dev/null +++ b/examples/Pie/Advanced/mainwindow.ui @@ -0,0 +1,325 @@ + + + MainWindow + + + + 0 + 0 + 717 + 691 + + + + Pie Chart + + + + + + + + + 9 + + + 6 + + + + + 6 + + + 0 + + + + + 6 + + + 0 + + + + + Start position + + + + + + + 0.000000000000000 + + + 360.000000000000000 + + + 1.000000000000000 + + + 0.000000000000000 + + + + + + + + + + 0 + 0 + + + + 360 + + + Qt::Horizontal + + + + + + + Qt::Horizontal + + + + + + + 3D + + + true + + + false + + + + 6 + + + 9 + + + + + Factor + + + + + + + 20 + + + + + + + + + + Qt::Horizontal + + + + + + + Explode + + + false + + + false + + + + 9 + + + 6 + + + + + 0 + + + + + + + Factor + + + + + + + Dataset + + + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + + 20 + 16 + + + + + + + + Submit + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + 1.000000000000000 + + + 0.050000000000000 + + + + + + + Animate + + + + + + + + + + Qt::Vertical + + + + 188 + 311 + + + + + + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + animateExplosionCB + toggled(bool) + explodeDatasetSB + setDisabled(bool) + + + 65 + 190 + + + 119 + 106 + + + + + animateExplosionCB + toggled(bool) + explodeFactorSB + setDisabled(bool) + + + 86 + 189 + + + 125 + 132 + + + + + animateExplosionCB + toggled(bool) + explodeSubmitPB + setDisabled(bool) + + + 43 + 191 + + + 60 + 161 + + + + + diff --git a/examples/Plane/OverlayedPlanes/mainwindow.ui b/examples/Plane/OverlayedPlanes/mainwindow.ui new file mode 100644 index 000000000..da314a9a7 --- /dev/null +++ b/examples/Plane/OverlayedPlanes/mainwindow.ui @@ -0,0 +1,100 @@ + + MainWindow + + + + 0 + 0 + 692 + 421 + + + + Line Chart + + + + 9 + + + 6 + + + + + 0 + + + 6 + + + + + 0 + + + 6 + + + + + Display Grid - Diag. 1 + + + true + + + + + + + Display Grid - Diag. 2 + + + false + + + + + + + + + Qt::Vertical + + + + 159 + 311 + + + + + + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + diff --git a/examples/Plotter/BigDataset/Controls.ui b/examples/Plotter/BigDataset/Controls.ui new file mode 100644 index 000000000..807213075 --- /dev/null +++ b/examples/Plotter/BigDataset/Controls.ui @@ -0,0 +1,152 @@ + + + Controls + + + + 0 + 0 + 150 + 393 + + + + Form + + + + + + Function + + + + + + + Sine + + + true + + + + + + + Triangle + + + + + + + Square + + + + + + + Noise + + + + + + + 1 / sin(x) + + + + + + + sin(1 / x) + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 17 + 13 + + + + + + + + Run + + + true + + + false + + + + + + + Qt::Vertical + + + QSizePolicy::Fixed + + + + 17 + 13 + + + + + + + + Add 1000 points + + + + + + + Add 10k points + + + + + + + Add 100k points + + + + + + + Qt::Vertical + + + + 20 + 37 + + + + + + + + + diff --git a/examples/Plotter/BubbleChart/mainwindow.ui b/examples/Plotter/BubbleChart/mainwindow.ui new file mode 100644 index 000000000..1babcb4ed --- /dev/null +++ b/examples/Plotter/BubbleChart/mainwindow.ui @@ -0,0 +1,77 @@ + + + MainWindow + + + + 0 + 0 + 692 + 421 + + + + Bubble Chart + + + + + + + + + 9 + + + 6 + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + 3D + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + diff --git a/examples/Polar/Advanced/mainwindow.ui b/examples/Polar/Advanced/mainwindow.ui new file mode 100644 index 000000000..531b0cef5 --- /dev/null +++ b/examples/Polar/Advanced/mainwindow.ui @@ -0,0 +1,167 @@ + + + MainWindow + + + + 0 + 0 + 717 + 691 + + + + Polar Chart + + + + + + + + + 9 + + + 6 + + + + + Grid lines + + + false + + + false + + + + 6 + + + 9 + + + + + Circular + + + true + + + + + + + Sagittal + + + true + + + + + + + + + + Coordinate plane + + + false + + + false + + + + 9 + + + 6 + + + + + Start + + + + + + + + 0 + 0 + + + + 360 + + + Qt::Horizontal + + + + + + + 0.000000000000000 + + + 360.000000000000000 + + + 1.000000000000000 + + + 0.000000000000000 + + + + + + + + + + Qt::Vertical + + + + 128 + 221 + + + + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + diff --git a/examples/SharedAbscissa/SeparateDiagrams/mainwindow.ui b/examples/SharedAbscissa/SeparateDiagrams/mainwindow.ui new file mode 100644 index 000000000..375c46e12 --- /dev/null +++ b/examples/SharedAbscissa/SeparateDiagrams/mainwindow.ui @@ -0,0 +1,53 @@ + + + + + MainWindow + + + + 0 + 0 + 652 + 551 + + + + Shared Abscissa + + + + 9 + + + 6 + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + + + diff --git a/examples/Stock/Advanced/mainwindow.ui b/examples/Stock/Advanced/mainwindow.ui new file mode 100644 index 000000000..b3f063e23 --- /dev/null +++ b/examples/Stock/Advanced/mainwindow.ui @@ -0,0 +1,190 @@ + + + MainWindow + + + + 0 + 0 + 585 + 530 + + + + Stock Chart + + + + + + + + + 6 + + + 9 + + + + + 6 + + + 0 + + + + + Qt::Horizontal + + + + + + + Stock Chart Type + + + + + + + + High-Low-Close + + + + + Open-High-Low-Close + + + + + Candlestick + + + + + + + + Qt::Horizontal + + + + + + + 3D + + + true + + + false + + + + + + Perspective Angle (0°-360°) + + + + + + + 360 + + + Qt::Horizontal + + + + + + + Use shadow colors + + + + + + + 25 + + + Qt::Horizontal + + + + + + + Depth (0-25px) + + + + + + + + + + Colors + + + + + + + 0 + 0 + + + + + + + + + + + + + + Qt::Vertical + + + + 193 + 41 + + + + + + + + + + Qt::Horizontal + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + + diff --git a/examples/TernaryCharts/Advanced/mainwindow.ui b/examples/TernaryCharts/Advanced/mainwindow.ui new file mode 100644 index 000000000..827b44c78 --- /dev/null +++ b/examples/TernaryCharts/Advanced/mainwindow.ui @@ -0,0 +1,43 @@ + + MainWindow + + + + 0 + 0 + 400 + 300 + + + + Ternary Diagram + + + + 9 + + + 6 + + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + ... + + + + + + + + diff --git a/examples/Widget/Advanced/mainwindow.ui b/examples/Widget/Advanced/mainwindow.ui new file mode 100644 index 000000000..e5fa10fe8 --- /dev/null +++ b/examples/Widget/Advanced/mainwindow.ui @@ -0,0 +1,117 @@ + + + MainWindow + + + + 0 + 0 + 561 + 512 + + + + Advanced + + + + 9 + + + 6 + + + + + Qt::Horizontal + + + + 211 + 20 + + + + + + + + + + + Add dataset + + + + + + + + Widget::Bar + + + + + Widget::Line + + + + + Widget::Pie + + + + + Widget::Polar + + + + + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + Select type + + + typeSelector + + + + + + + Leading + + + + + + + Qt::Horizontal + + + + 181 + 23 + + + + + + + + + + + + diff --git a/examples/Zoom/Keyboard/mainwindow.ui b/examples/Zoom/Keyboard/mainwindow.ui new file mode 100644 index 000000000..97a705c16 --- /dev/null +++ b/examples/Zoom/Keyboard/mainwindow.ui @@ -0,0 +1,40 @@ + + + + + MainWindow + + + + 0 + 0 + 561 + 512 + + + + Form + + + + 9 + + + 6 + + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + diff --git a/examples/Zoom/ScrollBars/mainwindow.ui b/examples/Zoom/ScrollBars/mainwindow.ui new file mode 100644 index 000000000..4c0c414d3 --- /dev/null +++ b/examples/Zoom/ScrollBars/mainwindow.ui @@ -0,0 +1,170 @@ + + + MainWindow + + + + 0 + 0 + 761 + 722 + + + + Axes + + + + + + + + + 9 + + + 6 + + + + + Qt::Vertical + + + + 170 + 521 + + + + + + + + 0 + + + 6 + + + + + 0.010000000000000 + + + 40.000000000000000 + + + 0.100000000000000 + + + 1.000000000000000 + + + + + + + Zoom + + + + + + + Zoom Factor + + + + + + + Enabled Rubberband zooming + + + + + + + Qt::Horizontal + + + + + + + auto-adjust the Grid + + + true + + + + + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + 999 + + + 10 + + + 100 + + + 500 + + + Qt::Horizontal + + + + + + + 999 + + + 10 + + + 100 + + + 500 + + + Qt::Vertical + + + + + + + + + + diff --git a/examples/demo/axissettings.ui b/examples/demo/axissettings.ui new file mode 100644 index 000000000..f23507215 --- /dev/null +++ b/examples/demo/axissettings.ui @@ -0,0 +1,73 @@ + + + AxisSettings + + + + 0 + 0 + 400 + 154 + + + + Form + + + + + + + + + Axis Settings + + + + + + Show Axis + + + + + + + false + + + Show Major Ticks + + + + + + + false + + + Show Minor Ticks + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + diff --git a/examples/demo/datasetsettings.ui b/examples/demo/datasetsettings.ui new file mode 100644 index 000000000..37f9a0cc6 --- /dev/null +++ b/examples/demo/datasetsettings.ui @@ -0,0 +1,112 @@ + + + DatasetSettings + + + + 0 + 0 + 400 + 300 + + + + Form + + + + + + + + + Color + + + Qt::AlignCenter + + + + + + + + Color + + + true + + + buttonGroup + + + + + + + Gradient + + + buttonGroup + + + + + + + Texture + + + buttonGroup + + + + + + + + + + + + + + + + + + + Outline + + + + + + + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + diff --git a/examples/demo/datavaluesettings.ui b/examples/demo/datavaluesettings.ui new file mode 100644 index 000000000..5c314e9ce --- /dev/null +++ b/examples/demo/datavaluesettings.ui @@ -0,0 +1,593 @@ + + + DataValueSettings + + + + 0 + 0 + 585 + 698 + + + + Setting up Data Value Texts + + + + ../DataValueTexts../DataValueTexts + + + + + + + + + Scope of settings + + + + + + dataset + + + + + + + item + + + + + + + One Bar + + + + + + + false + + + 3 + + + + + + + false + + + 3 + + + + + + + A Series + + + + + + + false + + + 3 + + + + + + + Common + + + + + + + + + + Qt::Vertical + + + + 54 + 16 + + + + + + + + Display Data Values + + + + + + + Qt::Horizontal + + + + + + + + + Font + + + + + + + + + + + + Relative Size + + + + + + + -1000 + + + 1000 + + + 100 + + + + + + + Minimum Size + + + + + + + + + + Rotation + + + + + + + -359 + + + 359 + + + 15 + + + + + + + Qt::Vertical + + + + 54 + 16 + + + + + + + + + 50 + true + false + + + + Positive Position + + + + + + + + ( Default Value ) + + + + + Center + + + + + NorthEast + + + + + North + + + + + NorthWest + + + + + West + + + + + SouthWest + + + + + South + + + + + SouthEast + + + + + East + + + + + + + + Alignment + + + + + + + + Center + + + + + BottomLeft + + + + + Bottom + + + + + BottomRight + + + + + Right + + + + + TopRight + + + + + Top + + + + + TopLeft + + + + + Left + + + + + + + + Padding + + + + + + + H. + + + + + + + -1000 + + + 1000 + + + 100 + + + + + + + V. + + + + + + + -1000 + + + 1000 + + + 100 + + + + + + + Qt::Vertical + + + + 54 + 16 + + + + + + + + + true + + + + Negative Position + + + + + + + + ( Default Value ) + + + + + Center + + + + + NorthEast + + + + + North + + + + + NorthWest + + + + + West + + + + + SouthWest + + + + + South + + + + + SouthEast + + + + + East + + + + + + + + Alignment + + + + + + + + Center + + + + + BottomLeft + + + + + Bottom + + + + + BottomRight + + + + + Right + + + + + TopRight + + + + + Top + + + + + TopLeft + + + + + Left + + + + + + + + Padding + + + + + + + H. + + + + + + + V. + + + + + + + -1000 + + + 1000 + + + 100 + + + + + + + Qt::Vertical + + + + 52 + 16 + + + + + + + + + + Custom Label + + + + + + + + + + Prefix + + + + + + + + + + Suffix + + + + + + + + + + + + + diff --git a/examples/demo/diagramsettings.ui b/examples/demo/diagramsettings.ui new file mode 100644 index 000000000..b1df1950e --- /dev/null +++ b/examples/demo/diagramsettings.ui @@ -0,0 +1,163 @@ + + + DiagramSettings + + + + 0 + 0 + 314 + 357 + + + + Form + + + + + + 3D Settings + + + + + + 3D + + + + + + + Auto Gradient + + + + + + + + + 3D Depth + + + + + + + + + + + + + + + Bar Attributes + + + + + + + + Bar Width + + + + + + + + + + + + + + + Diagram Background + + + + + + Visible + + + + + + + + + Color + + + true + + + buttonGroup + + + + + + + Gradient + + + buttonGroup + + + + + + + Texture + + + buttonGroup + + + + + + + + + + 0 + 0 + + + + + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + diff --git a/examples/demo/diagramtypedialog.ui b/examples/demo/diagramtypedialog.ui new file mode 100644 index 000000000..d27ff3794 --- /dev/null +++ b/examples/demo/diagramtypedialog.ui @@ -0,0 +1,54 @@ + + + DiagramTypeDialog + + + + 0 + 0 + 400 + 98 + + + + Dialog + + + + + + Diagram type + + + + + + + + + + Diagram subtype + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + diff --git a/examples/demo/gradientdialog.ui b/examples/demo/gradientdialog.ui new file mode 100644 index 000000000..a33912d34 --- /dev/null +++ b/examples/demo/gradientdialog.ui @@ -0,0 +1,152 @@ + + + GradientDialog + + + + 0 + 0 + 400 + 300 + + + + Dialog + + + + + + + + + + 0 + 0 + + + + + 0 + 50 + + + + + 16777215 + 50 + + + + true + + + + + + + GradientStop + + + Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop + + + + + + + + + + + Position + + + + + + + true + + + true + + + -999999990.000000000000000 + + + 999999999.990000009536743 + + + + + + + + + + + New Stop + + + + + + + DeleteStop + + + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::Ok + + + + + + + + + buttonBox + accepted() + GradientDialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + GradientDialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/kdablibfakes/include/KDABLibFakes b/kdablibfakes/include/KDABLibFakes new file mode 100644 index 000000000..b96bd3eff --- /dev/null +++ b/kdablibfakes/include/KDABLibFakes @@ -0,0 +1 @@ +#include "../src/KDABLibFakes.h" diff --git a/qtests/DrawIntoPainter/mainwindow.ui b/qtests/DrawIntoPainter/mainwindow.ui new file mode 100644 index 000000000..da9773dbc --- /dev/null +++ b/qtests/DrawIntoPainter/mainwindow.ui @@ -0,0 +1,471 @@ + + MainWindow + + + + 0 + 0 + 735 + 702 + + + + KD Chart drawing into a foreign QPainter + + + + + + + 9 + + + 6 + + + + + 999 + + + 10 + + + 100 + + + 500 + + + Qt::Vertical + + + + + + + 999 + + + 10 + + + 100 + + + 500 + + + Qt::Horizontal + + + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + 0 + + + 6 + + + + + Display Data Values + + + + + + + Qt::Horizontal + + + + + + + 0 + + + 6 + + + + + Line Chart Type: + + + + + + + + Normal + + + + + Stacked + + + + + Percent + + + + + + + + + + Qt::Horizontal + + + + + + + 0 + + + 6 + + + + + Markers: + + + + + + + Paint Markers + + + + + + + Markers Style + + + + + + + + Map + + + + + Circle + + + + + Square + + + + + Diamond + + + + + 1 Pixel + + + + + 4 Pixels + + + + + Ring + + + + + Cross + + + + + Fast Cross + + + + + + + + + + Qt::Horizontal + + + + + + + 0 + + + 6 + + + + + Markers Size: + + + + + + + 0 + + + 6 + + + + + 0 + + + 6 + + + + + Width: + + + + + + + Height + + + + + + + + + 0 + + + 6 + + + + + 10 + + + + + + + 10 + + + + + + + + + + + + + Qt::Horizontal + + + + + + + 0 + + + 6 + + + + + Area Charts: + + + + + + + Display Areas + + + + + + + 0 + + + 6 + + + + + Transparency: + + + + + + + 255 + + + 20 + + + + + + + + + + + Qt::Horizontal + + + + + + + 0 + + + 6 + + + + + Zooming: + + + + + + + 0 + + + 6 + + + + + Zoom Factor: + + + + + + + 9.900000000000000 + + + 0.010000000000000 + + + 0.100000000000000 + + + 1.000000000000000 + + + + + + + + + + + Qt::Horizontal + + + + + + + Display Legend + + + true + + + + + + + Qt::Vertical + + + + 170 + 16 + + + + + + + + Save as PNG + + + + + + + + + + + + diff --git a/src/KDChart/KDChartDatasetSelector.ui b/src/KDChart/KDChartDatasetSelector.ui new file mode 100644 index 000000000..5c55d3ea6 --- /dev/null +++ b/src/KDChart/KDChartDatasetSelector.ui @@ -0,0 +1,164 @@ + + Mirko Boehm <mirko@kdab.com> + + + DatasetSelector + + + + 0 + 0 + 728 + 344 + + + + + 3 + 3 + 0 + 0 + + + + + 0 + 0 + + + + Data Selector + + + + 9 + + + 6 + + + + + Only display a subset of the model in the chart: + + + true + + + false + + + + 9 + + + 6 + + + + + in reverse order. + + + + + + + ... + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + columns starting at column + + + Qt::AlignCenter + + + + + + + + + + Display + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + ... + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + rows starting at row + + + Qt::AlignCenter + + + + + + + in reverse order. + + + + + + + Display + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + Qt::Vertical + + + + 169 + 31 + + + + + + + + + + + + + diff --git a/tests/Gantt/apireview/entrydialog.ui b/tests/Gantt/apireview/entrydialog.ui new file mode 100644 index 000000000..0086bd59e --- /dev/null +++ b/tests/Gantt/apireview/entrydialog.ui @@ -0,0 +1,183 @@ + + EntryDialog + + + + 0 + 0 + 439 + 171 + + + + + + + + + Name: + + + + + + + + + + + + + + Legend: + + + + + + + + + + + + + + Type: + + + + + + + + + + Qt::Horizontal + + + + 41 + 20 + + + + + + + + Start date: + + + + + + + true + + + + + + + Completion: + + + + + + + % + + + 100 + + + + + + + End date: + + + + + + + true + + + + + + + Read Only + + + + + + + Depends on: + + + + + + + + - None - + + + + + + + + + + Qt::Horizontal + + + QDialogButtonBox::Cancel|QDialogButtonBox::NoButton|QDialogButtonBox::Ok + + + + + + + + + buttonBox + accepted() + EntryDialog + accept() + + + 248 + 254 + + + 157 + 274 + + + + + buttonBox + rejected() + EntryDialog + reject() + + + 316 + 260 + + + 286 + 274 + + + + + diff --git a/tests/Gantt/apireview/mainwindow.ui b/tests/Gantt/apireview/mainwindow.ui new file mode 100644 index 000000000..43a536a90 --- /dev/null +++ b/tests/Gantt/apireview/mainwindow.ui @@ -0,0 +1,47 @@ + + MainWindow + + + + 0 + 0 + 556 + 330 + + + + Qt::DefaultContextMenu + + + KD Gantt Example + + + + + + + + + + + + 0 + 0 + 556 + 29 + + + + + + + + KDGantt::View + QWidget +
KDGanttView
+ 1 +
+
+ + +
diff --git a/tests/RootIndex/mainwindow.ui b/tests/RootIndex/mainwindow.ui new file mode 100644 index 000000000..ce8439e9e --- /dev/null +++ b/tests/RootIndex/mainwindow.ui @@ -0,0 +1,53 @@ + + + + + MainWindow + + + + 0 + 0 + 652 + 551 + + + + Line Chart + + + + 9 + + + 6 + + + + + Qt::Horizontal + + + + + 300 + 400 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + + +