summaryrefslogtreecommitdiff
path: root/src/qcam/assets/feathericons/minus-circle.svg
AgeCommit message (Collapse)Author
2020-02-14qcam: assets: Provide initial icon setKieran Bingham
Provide simple clean icons from https://feathericons.com/ (https://github.com/feathericons/feather) These are provided under the MIT license. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
pan class="hl ppc">#include <QImage> #include <QPixmap> #include "format_converter.h" #include "viewfinder.h" ViewFinder::ViewFinder(QWidget *parent) : QLabel(parent), format_(0), width_(0), height_(0), image_(nullptr) { } void ViewFinder::display(const unsigned char *raw) { converter_.convert(raw, image_->bits()); QPixmap pixmap = QPixmap::fromImage(*image_); setPixmap(pixmap); } int ViewFinder::setFormat(unsigned int format, unsigned int width, unsigned int height) { int ret; ret = converter_.configure(format, width, height); if (ret < 0) return ret; format_ = format; width_ = width; height_ = height; setFixedSize(width, height); delete image_; image_ = new QImage(width, height, QImage::Format_RGB32); return 0; }