IscanderChe29 июня 2019 г. 17:07
Как избавиться от расстояния между виджетами
Вроде всё перепробовал, а не получается избавиться от расстояния между paintwidget-ами...
// widget.h #ifndef WIDGET_H #define WIDGET_H #include <QWidget> class Widget : public QWidget { Q_OBJECT public: Widget(QWidget *parent = 0); ~Widget(); }; #endif // WIDGET_H // widget.cpp #include "widget.h" #include "paintwidget.h" #include <QVBoxLayout> #include <QHBoxLayout> Widget::Widget(QWidget *parent) : QWidget(parent) { PaintWidget* paintWidget1 = new PaintWidget(parent); PaintWidget* paintWidget2 = new PaintWidget(parent); QVBoxLayout* layoutV = new QVBoxLayout; layoutV->addWidget(paintWidget1); layoutV->addWidget(paintWidget2); setLayout(layoutV); } Widget::~Widget() { } // paintwidget.h #ifndef PAINTWIDGET_H #define PAINTWIDGET_H #include <QWidget> class PaintWidget : public QWidget { Q_OBJECT public: explicit PaintWidget(QWidget *parent = 0); protected: void paintEvent(QPaintEvent*); private: int rectPhotoX; int rectPhotoY; int rectPhotoWidth; int rectPhotoHeight; }; #endif // PAINTWIDGET_H // paintwidget.cpp #include "paintwidget.h" #include <QPainter> PaintWidget::PaintWidget(QWidget *parent) :QWidget(parent), rectPhotoX(0), rectPhotoY(0), rectPhotoWidth(110), rectPhotoHeight(110) { setMinimumWidth(rectPhotoWidth); setMinimumHeight(rectPhotoHeight); QRect rect(rectPhotoX, rectPhotoY, rectPhotoWidth, rectPhotoHeight); setGeometry(rect); } void PaintWidget::paintEvent(QPaintEvent*) { QPainter painter(this); int rectPhotoRadius = 5; QRect rect(rectPhotoX, rectPhotoY, rectPhotoWidth, rectPhotoHeight); painter.setClipRect(rect); QBrush brush(Qt::white, Qt::SolidPattern); painter.fillRect(rect, brush); QImage img(":/images/DSC_0024.jpg"); painter.setRenderHint(QPainter::Antialiasing, true); painter.setBrush(QBrush(Qt::white)); painter.setPen(QPen(Qt::black, 1, Qt::DotLine)); QRect rectPhoto(rectPhotoX, rectPhotoY, rectPhotoWidth, rectPhotoHeight); painter.drawRoundedRect(rectPhoto, rectPhotoRadius, rectPhotoRadius); int minimumOffset = 10; int maximumWidthPhotoView = rectPhotoWidth - minimumOffset * 2; int maximumHeightPhotoView = rectPhotoHeight - minimumOffset * 2; int coefficientWidth = img.width() / maximumWidthPhotoView; int coefficientHeight = img.height() / maximumHeightPhotoView; int coefficient = 0; if(coefficientWidth > coefficientHeight) coefficient = coefficientWidth; else coefficient = coefficientHeight; int realWidthPhotoView = img.width() / coefficient; int realHeightPhotoView = img.height() / coefficient; int offsetX = (rectPhotoWidth - realWidthPhotoView) / 2; int offsetY = (rectPhotoHeight - realHeightPhotoView) / 2; int photoViewX = rectPhotoX + offsetX; int photoViewY = rectPhotoY + offsetY; QImage img2 = img.scaled(realWidthPhotoView, realHeightPhotoView); painter.drawImage(photoViewX, photoViewY, img2); }
Рекомендуем хостинг TIMEWEB
Стабильный хостинг, на котором располагается социальная сеть EVILEG. Для проектов на Django рекомендуем VDS хостинг.Вам это нравится? Поделитесь в социальных сетях!
Комментарии
Только авторизованные пользователи могут публиковать комментарии.
Пожалуйста, авторизуйтесь или зарегистрируйтесь
Пожалуйста, авторизуйтесь или зарегистрируйтесь
AD
- Akiv Doros
- 11 ноября 2024 г. 19:58
C++ - Тест 004. Указатели, Массивы и Циклы
- Результат:50баллов,
- Очки рейтинга-4
m
- molni99
- 26 октября 2024 г. 6:37
C++ - Тест 004. Указатели, Массивы и Циклы
- Результат:80баллов,
- Очки рейтинга4
m
- molni99
- 26 октября 2024 г. 6:29
C++ - Тест 004. Указатели, Массивы и Циклы
- Результат:20баллов,
- Очки рейтинга-10
Последние комментарии
Релиз утилиты развертывания С++/Qt и QML приложений CQtDeployer v1.4.0 (Binary Box) optionally substituted alkoxy, optionally substituted alkenyloxy, optionally substituted alkynyloxy, optionally substituted aryloxy, OCH, OC H, OC H, OC H, OC H, OC H, OC H, O C CH, OCH CH OH, O…
Qt/C++ - Урок 031. QCustomPlot - строим график по времени buy generic priligy We can just chat, and we will not lose too much time anyway
Qt/C++ - Урок 060. Настройка внешнего вида приложения в рантайме I didnt have an issue work colors priligy dapoxetine 60mg revia cost uk August 3, 2022 Reply
Коммутация каналов и пакетов в сетях передачи данных Angioedema 1 priligy dapoxetine
Как Копировать Файлы в Linux If only females relatives with DZ offspring were considered these percentages were 23 order priligy online uk
Сейчас обсуждают на форуме
добавить qlineseries в функции priligy amazon canada 93 GREB1 protein GREB1 AB011147 6
Всё ещё разбираюсь с кешем. priligy walgreens levitra dulcolax carbs The third ring was found to be made up of ultra relativistic electrons, which are also present in both the outer and inner rings
IscanderChe31 октября 2024 г. 19:43
Машина тьюринга // Начальное состояние 0 0, ,<,1 // Переход в состояние 1 при пустом символе 0,0,>,0 // Остаемся в состоянии 0, двигаясь вправо при встрече 0 0,1,>…
ИМ
Реализация навигации по разделам Спасибо Евгений!
Игорь Максимов3 октября 2024 г. 9:05
Получилось так: