c++ - QLabel定位问题

标签 c++ qt positioning qlabel

我在 Qt 中制作了以下基本图像查看器,但是它没有按预期运行,出于对圣洁事物的热爱,我无法找出问题所在。基本上,它是一个 QLabel,我已将其电影设置为 jpeg/gif,然后调整大小并将其居中放置在屏幕上。问题是,当它启动时,它既不调整大小也不在屏幕上居中,而是填充窗口并拉伸(stretch)图像。

示例:http://i.imgur.com/6l9wA.jpg

如果我把它放在QVBoxLayout里面,也是一样的。 但是,如果我执行缩放/缩放(通过按“+”或“-”,如 keyRelease 事件中所定义),它会将图像居中并完美调整大小。

示例:http://i.imgur.com/jGeUV.png

所以问题似乎只出现在加载图像时,但我找不到位置。我知道它一定很简单,但我已经搜索了 Qt 文档、谷歌、尝试组合注释行并添加不同的功能,但我一无所获。

顺便说一下,loadImage 函数底部的输出打印了正确的大小和位置,但它似乎没有遵守它们。

#include <QtGui>
#include "imageviewer.h"

ImageViewer::ImageViewer(QString imagePath)
{
    setWindowTitle(imagePath + " - Simple Image Viewer");
    currentImageSize=new QSize(0,0);

    fillScreen();

    imageLabel = new QLabel;
    imageLabel->setBackgroundRole(QPalette::Base);
    imageLabel->setScaledContents(true);

    QVBoxLayout* layout=new QVBoxLayout();
    layout->addWidget(imageLabel);

    QFrame* frame=new QFrame();
    frame->setLayout(layout);
    //setCentralWidget(frame);

    setCentralWidget(imageLabel);

    loadImage(imagePath);
}

void ImageViewer::loadImage(QString imagePath){
    currentImagePath=imagePath;
    open(imagePath);
    fitImage();
    centerImage();
    QTextStream out(stdout) ;

    //for debugging:
    out << QString("size: %1 %2 pos: %3 %4")
              .arg(imageLabel->width())
              .arg(imageLabel->height())
              .arg(imageLabel->x())
              .arg(imageLabel->y());
}

void ImageViewer::open(QString imagePath){
      if (!imagePath.isEmpty()) {
        QImage image(imagePath);

        currentImageSize=new QSize(image.size().width(),image.size().height());

        if (image.isNull()) {
            QMessageBox::information(this, tr("Image Viewer"),
                                     tr("Cannot load %1.").arg(imagePath));
            return;
        }

        imageLabel->resize(currentImageSize->width(),
                           currentImageSize->height());
        QMovie* movie=new QMovie(imagePath);
        imageLabel->setMovie(movie);
        movie->start();

        scaleFactor = 1.0;

        imageLabel->adjustSize();
      }
}

void ImageViewer::fitImage(){
    int windowHeight, windowWidth;
    int imageHeight, imageWidth;

    windowHeight = this->height();
    windowWidth = this->width();
    imageHeight = currentImageSize->height();
    imageWidth = currentImageSize->width();

    if(imageHeight > windowHeight || imageWidth > windowWidth){
        imageLabel->resize((windowHeight-40)*imageWidth/imageHeight, 
                            windowHeight-40);
    }
}

void ImageViewer::centerImage(){
    int windowHeight, windowWidth;
    int imageHeight, imageWidth;

    windowHeight = this->height();
    windowWidth = this->width();
    imageHeight = imageLabel->height();
    imageWidth = imageLabel->width();

    int x,y;
    x=(windowWidth-imageWidth)/2;
    y=(windowHeight-imageHeight)/2;
    imageLabel->move(x,y);
}

void ImageViewer::fillScreen(){
    this->showMaximized();
}

void ImageViewer::scaleImage(double factor)
{
    double newScale = scaleFactor + factor;

    if(newScale>MAX_SCALE || newScale<MIN_SCALE){
        return;
    }
    else{
        scaleFactor=newScale;
    }

    QTextStream out(stdout);
    imageLabel->resize(scaleFactor * currentImageSize->width(), 
                       scaleFactor * currentImageSize->height());

    out<< scaleFactor << " " 
       << imageLabel->height() << "," 
       << imageLabel->width() <<endl;

    centerImage();
}


void ImageViewer::keyReleaseEvent(QKeyEvent *event){
    if(event->key()==Qt::Key_Plus){
        scaleImage(SCALE_STEP);
    }
    if(event->key()==Qt::Key_Minus){
        scaleImage(0-(SCALE_STEP));
    }
}

标题是:

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QLabel>
#include <QMainWindow>

class ImageViewer : public QMainWindow
{
    Q_OBJECT

public:
    ImageViewer(QString imagePath);
    void open(QString imagePath);
    void loadImage(QString imagePath);
private:
    void fitImage();
    void centerImage();
    void fillScreen();
    void scaleImage(double);
    void adjustScrollBar(QScrollBar*,double);
    void keyReleaseEvent(QKeyEvent *);
private:
    QLabel* imageLabel;
    double scaleFactor;
    QSize* currentImageSize;
    QString currentImagePath;
    QString currentDir;
    QStringList neighbourImages;
    static const double MAX_SCALE=2.0;
    static const double MIN_SCALE=0.2;
    static const double SCALE_STEP=0.1;
};

#endif // MAINWINDOW_H

编辑:这是第一次加载后的 QLabel 和放大一次后的 QLabel 之间的区别:diffchecker.com/1uDcb83

最佳答案

我认为问题在于您正在尝试在主窗口构造函数中计算尺寸。这些尺寸目前还没有确定。您需要覆盖 QWidget::resizeEvent() (在 ImageViewer 中)并在那里进行尺寸计算。在设置小部件的几何形状后调用该函数。

关于c++ - QLabel定位问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9366519/

相关文章:

positioning - 如何移动拉斐尔集?

javascript - 将元素定位在高度未知的 float div 的底部

c++ - 如何仅按字母列出?

c++ - 类型别名和自引用

c++ - Qt 5 中特殊字符无法正确显示

qt - 如何在 Qt 中模拟用户交互(按键事件)?

c++ - 如何确保数组中没有重复项?

c++ - 如何将 NULL 放入矩阵 vector 的所有单元格中?

c++ - 如何在 Windows 上部署 Qt 应用程序?

html - 隐形覆盖 DIV 阻塞悬停? +定位