IscanderCheМаусым 29, 2019, 5: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 хостинг.Ол саған ұнайды ма? Әлеуметтік желілерде бөлісіңіз!
Пікірлер
OI
- Ora Iro
- Жел. 24, 2024, 6:38 Т.Ж.
C++ - Тест 001. Первая программа и типы данных
- Нәтиже:40ұпай,
- Бағалау ұпайлары-8
AD
- Akiv Doros
- Қар. 11, 2024, 2:58 Т.Қ.
C++ - Тест 004. Указатели, Массивы и Циклы
- Нәтиже:50ұпай,
- Бағалау ұпайлары-4
m
- molni99
- Қаз. 26, 2024, 1:37 Т.Ж.
C++ - Тест 004. Указатели, Массивы и Циклы
- Нәтиже:80ұпай,
- Бағалау ұпайлары4
Соңғы пікірлер
ИМ
Django - Оқулық 017. Теңшелген Django кіру беті Добрый вечер Евгений! Я сделал себе авторизацию аналогичную вашей, все работает, кроме возврата к предидущей странице. Редеректит всегда на главную, хотя в логах сервера вижу запросы на правильн…
Игорь МаксимовҚар. 22, 2024, 11:51 Т.Ж.
Evgenii LegotckoiҚаз. 31, 2024, 2:37 Т.Қ.
Qt Creator көмегімен fb3 файл оқу құралы Подскажите как это запустить? Я не шарю в программировании и кодинге. Скачал и установаил Qt, но куча ошибок выдается и не запустить. А очень надо fb3 переконвертировать в html
ИМ
Django - Сабақ 064. Python Markdown кеңейтімін қалай жазуға болады Приветствую Евгений! У меня вопрос. Можно ли вставлять свои классы в разметку редактора markdown? Допустим имея стандартную разметку: <ul> <li></li> <li></l…
Игорь МаксимовҚаз. 5, 2024, 7:51 Т.Ж.
QML - Сабақ 016. SQLite деректер қоры және онымен QML Qt-та жұмыс істеу Здравствуйте, возникает такая проблема (я новичок): ApplicationWindow неизвестный элемент. (М300) для TextField и Button аналогично. Могу предположить, что из-за более новой верси…
Енді форумда талқылаңыз
Нужно запретить перемещение только некоторых итемов, остальные перемещать можно. Вопрос решен. Узнать QModelIndex элемента на который мы перетаскиваем другой элемент, можно с помощью функции indexAt(event->position().toPoint()) представления QTreeViev вызываемой в переопр…
AW
Why Paying for a Research Paper Can Be a Smart Choice Writing a research paper can be a daunting task, especially when faced with tight deadlines, complex topics, or a lack of resources. For many students, paying for a research paper is a practical…
Ayden WatkinsҚаң. 2, 2025, 12:09 Т.Ж.
p
Finding the Right Rittal Small Enclosure for Your Needs Rittal is a leading manufacturer of enclosures for industrial and IT applications. Their small enclosures offer a compact and reliable solution for a wide range of needs, from housing electronic…
pimacontrols85Жел. 31, 2024, 9:39 Т.Ж.
Donald RandolphЖел. 30, 2024, 2:59 Т.Ж.
Nirvana Yoga SchoolЖел. 30, 2024, 5:13 Т.Ж.
Получилось так: