spinbox和slider

#-------------------------------------------------
#
# Project created by QtCreator 2020-05-03T01:20:40
#
#-------------------------------------------------

QT       += core gui

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = spinbox
TEMPLATE = app

# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS

# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0

CONFIG += c++11

SOURCES += 
        main.cpp 
        spinbox.cpp

HEADERS += 
        spinbox.h

FORMS += 
        spinbox.ui

# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target

spinbox和slider

spinbox.h

#ifndef SPINBOX_H
#define SPINBOX_H

#include <QMainWindow>
#include <QDialog>
#include <QLabel>
#include <QPushButton>
#include <QTime>
#include <QString>
#include <QTimer>

namespace Ui {
class spinbox;
}

class spinbox : public QMainWindow
{
    Q_OBJECT

public:
    explicit spinbox(QWidget *parent = nullptr);
    ~spinbox();
private:
    Ui::spinbox *ui;
};

#endif // SPINBOX_H

spinbox.cpp

#include "spinbox.h"
#include "ui_spinbox.h"

spinbox::spinbox(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::spinbox)
{
    ui->setupUi(this);
    connect(ui->spinBox, SIGNAL(valueChanged(int)), ui->slider, SLOT(setValue(int)));
    connect(ui->slider, SIGNAL(valueChanged(int)), ui->spinBox, SLOT(setValue(int)));
}

spinbox::~spinbox()
{
    delete ui;
}

main.cpp

#include "spinbox.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    spinbox w;
    w.show();

    return a.exec();
}

原文链接: https://www.cnblogs.com/kuikuitage/p/12820523.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍;

也有高质量的技术群,里面有嵌入式、搜广推等BAT大佬

    spinbox和slider

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/346010

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年3月2日 上午3:38
下一篇 2023年3月2日 上午3:40

相关推荐