mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
Fix: ControlWidget placement
https://github.com/iceman1001/proxmark3/pull/258
This commit is contained in:
parent
642e5e906c
commit
769dee7e7a
2 changed files with 8 additions and 14 deletions
|
@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
|
||||||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||||
|
|
||||||
## [unreleased][unreleased]
|
## [unreleased][unreleased]
|
||||||
|
- Fix 'Lining up plot and control window' (@anticat)
|
||||||
- Fix 'annoying focus behaviour' on OSX (@Anticat)
|
- Fix 'annoying focus behaviour' on OSX (@Anticat)
|
||||||
- Implemented AppNap API, fixing #283 and #627 OSX USB comm issues (@AntiCat)
|
- Implemented AppNap API, fixing #283 and #627 OSX USB comm issues (@AntiCat)
|
||||||
- Added 'sc brute' - a naive SFI bruteforcer for contact smartcards (RDV40) (@iceman)
|
- Added 'sc brute' - a naive SFI bruteforcer for contact smartcards (RDV40) (@iceman)
|
||||||
|
|
|
@ -172,8 +172,7 @@ ProxWidget::ProxWidget(QWidget *parent, ProxGuiQT *master) : QWidget(parent) {
|
||||||
this->master = master;
|
this->master = master;
|
||||||
resize(800,500);
|
resize(800,500);
|
||||||
|
|
||||||
/** Setup the controller widget **/
|
// Setup the controller widget
|
||||||
|
|
||||||
controlWidget = new QWidget();
|
controlWidget = new QWidget();
|
||||||
opsController = new Ui::Form();
|
opsController = new Ui::Form();
|
||||||
opsController->setupUi(controlWidget);
|
opsController->setupUi(controlWidget);
|
||||||
|
@ -195,23 +194,17 @@ ProxWidget::ProxWidget(QWidget *parent, ProxGuiQT *master) : QWidget(parent) {
|
||||||
QObject::connect(opsController->horizontalSlider_dirthr_down, SIGNAL(valueChanged(int)), this, SLOT(vchange_dthr_down(int)));
|
QObject::connect(opsController->horizontalSlider_dirthr_down, SIGNAL(valueChanged(int)), this, SLOT(vchange_dthr_down(int)));
|
||||||
QObject::connect(opsController->horizontalSlider_askedge, SIGNAL(valueChanged(int)), this, SLOT(vchange_askedge(int)));
|
QObject::connect(opsController->horizontalSlider_askedge, SIGNAL(valueChanged(int)), this, SLOT(vchange_askedge(int)));
|
||||||
|
|
||||||
controlWidget->show();
|
|
||||||
|
|
||||||
// Set up the plot widget, which does the actual plotting
|
// Set up the plot widget, which does the actual plotting
|
||||||
|
|
||||||
plot = new Plot(this);
|
plot = new Plot(this);
|
||||||
/*
|
|
||||||
QSlider* slider = new QSlider(Qt::Horizontal);
|
|
||||||
slider->setFocusPolicy(Qt::StrongFocus);
|
|
||||||
slider->setTickPosition(QSlider::TicksBothSides);
|
|
||||||
slider->setTickInterval(10);
|
|
||||||
slider->setSingleStep(1);
|
|
||||||
*/
|
|
||||||
QVBoxLayout *layout = new QVBoxLayout;
|
QVBoxLayout *layout = new QVBoxLayout;
|
||||||
//layout->addWidget(slider);
|
|
||||||
layout->addWidget(plot);
|
layout->addWidget(plot);
|
||||||
setLayout(layout);
|
setLayout(layout);
|
||||||
//printf("Proxwidget Constructor just set layout\r\n");
|
show(); // places the window on the screen.
|
||||||
|
|
||||||
|
// Move controller widget below plot
|
||||||
|
controlWidget->move(x(),y()+frameSize().height());
|
||||||
|
controlWidget->resize(size().width(), controlWidget->size().height());
|
||||||
|
controlWidget->show();
|
||||||
}
|
}
|
||||||
|
|
||||||
// not 100% sure what i need in this block
|
// not 100% sure what i need in this block
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue