mirror of
https://github.com/emrullah-enis-ctnky/StopWatch-tr.git
synced 2025-04-20 08:19:09 +00:00
37 lines
833 B
C++
37 lines
833 B
C++
#include "time_set_window.h"
|
||
#include "ui_time_set_window.h"
|
||
|
||
time_set_window::time_set_window(QWidget *parent)
|
||
: QWidget(parent)
|
||
, ui(new Ui::time_set_window)
|
||
{
|
||
ui->setupUi(this);
|
||
setWindowTitle("Zamanı Ayarla");
|
||
setWindowFlags(Qt::Window);
|
||
connect(ui->pushButton_time_set,SIGNAL(clicked()),this,SIGNAL(push_button_clicked()));
|
||
}
|
||
|
||
time_set_window::~time_set_window()
|
||
{
|
||
delete ui;
|
||
}
|
||
|
||
QString time_set_window::line_edit_second_func()
|
||
{
|
||
return ui->lineEdit_second->text();
|
||
}
|
||
|
||
QString time_set_window::line_edit_minute_func()
|
||
{
|
||
return ui->lineEdit_minute->text();
|
||
}
|
||
|
||
QString time_set_window::line_edit_hour_func()
|
||
{
|
||
return ui->lineEdit_hour->text();
|
||
}
|
||
void time_set_window::line_edit_clear(){
|
||
ui->lineEdit_second->clear();
|
||
ui->lineEdit_hour->clear();
|
||
ui->lineEdit_minute->clear();
|
||
}
|