forked from organicmaps/organicmaps
[QT] Added welcome dialog on first launch
This commit is contained in:
parent
53653a77cc
commit
9ad3df3f6b
5 changed files with 131 additions and 22 deletions
7
data/welcome.html
Normal file
7
data/welcome.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<html>
|
||||
<body>
|
||||
<center><h1>Offline World Map in your computer</h1></center>
|
||||
<p>Congratulations! You're just in one step to see yor favourite cities and countries! Download them once and use everywhere - no internet access is needed!</p>
|
||||
<p>We'll try to keep you updated when new application versions and new map data become available. And of course, you always can check latest news on our web site: <a href="http://www.mapswithme.com">www.mapswithme.com</a></p>
|
||||
</body>
|
||||
</html>
|
58
qt/info_dialog.cpp
Normal file
58
qt/info_dialog.cpp
Normal file
|
@ -0,0 +1,58 @@
|
|||
#include "info_dialog.hpp"
|
||||
|
||||
#include <QtGui/QIcon>
|
||||
#include <QtGui/QTextEdit>
|
||||
#include <QtGui/QPushButton>
|
||||
#include <QtGui/QHBoxLayout>
|
||||
#include <QtGui/QVBoxLayout>
|
||||
|
||||
#include <QtGui/QLabel>
|
||||
|
||||
namespace qt
|
||||
{
|
||||
InfoDialog::InfoDialog(QString const & title, QString const & text, QWidget * parent)
|
||||
: QDialog(parent)
|
||||
{
|
||||
QIcon icon(":logo.png");
|
||||
setWindowIcon(icon);
|
||||
setWindowTitle(title);
|
||||
|
||||
// QTextEdit * textEdit = new QTextEdit(text, this);
|
||||
// textEdit->setReadOnly(true);
|
||||
|
||||
QVBoxLayout * vBox = new QVBoxLayout();
|
||||
QLabel * label = new QLabel(text);
|
||||
vBox->addWidget(label);
|
||||
//vBox->addWidget(textEdit);
|
||||
// this horizontal layout is for buttons
|
||||
QHBoxLayout * hBox = new QHBoxLayout();
|
||||
vBox->addLayout(hBox);
|
||||
|
||||
setLayout(vBox);
|
||||
}
|
||||
|
||||
void InfoDialog::OnButtonClick(bool)
|
||||
{
|
||||
// @TODO determine which button is pressed
|
||||
done(0);
|
||||
}
|
||||
|
||||
void InfoDialog::SetCustomButtons(QStringList const & buttons)
|
||||
{
|
||||
QLayout * hBox = layout()->layout();
|
||||
// @TODO clear old buttons if any
|
||||
// for (int i = 0; i < hBox->count(); ++i)
|
||||
// {
|
||||
// QLayoutItem * item = hBox->itemAt(i);
|
||||
// hBox->removeItem(item);
|
||||
// delete item;
|
||||
// }
|
||||
|
||||
for (int i = 0; i < buttons.size(); ++i)
|
||||
{
|
||||
QPushButton * button = new QPushButton(buttons[i]);
|
||||
connect(button, SIGNAL(clicked(bool)), this, SLOT(OnButtonClick(bool)));
|
||||
hBox->addWidget(button);
|
||||
}
|
||||
}
|
||||
}
|
20
qt/info_dialog.hpp
Normal file
20
qt/info_dialog.hpp
Normal file
|
@ -0,0 +1,20 @@
|
|||
#pragma once
|
||||
|
||||
#include <QtGui/QDialog>
|
||||
|
||||
namespace qt
|
||||
{
|
||||
/// Simple information dialog with scrollable html content
|
||||
class InfoDialog : public QDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
/// Default constructor creates dialog without any buttons
|
||||
explicit InfoDialog(QString const & title, QString const & text, QWidget * parent);
|
||||
/// Sets buttons in dialog
|
||||
void SetCustomButtons(QStringList const & buttons);
|
||||
|
||||
public slots:
|
||||
void OnButtonClick(bool);
|
||||
};
|
||||
}
|
|
@ -8,6 +8,7 @@
|
|||
#include "slider_ctrl.hpp"
|
||||
#include "about.hpp"
|
||||
#include "preferences_dialog.hpp"
|
||||
#include "info_dialog.hpp"
|
||||
|
||||
#include "../defines.hpp"
|
||||
|
||||
|
@ -72,6 +73,27 @@ MainWindow::MainWindow() : m_updateDialog(0)
|
|||
#endif
|
||||
|
||||
LoadState();
|
||||
|
||||
// Show intro dialog if necessary
|
||||
bool bShow = false;
|
||||
if (!Settings::Get("ShowWelcome", bShow))
|
||||
{
|
||||
QFile welcomeTextFile(GetPlatform().ReadPathForFile("welcome.html").c_str());
|
||||
if (welcomeTextFile.open(QIODevice::ReadOnly))
|
||||
{
|
||||
QByteArray text = welcomeTextFile.readAll();
|
||||
welcomeTextFile.close();
|
||||
|
||||
InfoDialog welcomeDlg(tr("Welcome to MapsWithMe!"), text, this);
|
||||
QStringList buttons;
|
||||
buttons << tr("Download Maps");
|
||||
welcomeDlg.SetCustomButtons(buttons);
|
||||
welcomeDlg.exec();
|
||||
}
|
||||
Settings::Set("ShowWelcome", bool(false));
|
||||
|
||||
ShowUpdateDialog();
|
||||
}
|
||||
}
|
||||
|
||||
#if defined(Q_WS_WIN)
|
||||
|
|
46
qt/qt.pro
46
qt/qt.pro
|
@ -55,29 +55,31 @@ win32-g++ {
|
|||
}
|
||||
|
||||
SOURCES += \
|
||||
main.cpp \
|
||||
mainwindow.cpp \
|
||||
searchwindow.cpp \
|
||||
widgets.cpp \
|
||||
update_dialog.cpp \
|
||||
draw_widget.cpp \
|
||||
classificator_tree.cpp \
|
||||
proxystyle.cpp \
|
||||
slider_ctrl.cpp \
|
||||
about.cpp \
|
||||
preferences_dialog.cpp \
|
||||
main.cpp \
|
||||
mainwindow.cpp \
|
||||
searchwindow.cpp \
|
||||
widgets.cpp \
|
||||
update_dialog.cpp \
|
||||
draw_widget.cpp \
|
||||
classificator_tree.cpp \
|
||||
proxystyle.cpp \
|
||||
slider_ctrl.cpp \
|
||||
about.cpp \
|
||||
preferences_dialog.cpp \
|
||||
info_dialog.cpp
|
||||
|
||||
HEADERS += \
|
||||
mainwindow.hpp \
|
||||
searchwindow.hpp \
|
||||
widgets.hpp \
|
||||
update_dialog.hpp \
|
||||
draw_widget.hpp \
|
||||
qt_window_handle.hpp \
|
||||
classificator_tree.hpp \
|
||||
proxystyle.hpp \
|
||||
slider_ctrl.hpp \
|
||||
about.hpp \
|
||||
preferences_dialog.hpp \
|
||||
mainwindow.hpp \
|
||||
searchwindow.hpp \
|
||||
widgets.hpp \
|
||||
update_dialog.hpp \
|
||||
draw_widget.hpp \
|
||||
qt_window_handle.hpp \
|
||||
classificator_tree.hpp \
|
||||
proxystyle.hpp \
|
||||
slider_ctrl.hpp \
|
||||
about.hpp \
|
||||
preferences_dialog.hpp \
|
||||
info_dialog.hpp
|
||||
|
||||
RESOURCES += res/resources.qrc \
|
||||
|
|
Loading…
Add table
Reference in a new issue