-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Allen Winter
committed
Apr 22, 2019
1 parent
7a099d5
commit 91cb551
Showing
40 changed files
with
7,233 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ build-* | |
|
||
*.moc | ||
*.obj | ||
*.ui | ||
*.o | ||
*.app | ||
*.user | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
<ui version="4.0" > | ||
<class>MainWindow</class> | ||
<widget class="QWidget" name="MainWindow" > | ||
<property name="geometry" > | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>735</width> | ||
<height>691</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle" > | ||
<string>Axes </string> | ||
</property> | ||
<layout class="QGridLayout" > | ||
<property name="margin" > | ||
<number>9</number> | ||
</property> | ||
<property name="spacing" > | ||
<number>6</number> | ||
</property> | ||
<item row="0" column="2" > | ||
<widget class="QScrollBar" name="vSBar" > | ||
<property name="maximum" > | ||
<number>999</number> | ||
</property> | ||
<property name="singleStep" > | ||
<number>10</number> | ||
</property> | ||
<property name="pageStep" > | ||
<number>100</number> | ||
</property> | ||
<property name="value" > | ||
<number>500</number> | ||
</property> | ||
<property name="orientation" > | ||
<enum>Qt::Vertical</enum> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="1" column="1" > | ||
<widget class="QScrollBar" name="hSBar" > | ||
<property name="maximum" > | ||
<number>999</number> | ||
</property> | ||
<property name="singleStep" > | ||
<number>10</number> | ||
</property> | ||
<property name="pageStep" > | ||
<number>100</number> | ||
</property> | ||
<property name="value" > | ||
<number>500</number> | ||
</property> | ||
<property name="orientation" > | ||
<enum>Qt::Horizontal</enum> | ||
</property> | ||
</widget> | ||
</item> | ||
<item row="0" column="1" > | ||
<widget class="QSplitter" name="splitter" > | ||
<property name="orientation" > | ||
<enum>Qt::Horizontal</enum> | ||
</property> | ||
<widget class="QFrame" name="chartFrame" > | ||
<property name="sizePolicy" > | ||
<sizepolicy> | ||
<hsizetype>3</hsizetype> | ||
<vsizetype>3</vsizetype> | ||
<horstretch>0</horstretch> | ||
<verstretch>0</verstretch> | ||
</sizepolicy> | ||
</property> | ||
<property name="minimumSize" > | ||
<size> | ||
<width>300</width> | ||
<height>400</height> | ||
</size> | ||
</property> | ||
<property name="frameShape" > | ||
<enum>QFrame::StyledPanel</enum> | ||
</property> | ||
<property name="frameShadow" > | ||
<enum>QFrame::Raised</enum> | ||
</property> | ||
</widget> | ||
</widget> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources> | ||
<include location="BarChart" /> | ||
</resources> | ||
<connections/> | ||
</ui> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ui version="4.0"> | ||
<class>MainWindow</class> | ||
<widget class="QWidget" name="MainWindow"> | ||
<property name="geometry"> | ||
<rect> | ||
<x>0</x> | ||
<y>0</y> | ||
<width>720</width> | ||
<height>680</height> | ||
</rect> | ||
</property> | ||
<property name="windowTitle"> | ||
<string>Axis Labels</string> | ||
</property> | ||
<property name="windowIcon"> | ||
<iconset> | ||
<normaloff/> | ||
</iconset> | ||
</property> | ||
<layout class="QVBoxLayout" name="verticalLayout"> | ||
<item> | ||
<widget class="QCheckBox" name="m_annotations"> | ||
<property name="text"> | ||
<string>x Axis Annotations</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QCheckBox" name="m_linesOnAnnotations"> | ||
<property name="enabled"> | ||
<bool>true</bool> | ||
</property> | ||
<property name="text"> | ||
<string>Grid Lines on Annotations</string> | ||
</property> | ||
</widget> | ||
</item> | ||
<item> | ||
<widget class="QFrame" name="m_chartFrame"> | ||
<property name="frameShape"> | ||
<enum>QFrame::StyledPanel</enum> | ||
</property> | ||
<property name="frameShadow"> | ||
<enum>QFrame::Raised</enum> | ||
</property> | ||
</widget> | ||
</item> | ||
</layout> | ||
</widget> | ||
<resources> | ||
<include location="BarChart"/> | ||
</resources> | ||
<connections/> | ||
</ui> |
Oops, something went wrong.