提交 a0742c64 编写于 作者: M manjaro

GUI Disp Ok

上级 09ee4c78
...@@ -220,6 +220,12 @@ ...@@ -220,6 +220,12 @@
</item> </item>
<item> <item>
<widget class="QToolBox" name="toolBox_tool"> <widget class="QToolBox" name="toolBox_tool">
<property name="minimumSize">
<size>
<width>320</width>
<height>0</height>
</size>
</property>
<property name="maximumSize"> <property name="maximumSize">
<size> <size>
<width>320</width> <width>320</width>
...@@ -227,14 +233,14 @@ ...@@ -227,14 +233,14 @@
</size> </size>
</property> </property>
<property name="currentIndex"> <property name="currentIndex">
<number>1</number> <number>0</number>
</property> </property>
<widget class="QWidget" name="Radio"> <widget class="QWidget" name="Radio">
<property name="geometry"> <property name="geometry">
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>261</width> <width>310</width>
<height>380</height> <height>380</height>
</rect> </rect>
</property> </property>
...@@ -328,8 +334,8 @@ ...@@ -328,8 +334,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>261</width> <width>310</width>
<height>380</height> <height>164</height>
</rect> </rect>
</property> </property>
<attribute name="label"> <attribute name="label">
......
...@@ -13,6 +13,7 @@ using std::shared_ptr; ...@@ -13,6 +13,7 @@ using std::shared_ptr;
uhd_io_thread::uhd_io_thread (std::function<void (void)> runner,QObject * p) uhd_io_thread::uhd_io_thread (std::function<void (void)> runner,QObject * p)
:QThread(p) :QThread(p)
,m_runner(runner) ,m_runner(runner)
{ {
} }
...@@ -31,6 +32,7 @@ void uhd_io_thread::run() ...@@ -31,6 +32,7 @@ void uhd_io_thread::run()
uhd_device::uhd_device() uhd_device::uhd_device()
:stop_signal_called(false) :stop_signal_called(false)
,streaming(false)
,rx_count(0) ,rx_count(0)
{ {
for (int i=0;i<bufsz;++i) for (int i=0;i<bufsz;++i)
...@@ -43,8 +45,10 @@ uhd_device::uhd_device() ...@@ -43,8 +45,10 @@ uhd_device::uhd_device()
uhd_device::uhd_device(const std::string &args) uhd_device::uhd_device(const std::string &args)
:stop_signal_called(false) :stop_signal_called(false)
,streaming(false)
,m_dev_args (args) ,m_dev_args (args)
,rx_count(0) ,rx_count(0)
{ {
for (int i=0;i<bufsz;++i) for (int i=0;i<bufsz;++i)
{ {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册