mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
some qt gui changes
This commit is contained in:
@@ -1,6 +1,24 @@
|
||||
#include "pagewithbackbutton.h"
|
||||
#include "QVBoxLayout"
|
||||
#include "QHBoxLayout"
|
||||
#include "QPushButton"
|
||||
|
||||
PageWithBackButton::PageWithBackButton(QWidget *parent) : QWidget(parent)
|
||||
PageWithBackButton::PageWithBackButton(QWidget *parent, QWidget* child) : QWidget(parent)
|
||||
{
|
||||
QVBoxLayout * layout = new QVBoxLayout();
|
||||
setLayout(layout);
|
||||
QWidget * topBar = new QWidget();
|
||||
QHBoxLayout * topBarLayout = new QHBoxLayout();
|
||||
topBar->setLayout(topBarLayout);
|
||||
layout->addWidget(topBar);
|
||||
layout->addWidget(child);
|
||||
|
||||
QPushButton * backButton = new QPushButton(topBar);
|
||||
backButton->setText("< Back");
|
||||
topBarLayout->addWidget(backButton);
|
||||
connect(backButton, SIGNAL(released()), this, SLOT(backReleasedSlot()));
|
||||
}
|
||||
|
||||
void PageWithBackButton::backReleasedSlot() {
|
||||
emit backReleased();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user