qt6windows7/examples/xml/dombookmarks/mainwindow.cpp

112 lines
3.3 KiB
C++
Raw Normal View History

2023-10-30 06:33:08 +08:00
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include "mainwindow.h"
#include "xbeltree.h"
2023-11-02 01:02:52 +08:00
#include <QApplication>
#include <QFileDialog>
#include <QMenuBar>
#include <QMessageBox>
#include <QStatusBar>
#include <QAction>
#include <QScreen>
using namespace Qt::StringLiterals;
//! [0]
2023-10-30 06:33:08 +08:00
MainWindow::MainWindow()
{
xbelTree = new XbelTree;
setCentralWidget(xbelTree);
createMenus();
statusBar()->showMessage(tr("Ready"));
setWindowTitle(tr("DOM Bookmarks"));
const QSize availableSize = screen()->availableGeometry().size();
resize(availableSize.width() / 2, availableSize.height() / 3);
}
2023-11-02 01:02:52 +08:00
//! [0]
2023-10-30 06:33:08 +08:00
2023-11-02 01:02:52 +08:00
//! [1]
2023-10-30 06:33:08 +08:00
void MainWindow::open()
{
2023-11-02 01:02:52 +08:00
QFileDialog fileDialog(this, tr("Open Bookmark File"), QDir::currentPath());
fileDialog.setMimeTypeFilters({"application/x-xbel"_L1});
if (fileDialog.exec() != QDialog::Accepted)
2023-10-30 06:33:08 +08:00
return;
2023-11-02 01:02:52 +08:00
const QString fileName = fileDialog.selectedFiles().constFirst();
2023-10-30 06:33:08 +08:00
QFile file(fileName);
if (!file.open(QFile::ReadOnly | QFile::Text)) {
2023-11-02 01:02:52 +08:00
QMessageBox::warning(this, tr("DOM Bookmarks"),
2023-10-30 06:33:08 +08:00
tr("Cannot read file %1:\n%2.")
.arg(QDir::toNativeSeparators(fileName),
file.errorString()));
return;
}
if (xbelTree->read(&file))
statusBar()->showMessage(tr("File loaded"), 2000);
}
2023-11-02 01:02:52 +08:00
//! [1]
2023-10-30 06:33:08 +08:00
2023-11-02 01:02:52 +08:00
//! [2]
2023-10-30 06:33:08 +08:00
void MainWindow::saveAs()
{
2023-11-02 01:02:52 +08:00
QFileDialog fileDialog(this, tr("Save Bookmark File"), QDir::currentPath());
fileDialog.setAcceptMode(QFileDialog::AcceptSave);
fileDialog.setDefaultSuffix("xbel"_L1);
fileDialog.setMimeTypeFilters({"application/x-xbel"_L1});
if (fileDialog.exec() != QDialog::Accepted)
2023-10-30 06:33:08 +08:00
return;
2023-11-02 01:02:52 +08:00
const QString fileName = fileDialog.selectedFiles().constFirst();
2023-10-30 06:33:08 +08:00
QFile file(fileName);
if (!file.open(QFile::WriteOnly | QFile::Text)) {
2023-11-02 01:02:52 +08:00
QMessageBox::warning(this, tr("DOM Bookmarks"),
2023-10-30 06:33:08 +08:00
tr("Cannot write file %1:\n%2.")
.arg(QDir::toNativeSeparators(fileName),
file.errorString()));
return;
}
if (xbelTree->write(&file))
statusBar()->showMessage(tr("File saved"), 2000);
}
2023-11-02 01:02:52 +08:00
//! [2]
2023-10-30 06:33:08 +08:00
2023-11-02 01:02:52 +08:00
//! [3]
2023-10-30 06:33:08 +08:00
void MainWindow::about()
{
QMessageBox::about(this, tr("About DOM Bookmarks"),
tr("The <b>DOM Bookmarks</b> example demonstrates how to "
"use Qt's DOM classes to read and write XML "
"documents."));
}
2023-11-02 01:02:52 +08:00
//! [3]
2023-10-30 06:33:08 +08:00
2023-11-02 01:02:52 +08:00
//! [4]
2023-10-30 06:33:08 +08:00
void MainWindow::createMenus()
{
QMenu *fileMenu = menuBar()->addMenu(tr("&File"));
QAction *openAct = fileMenu->addAction(tr("&Open..."), this, &MainWindow::open);
openAct->setShortcuts(QKeySequence::Open);
QAction *saveAsAct = fileMenu->addAction(tr("&Save As..."), this, &MainWindow::saveAs);
saveAsAct->setShortcuts(QKeySequence::SaveAs);
QAction *exitAct = fileMenu->addAction(tr("E&xit"), this, &QWidget::close);
exitAct->setShortcuts(QKeySequence::Quit);
menuBar()->addSeparator();
QMenu *helpMenu = menuBar()->addMenu(tr("&Help"));
helpMenu->addAction(tr("&About"), this, &MainWindow::about);
2023-11-02 01:02:52 +08:00
helpMenu->addAction(tr("About &Qt"), qApp, &QApplication::aboutQt);
2023-10-30 06:33:08 +08:00
}
2023-11-02 01:02:52 +08:00
//! [4]