1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
|
/***************************************************************************
* *
* This file is part of the Fotowall project, *
* http://www.enricoros.com/opensource/fotowall *
* *
* Copyright (C) 2007-2009 by Enrico Ros <enrico.ros@gmail.com> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "App/MainWindow.h"
#include "3rdparty/likebackfrontend/LikeBack.h"
#include "Shared/BreadCrumbBar.h"
#include "Shared/ButtonsDialog.h"
#include "Shared/RenderOpts.h"
#include "App.h"
#include "Hardware3DTest.h"
#include "OnlineServices.h"
#include "PictureSearchWidget.h"
#include "SceneView.h"
#include "Settings.h"
#include "Workflow.h"
#include "ui_MainWindow.h"
#include <QApplication>
#include <QCloseEvent>
#include <QDesktopWidget>
#include <QNetworkAccessManager>
#include <QVariant>
// const strings
#define FOTOWALL_FEEDBACK_LANGS "en,it,fr"
#define FOTOWALL_FEEDBACK_SERVER "www.enricoros.com"
#define FOTOWALL_FEEDBACK_PATH "/opensource/fotowall/feedback/send.php"
MainWindow::MainWindow(QWidget * parent)
: PlugGui::Container(parent)
, ui(new Ui::MainWindow())
, m_networkAccessManager(new QNetworkAccessManager)
, m_navigationLayout(0)
, m_pictureSearch(0)
, m_likeBack(0)
, m_applyingAccelState(false)
{
// setup widget
applianceSetTitle(QString());
setWindowIcon(QIcon(":/data/fotowall.png"));
// init ui
ui->setupUi(this);
ui->topBar->setFixedHeight(App::TopBarHeight);
#if QT_VERSION >= 0x040500
ui->transpBox->setEnabled(true);
ui->accelBox->setEnabled(ui->sceneView->supportsOpenGL());
ui->accelTestButton->setEnabled(ui->sceneView->supportsOpenGL());
#endif
ui->applianceSidebar->hide();
ui->sceneView->setFocus();
connect(ui->sceneView, SIGNAL(heavyRepaint()), this, SLOT(slotRenderingSlow()));
createLikeBack();
// create the navigation layout
m_navigationLayout = new QGridLayout;
m_navigationLayout->setContentsMargins(0, 0, 0, 0);
m_navigationLayout->setSpacing(3);
ui->navBar->setLayout(m_navigationLayout);
// create the Workflow navigation bar
BreadCrumbBar * workflowBar = new BreadCrumbBar(ui->sceneView);
workflowBar->setObjectName(QString::fromUtf8("applianceNavBar"));
workflowBar->setClickableLeaves(false);
workflowBar->setBackgroundOffset(-1);
addNavigationWidget(workflowBar, 0, Qt::AlignLeft);
// create the Help bar
BreadCrumbBar * helpBar = new BreadCrumbBar(ui->sceneView);
connect(helpBar, SIGNAL(nodeClicked(quint32)), this, SLOT(slotHelpBarClicked(quint32)));
helpBar->setBackgroundOffset(1);
helpBar->addNode(1, tr(" ? "), 0);
addNavigationWidget(helpBar, 0, Qt::AlignRight);
// show (with last geometry)
if (!restoreGeometry(App::settings->value("Fotowall/Geometry").toByteArray())) {
QRect desktopGeometry = QApplication::desktop()->availableGeometry();
resize(2 * desktopGeometry.width() / 3, 2 * desktopGeometry.height() / 3);
showMaximized();
} else
show();
#if QT_VERSION >= 0x040500
// re-apply transparency
if (App::settings->value("Fotowall/Tranlucent", false).toBool())
ui->transpBox->setChecked(true);
#endif
// start the workflow
new Workflow((PlugGui::Container *)this, workflowBar);
// create the online services
new OnlineServices(m_networkAccessManager);
#if 0
// start with the Help appliance the first time
if (App::settings->firstTime())
App::workflow->stackHelpAppliance();
#endif
}
MainWindow::~MainWindow()
{
// save window geometry
if (!isMaximized() && !isFullScreen())
App::settings->setValue("Fotowall/Geometry", saveGeometry());
else
App::settings->remove("Fotowall/Geometry");
// delete everything
delete App::workflow;
delete App::onlineServices;
delete m_networkAccessManager;
delete m_likeBack;
delete ui;
}
QSize MainWindow::sceneViewSize() const
{
return ui->sceneView->viewport()->size();
}
void MainWindow::applianceSetTitle(const QString & title)
{
QString tString = title.isEmpty() ? QString() : title + " - ";
tString += QCoreApplication::applicationName() + " ";
if (title.isEmpty())
tString += "' Alchimia ' ";
tString += QCoreApplication::applicationVersion();
#if QT_VERSION < 0x040500
tString += " -Limited Edition (Qt 4.4)-";
#endif
setWindowTitle(tString);
}
void MainWindow::applianceSetScene(AbstractScene * scene)
{
ui->sceneView->setScene(scene);
}
static void removeLayoutChildWidges(QLayout * layout)
{
while (QLayoutItem * item = layout->takeAt(0)) {
if (QWidget * oldWidget = item->widget())
oldWidget->setVisible(false);
delete item;
}
}
void MainWindow::applianceSetTopbar(const QList<QWidget *> & widgets)
{
// clear the topbar layout hiding all widgets
removeLayoutChildWidges(ui->applianceLeftBarLayout);
removeLayoutChildWidges(ui->applianceRightBarLayout);
// add the widgets to the topbar and show them
foreach (QWidget * widget, widgets) {
if (widget->property("@rightBar").toBool())
ui->applianceRightBarLayout->addWidget(widget);
else
ui->applianceLeftBarLayout->addWidget(widget);
widget->setFixedHeight(App::TopBarHeight);
widget->setVisible(true);
}
}
void MainWindow::applianceSetSidebar(QWidget * widget)
{
// clear the sidebar layout hiding any widget
removeLayoutChildWidges(ui->applianceSidebarLayout);
// completely hide the sidebar if no widget
ui->applianceSidebar->setVisible(widget);
// if any, add the widget to the sidebar
if (widget) {
ui->applianceSidebarLayout->addWidget(widget);
widget->show();
}
}
void MainWindow::applianceSetCentralwidget(QWidget * widget)
{
if (widget)
qWarning("MainWindow::applianceSetCentralwidget: unsupported");
}
void MainWindow::applianceSetValue(quint32 key, const QVariant & value)
{
if (key == App::CC_ShowPictureSearch) {
// destroy if needed
bool visible = value.toBool();
if (!visible && m_pictureSearch) {
m_pictureSearch->deleteLater();
m_pictureSearch = 0;
return;
}
// create if needed
if (visible && !m_pictureSearch) {
m_pictureSearch = new PictureSearchWidget(m_networkAccessManager);
connect(m_pictureSearch, SIGNAL(requestClosure()), this, SLOT(slotClosePictureSearch()), Qt::QueuedConnection);
m_pictureSearch->setWindowIcon(QIcon(":/data/insert-download.png"));
m_pictureSearch->setWindowTitle(tr("Search Web Pictures"));
m_pictureSearch->setWindowFlags(Qt::Tool);
QPoint newPos = mapToGlobal(ui->sceneView->pos()) + QPoint(-20, 10);
if (newPos.x() < 0)
newPos.setX(0);
m_pictureSearch->move(newPos);
m_pictureSearch->layout()->activate();
m_pictureSearch->resize(50, 50);
m_pictureSearch->show();
m_pictureSearch->setFocus();
return;
}
} else
qWarning("MainWindow::applianceSetValue: unknown key 0x%x", key);
}
void MainWindow::applianceSetFocusToScene()
{
ui->sceneView->setFocus(Qt::OtherFocusReason);
}
void MainWindow::closeEvent(QCloseEvent * event)
{
event->setAccepted(App::workflow->requestExit());
}
void MainWindow::createLikeBack()
{
m_likeBack = new LikeBack(LikeBack::AllButtons, false, this);
m_likeBack->setAcceptedLanguages(QString(FOTOWALL_FEEDBACK_LANGS).split(","));
m_likeBack->setServer(FOTOWALL_FEEDBACK_SERVER, FOTOWALL_FEEDBACK_PATH);
}
void MainWindow::slotClosePictureSearch()
{
App::workflow->applianceCommand(App::AC_ClosePicureSearch);
}
void MainWindow::slotHelpBarClicked(quint32 id)
{
if (id == 1)
App::workflow->stackHelpAppliance();
}
void MainWindow::slotRenderingSlow()
{
// don't act anymore
disconnect(ui->sceneView, SIGNAL(heavyRepaint()), this, SLOT(slotRenderingSlow()));
// draw attenction to the testing button
if (ui->sceneView->supportsOpenGL()) {
ui->modeWidget->setChecked(true);
ui->accelTestButton->drawAttenction();
}
}
void MainWindow::showLikeBack(int type)
{
int usageCount = App::settings->value("Fotowall/UsageCount").toInt();
QString usageString = QString::number(usageCount);
QString windowString = App::workflow->applianceName();
m_likeBack->execCommentDialog((LikeBack::Button)type, QString(), windowString, usageString);
}
void MainWindow::addNavigationWidget(QWidget * widget, int row, Qt::Alignment alignment)
{
// add the widget at the right place in the grid layout
if (alignment == Qt::AlignRight)
m_navigationLayout->addWidget(widget, row, 1, 1, 1, Qt::AlignRight);
else if (alignment & Qt::AlignHCenter)
m_navigationLayout->addWidget(widget, row, 0, 1, 2, Qt::AlignLeft);
else
m_navigationLayout->addWidget(widget, row, 0, 1, 1, Qt::AlignLeft);
// ensure the widget is shown
widget->show();
}
void MainWindow::removeNavigationWidget(QWidget *widget)
{
widget->hide();
m_navigationLayout->removeWidget(widget);
widget->setParent(0);
}
void MainWindow::on_lbLike_clicked()
{
showLikeBack(LikeBack::Like);
}
void MainWindow::on_lbFeature_clicked()
{
showLikeBack(LikeBack::Feature);
}
void MainWindow::on_lbBug_clicked()
{
showLikeBack(LikeBack::Bug);
}
bool MainWindow::on_accelTestButton_clicked()
{
// ask for confirmation
if (!m_applyingAccelState) {
ButtonsDialog d("TestOpenGL", tr("Accelerated Rendering"), tr("OpenGL accelerates graphics. However it's not supported by every system.<br><b>Do you want to do an acceleration test?</b>"), QDialogButtonBox::Ok | QDialogButtonBox::Cancel, true, false);
d.setIcon(QStyle::SP_MessageBoxQuestion);
if (d.execute() == QDialogButtonBox::Cancel)
return false;
}
// run the Hardware Test
Hardware3DTest testDialog;
Hardware3DTest::ExitState choice = testDialog.run();
if (choice == Hardware3DTest::Canceled)
return false;
// apply the user choice
bool setGL = choice == Hardware3DTest::UseOpenGL;
App::settings->setValue("OpenGL/Tested", true);
App::settings->setValue("OpenGL/TestResult", setGL);
m_applyingAccelState = true;
ui->accelBox->setChecked(setGL);
m_applyingAccelState = false;
return setGL;
}
void MainWindow::on_accelBox_toggled(bool checked)
{
// ask for confirmation/testing when enabling opengl
if (checked && !m_applyingAccelState) {
bool tested = App::settings->contains("OpenGL/Tested");
QDialogButtonBox::StandardButtons buttons = QDialogButtonBox::Ok | QDialogButtonBox::Cancel | (tested ? QDialogButtonBox::NoButton : QDialogButtonBox::Retry);
ButtonsDialog input("EnableOpenGL", tr("OpenGL"), tr("OpenGL accelerates graphics, but it doesn't work on some systems.<br> - if it feels slower, make sure that your driver accelerates OpenGL<br> - if Fotowall stops responding after switching to OpenGL, don't enable OpenGL next time"), buttons, true, tested);
input.setIcon(QStyle::SP_MessageBoxInformation);
if (!tested)
input.setButtonText(QDialogButtonBox::Retry, tr("Test OpenGL"));
QDialogButtonBox::StandardButton choice = input.execute();
// action canceled
if (choice == QDialogButtonBox::Cancel) {
ui->accelBox->setChecked(false);
return;
}
// testing required
if (choice == QDialogButtonBox::Retry) {
m_applyingAccelState = true;
checked = on_accelTestButton_clicked();
m_applyingAccelState = false;
}
}
#if QT_VERSION < 0x040600
// WORKAROUND Qt <= 4.6-beta1: toggle transparency with opengl
ui->transpBox->setChecked(false);
#endif
// set opengl state
ui->sceneView->setOpenGL(checked);
// save opengl state
RenderOpts::OpenGLWindow = ui->sceneView->openGL();
}
#ifdef Q_WS_WIN
/**
Blur behind windows (on Windows Vista/7)
The following code snippet has been borrowed from Jens of Qt Software / Nokia
see: http://labs.qt.nokia.com/blogs/2009/09/15/using-blur-behind-on-windows/
the license says: Use, modification and distribution is allowed without
limitation, warranty, liability or support of any kind.
**/
#include <QLibrary>
#include <qt_windows.h>
// Dwm Data Structures
#define DWM_BB_ENABLE 0x00000001 // fEnable has been specified
typedef struct _DWM_BLURBEHIND
{
DWORD dwFlags;
BOOL fEnable;
HRGN hRgnBlur;
BOOL fTransitionOnMaximized;
} DWM_BLURBEHIND;
// Dwm entry points
typedef HRESULT (WINAPI *PtrDwmIsCompositionEnabled)(BOOL * pfEnabled);
typedef HRESULT (WINAPI *PtrDwmEnableBlurBehindWindow)(HWND hWnd, const DWM_BLURBEHIND * pBlurBehind);
static PtrDwmIsCompositionEnabled pDwmIsCompositionEnabled = 0;
static PtrDwmEnableBlurBehindWindow pDwmEnableBlurBehindWindow = 0;
static bool dwmResolveLibs()
{
if (!pDwmIsCompositionEnabled) {
QLibrary dwmLib(QString::fromAscii("dwmapi"));
pDwmIsCompositionEnabled = (PtrDwmIsCompositionEnabled)dwmLib.resolve("DwmIsCompositionEnabled");
pDwmEnableBlurBehindWindow = (PtrDwmEnableBlurBehindWindow)dwmLib.resolve("DwmEnableBlurBehindWindow");
}
return pDwmIsCompositionEnabled != 0;
}
static bool dwmEnableBlurBehindWindow(QWidget * widget, bool enable)
{
bool result = false;
if (dwmResolveLibs()) {
DWM_BLURBEHIND bb = {0};
bb.dwFlags = DWM_BB_ENABLE;
bb.fEnable = enable;
bb.hRgnBlur = NULL;
HRESULT hr = pDwmEnableBlurBehindWindow(widget->winId(), &bb);
if (SUCCEEDED(hr))
result = true;
}
return result;
}
#endif
void MainWindow::on_transpBox_toggled(bool transparent)
{
#if QT_VERSION >= 0x040500
#ifdef Q_OS_WIN
static Qt::WindowFlags initialWindowFlags = windowFlags();
#endif
if (transparent) {
#ifdef Q_OS_LINUX
// one-time warning
ButtonsDialog warning("EnableTransparency", tr("Transparency"), tr("This feature requires compositing (compiz or kwin4) to work on Linux.<br>If you see a black background then transparency is not supported on your system."), QDialogButtonBox::Ok, true, true);
warning.setIcon(QStyle::SP_MessageBoxInformation);
warning.execute();
#endif
#if QT_VERSION < 0x040600
// WORKAROUND Qt <= 4.6-beta1: toggle opengl with transparency
ui->accelBox->setChecked(false);
#endif
// go transparent
setAttribute(Qt::WA_NoSystemBackground, true);
setAttribute(Qt::WA_TranslucentBackground, true);
// hint the render that we're transparent now
RenderOpts::ARGBWindow = true;
#ifdef Q_OS_WIN
// enable blur behind on Vista/7
if (!dwmEnableBlurBehindWindow(this, true)) {
// if blur fails, use a frameless window that's needed on XP for transparency
setWindowFlags(Qt::Window | Qt::FramelessWindowHint);
show();
}
#endif
// disable appliance background too
if (App::workflow)
App::workflow->applianceCommand(App::AC_ClearBackground);
} else {
// back to normal (non-alphaed) window
setAttribute(Qt::WA_TranslucentBackground, false);
setAttribute(Qt::WA_NoSystemBackground, false);
#ifdef Q_OS_WIN
// disable no-border on windows
setWindowFlags(initialWindowFlags);
show();
#endif
// hint the render that we're opaque again
RenderOpts::ARGBWindow = false;
}
// refresh the window
update();
#endif
// remember in settings
App::settings->setValue("Fotowall/Tranlucent", transparent);
}
|