- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
前文已经讲解了菜单栏、工具栏、任务栏的实现方法,下面我们对程序进行完善。实现功能为:为软件添加“文件”菜单,并在下拉列表上添加”新建”、 ”打开”、 ”保存”、 ”另存为”、 ”关闭”,并在工具栏加上“新建”、“打开”、“保存”图标。
// 头文件
#pragma once
#include <QtWidgets/QMainWindow>
#include <QtGui>
#include <QtWidgets>
#include <QMainWindow>
#include "ui_mainWindow.h"
class mainWindow : public QMainWindow
{
Q_OBJECT
public:
mainWindow(QWidget *parent = Q_NULLPTR);
~mainWindow();
private:
Ui::mainWindowClass ui;
QDockWidget *dock_Image; // 图像窗口
QString currentPath; // 当前图像的路径
QLabel *imgLabel; // 图像显示框
void InitImage(); // 初始化图像
void Menu_File(); // 文件菜单
private slots :
void File_new(); // 新建
void File_open(); // 打开
void File_save(); // 保存
void File_saveas(); // 另存为
// 关闭不需要,直接使用close()
};
// CPP
#include "mainWindow.h"
#include <QtGui>
#include <QtWidgets>
#include <QMainWindow>
#pragma execution_character_set("utf-8")
mainWindow::mainWindow(QWidget *parent)
: QMainWindow(parent)
{
ui.setupUi(this);
Menu_File(); // 文件菜单
InitImage(); // 初始化图像QLabel
}
mainWindow::~mainWindow()
{
}
void mainWindow::Menu_File() // 文件菜单
{
// 菜单栏
QMenu *file = menuBar()->addMenu(tr("文件"));
// 菜单动作
QAction *Act_file_new = new QAction(QIcon("../Image/file/New.png"), tr("新建"), this);
Act_file_new->setShortcuts(QKeySequence::New); // 快捷键 Ctrl+N
connect(Act_file_new, SIGNAL(triggered()), this, SLOT(File_new()));
QAction *Act_file_open = new QAction(QIcon("../Image/file/Open.png"), tr("打开"), this);
Act_file_open->setShortcuts(QKeySequence::Open);// 快捷键 Ctrl+O
connect(Act_file_open, SIGNAL(triggered()), this, SLOT(File_open()));
QAction *Act_file_save = new QAction(QIcon("../Image/file/Save.png"), tr("保存"), this);
Act_file_save->setShortcuts(QKeySequence::Save);// 快捷键 Ctrl+S
connect(Act_file_save, SIGNAL(triggered()), this, SLOT(File_save()));
QAction *Act_file_saveas = new QAction(QIcon("../Image/file/SaveAs.png"), tr("另存为"), this);
Act_file_saveas->setShortcuts(QKeySequence::SaveAs);// 快捷键
connect(Act_file_saveas, SIGNAL(triggered()), this, SLOT(File_saveas()));
QAction *Act_file_close = new QAction(QIcon("../Image/file/Close.png"), tr("关闭"), this);
Act_file_close->setShortcuts(QKeySequence::Close);// 快捷键 Ctrl+F4
connect(Act_file_close, SIGNAL(triggered()), this, SLOT(close()));
// 将动作添加到菜单上
file->addAction(Act_file_new);
file->addAction(Act_file_open);
file->addAction(Act_file_save);
file->addAction(Act_file_saveas);
file->addSeparator(); //添加分割线
file->addAction(Act_file_close);
// 工具栏
ui.mainToolBar->addAction(Act_file_new);
ui.mainToolBar->addAction(Act_file_open);
ui.mainToolBar->addAction(Act_file_save);
// 任务栏
Act_file_new->setStatusTip(tr("新建图像"));
Act_file_open->setStatusTip(tr("打开图像"));
Act_file_save->setStatusTip(tr("保存图像"));
Act_file_saveas->setStatusTip(tr("图像另存为"));
Act_file_close->setStatusTip(tr("关闭软件"));
}
void mainWindow::InitImage() // 初始化图像Label
{
//……
}
void mainWindow::File_new() // 新建
{
//……
}
void mainWindow::File_open() // 打开
{
//……
}
void mainWindow::File_save() // 保存
{
//……
}
void mainWindow::File_saveas() // 另存为
{
//……
}
软件的运行结果如下:
运行无误,界面基本完成了。下面完善功能部分。
这里运用QLabel来显示图像(头文件中定义了QLabel *imgLabel),另一个显示图像的方法是QPainter,在后面的博文中会接触到。
void mainWindow::InitImage() // 初始化图像
{
// 初始化QDockWidget.在以后会讲到,是可移动隐藏的小窗口,
// 可以实现PS、VS停靠窗口的效果,目前只需了解
dock_Image = new QDockWidget(tr("图像"), this); // 图像
setCentralWidget(dock_Image);
// 初始化QLabel
imgLabel = new QLabel(dock_Image);
imgLabel->setScaledContents(true); // 设置QLabel自动适应图像大小
// 初始图像
QImage image = QImage(500, 500, QImage::Format_RGB32); // 新建图像
image.fill(qRgb(255, 255, 255)); // 全白
imgLabel->setPixmap(QPixmap::fromImage(image)); // 显示图像
imgLabel->resize(image.width(), image.height()); // 图像与imgLabel同大小
// 增加滚动条,如果图像比imgLabel大,就会出现滚动条
QScrollArea* scrollArea = new QScrollArea(this);
scrollArea->setBackgroundRole(QPalette::Dark);
scrollArea->setAlignment(Qt::AlignCenter);
scrollArea->setWidget(imgLabel);
dock_Image->setWidget(scrollArea);
}
效果是这样的:
void mainWindow::File_new() // 新建
{
QImage image = QImage(500, 500, QImage::Format_RGB32); // 创建长宽各500的RGB图像
image.fill(qRgb(255, 255, 255)); // 白色图像
imgLabel->setPixmap(QPixmap::fromImage(image)); // 转载图像
imgLabel->resize(image.width(), image.height()); // imgLabel与图像同大小
currentPath = ""; // 当前路径为空
}
void mainWindow::File_open() // 打开
{ QString path = QFileDialog::getOpenFileName(this, tr("选择图像"), ".", tr("Images(*.jpg *.png *.bmp)")); // 文件选择框
if (!path.isEmpty()) // 检测当前路径是否正确
{
QImage* img = new QImage();
if (!(img->load(path)))
{
QMessageBox::information(this, tr("错误"), tr("打开图像失败!"));
delete img;
return;
}
imgLabel->setPixmap(QPixmap::fromImage(*img));
imgLabel->resize(img->width(), img->height());
currentPath = path;
}
}
void mainWindow::File_save() // 保存
{
if (currentPath.isEmpty()) // 判断是新建的图像还是打开的图像
{
QString path = QFileDialog::getSaveFileName(this, tr("保存图像"), ".", tr("Images(*.jpg *.png *.bmp)"));
{
if (!path.isEmpty())
currentPath = path;
}
}
QImage img = imgLabel->pixmap()->toImage(); // 读取图像
img.save(currentPath); // 保存图像
}
void mainWindow::File_saveas() // 另存为
{
QString path = QFileDialog::getSaveFileName(this, tr("图像另存为"), ".", tr("Images(*.jpg *.png *.bmp)"));
if (!path.isEmpty())
{
QImage img = imgLabel->pixmap()->toImage();
img.save(path);
currentPath = path;
}
}
我正在尝试学习 Knockout 并尝试创建一个照片 uploader 。我已成功将一些图像存储在数组中。现在我想回帖。在我的 knockout 码(Javascript)中,我这样做: 我在 Jav
我正在使用 php 编写脚本。我的典型问题是如何在 mysql 中添加一个有很多替代文本和图像的问题。想象一下有机化学中具有苯结构的描述。 最有效的方法是什么?据我所知,如果我有一个图像,我可以在数据
我在两个图像之间有一个按钮,我想将按钮居中到图像高度。有人可以帮帮我吗? Entrar
下面的代码示例可以在这里查看 - http://dev.touch-akl.com/celebtrations/ 我一直在尝试做的是在 Canvas 上绘制 2 个图像(发光,然后耀斑。这些图像的链接
请检查此https://jsfiddle.net/rhbwpn19/4/ 图像预览对于第一篇帖子工作正常,但对于其他帖子则不然。 我应该在这里改变什么? function readURL(input)
我对 Canvas 有疑问。我可以用单个图像绘制 Canvas ,但我不能用单独的图像绘制每个 Canvas 。- 如果数据只有一个图像,它工作正常,但数据有多个图像,它不工作你能帮帮我吗? va
我的问题很简单。如何获取 UIImage 的扩展类型?我只能将图像作为 UIImage 而不是它的名称。图像可以是静态的,也可以从手机图库甚至文件路径中获取。如果有人可以为此提供一点帮助,将不胜感激。
我有一个包含 67 个独立路径的 SVG 图像。 是否有任何库/教程可以为每个路径创建单独的光栅图像(例如 PNG),并可能根据路径 ID 命名它们? 最佳答案 谢谢大家。我最终使用了两个答案的组合。
我想将鼠标悬停在一张图片(音乐专辑)上,然后播放一张唱片,所以我希望它向右移动并旋转一点,当它悬停时我希望它恢复正常动画片。它已经可以向右移动,但我无法让它随之旋转。我喜欢让它尽可能简单,因为我不是编
Retina iOS 设备不显示@2X 图像,它显示 1X 图像。 我正在使用 Xcode 4.2.1 Build 4D502,该应用程序的目标是 iOS 5。 我创建了一个测试应用(主/细节)并添加
我正在尝试从头开始以 Angular 实现图像 slider ,并尝试复制 w3school基于图像 slider 。 下面我尝试用 Angular 实现,谁能指导我如何使用 Angular 实现?
我正在尝试获取图像的图像数据,其中 w= 图像宽度,h = 图像高度 for (int i = x; i imageData[pos]>0) //Taking data (here is the pr
我的网页最初通过在 javascript 中动态创建图像填充了大约 1000 个缩略图。由于权限问题,我迁移到 suPHP。现在不用标准 标签本身 我正在通过这个 php 脚本进行检索 $file
我正在尝试将 python opencv 图像转换为 QPixmap。 我按照指示显示Page Link我的代码附在下面 img = cv2.imread('test.png')[:,:,::1]/2
我试图在这个 Repository 中找出语义分割数据集的 NYU-v2 . 我很难理解图像标签是如何存储的。 例如,给定以下图像: 对应的标签图片为: 现在,如果我在 OpenCV 中打开标签图像,
import java.util.Random; class svg{ public static void main(String[] args){ String f="\"
我有一张 8x8 的图片。 (位图 - 可以更改) 我想做的是能够绘制一个形状,给定一个 Path 和 Paint 对象到我的 SurfaceView 上。 目前我所能做的就是用纯色填充形状。我怎样才
要在页面上显示图像,你需要使用源属性(src)。src 指 source 。源属性的值是图像的 URL 地址。 定义图像的语法是: 在浏览器无法载入图像时,替换文本属性告诉读者她们失去的信息。此
**MMEditing是基于PyTorch的图像&视频编辑开源工具箱,支持图像和视频超分辨率(super-resolution)、图像修复(inpainting)、图像抠图(matting)、
我正在尝试通过资源文件将图像插入到我的程序中,如下所示: green.png other files 当我尝试使用 QImage 或 QPixm
我是一名优秀的程序员,十分优秀!