Commit ced33961 authored by DreamSourceLab's avatar DreamSourceLab

Add FFT function @ DSO mode

parent adf428ff
<RCC>
<qresource prefix="/qss_icons">
<file>rc/up_arrow_disabled.png</file>
<file>rc/stylesheet-branch-end.png</file>
<file>rc/branch_closed-on.png</file>
<file>rc/stylesheet-vline.png</file>
<file>rc/branch_closed.png</file>
<file>rc/branch_open-on.png</file>
<file>rc/transparent.png</file>
<file>rc/right_arrow_disabled.png</file>
<file>rc/sizegrip.png</file>
<file>rc/close.png</file>
<file>rc/close-hover.png</file>
<file>rc/close-pressed.png</file>
<file>rc/down_arrow.png</file>
<file>rc/left_arrow.png</file>
<file>rc/stylesheet-branch-more.png</file>
<file>rc/up_arrow.png</file>
<file>rc/right_arrow.png</file>
<file>rc/left_arrow_disabled.png</file>
<file>rc/branch_open.png</file>
<file>rc/down_arrow_disabled.png</file>
<file>rc/undock.png</file>
<file>rc/checkbox_checked_disabled.png</file>
<file>rc/checkbox_checked_focus.png</file>
<file>rc/checkbox_checked.png</file>
<file>rc/checkbox_indeterminate.png</file>
<file>rc/checkbox_indeterminate_focus.png</file>
<file>rc/checkbox_unchecked_disabled.png</file>
<file>rc/checkbox_unchecked_focus.png</file>
<file>rc/checkbox_unchecked.png</file>
<file>rc/radio_checked_disabled.png</file>
<file>rc/radio_checked_focus.png</file>
<file>rc/radio_checked.png</file>
<file>rc/radio_unchecked_disabled.png</file>
<file>rc/radio_unchecked_focus.png</file>
<file>rc/radio_unchecked.png</file>
</qresource>
<qresource prefix="/qdarkstyle">
<file>style.qss</file>
</qresource>
</RCC>
......@@ -245,18 +245,13 @@ QMenu
{
border: 1px solid #3A3939;
color: silver;
margin: 2px;
}
QMenu::icon
{
margin: 5px;
margin: 0px;
}
QMenu::item
{
padding: 5px 30px 5px 30px;
margin-left: 5px;
margin-left: 2px;
border: 1px solid transparent; /* reserve space for selection border */
}
......@@ -525,21 +520,6 @@ QSizeGrip {
}
QMainWindow::separator
{
background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0.0 #302F2F,
stop: 0.4 #333333,
stop: 0.5 #404040,
stop: 0.6 #333333,
stop: 1 #302F2F);
color: white;
padding-left: 0px;
spacing: 0px;
width: 3px;
border: 0px solid #202020;
}
QMenu::separator
{
height: 1px;
......@@ -574,19 +554,6 @@ QToolBar {
font-weight: bold;
}
QToolBar::handle:horizontal {
image: url(:/qss_icons/rc/Hmovetoolbar.png);
}
QToolBar::handle:vertical {
image: url(:/qss_icons/rc/Vmovetoolbar.png);
}
QToolBar::separator:horizontal {
image: url(:/qss_icons/rc/Hsepartoolbar.png);
}
QToolBar::separator:vertical {
image: url(:/qss_icons/rc/Vsepartoolbars.png);
}
QPushButton
{
color: silver;
......@@ -1180,39 +1147,65 @@ QStatusBar::item {
border-radius: 2px;
}
QFrame[height="3"], QFrame[width="3"] {
background-color: #444;
}
QSplitter::handle {
border: 0px dashed #3A3939;
QAbstractScrollArea
{
border-radius: 2px;
border: 0px transparent #3A3939;
background-color: #302F2F;
}
QSplitter::handle:horizontal {
QSplitter::handle:horizontal,
QMainWindow::separator
{
background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0.0 #302F2F,
stop: 0.4 #333333,
stop: 0.5 #404040,
stop: 0.6 #333333,
stop: 1 #302F2F);
color: white;
padding-left: 0px;
spacing: 0px;
width: 3px;
border: 0px solid #202020;
}
QSplitter::handle:vertical {
background-color: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0,
QSplitter::handle:horizontal:hover,
QMainWindow::separator:hover
{
background-color: QLinearGradient( x1: 0, y1: 0, x2: 0, y2: 1,
stop: 0.0 #302F2F,
stop: 0.4 #333333,
stop: 0.1 #333333,
stop: 0.5 #404040,
stop: 0.6 #333333,
stop: 0.9 #333333,
stop: 1 #302F2F);
color: white;
padding-left: 0px;
spacing: 0px;
width: 3px;
border: 0px solid #202020;
}
QSplitter::handle:vertical {
background-color: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0,
stop: 0.0 #302F2F,
stop: 0.3 #505050,
stop: 0.5 #606060,
stop: 0.7 #505050,
stop: 1 #302F2F);
height: 3px;
}
QAbstractScrollArea
{
border-radius: 2px;
border: 0px transparent #3A3939;
background-color: #302F2F;
QSplitter::handle:vertical:hover {
background-color: QLinearGradient( x1: 0, y1: 0, x2: 1, y2: 0,
stop: 0.0 #302F2F,
stop: 0.1 #505050,
stop: 0.5 #606060,
stop: 0.8 #505050,
stop: 1 #302F2F);
height: 3px;
}
#include "fftstack.h"
FftStack::FftStack()
{
}
#ifndef FFTSTACK_H
#define FFTSTACK_H
class FftStack
{
public:
FftStack();
};
#endif // FFTSTACK_H
#include "fftoptions.h"
FftOptions::FftOptions()
{
}
#ifndef FFTOPTIONS_H
#define FFTOPTIONS_H
class FftOptions
{
public:
FftOptions();
};
#endif // FFTOPTIONS_H
#include "ffttrace.h"
FftTrace::FftTrace()
{
}
#ifndef FFTTRACE_H
#define FFTTRACE_H
class FftTrace
{
public:
FftTrace();
};
#endif // FFTTRACE_H
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment