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
|
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef __MainWindow_h__
#define __MainWindow_h__
#include "Shared/PlugGui/Container.h"
namespace Ui { class MainWindow; }
class LikeBack;
class QGridLayout;
class QNetworkAccessManager;
class PictureSearchWidget;
class Workflow;
class MainWindow : public PlugGui::Container
{
Q_OBJECT
public:
MainWindow(QWidget * parent = 0);
~MainWindow();
protected:
// ::Appliance::Container
QSize sceneViewSize() const;
void applianceSetTitle(const QString & title);
void applianceSetScene(AbstractScene * scene);
void applianceSetTopbar(const QList<QWidget *> & widgets);
void applianceSetSidebar(QWidget * widget);
void applianceSetCentralwidget(QWidget * widget);
void applianceSetValue(quint32 key, const QVariant & value);
void applianceSetFocusToScene();
// ::QWidget
void closeEvent(QCloseEvent * event);
private:
void createLikeBack();
void showLikeBack(int type);
void addNavigationWidget(QWidget * widget, int row, Qt::Alignment alignment);
void removeNavigationWidget(QWidget * widget);
Ui::MainWindow * ui;
QNetworkAccessManager * m_networkAccessManager;
QGridLayout * m_navigationLayout;
PictureSearchWidget * m_pictureSearch;
LikeBack * m_likeBack;
bool m_applyingAccelState;
private Q_SLOTS:
// notifications
void slotClosePictureSearch();
void slotHelpBarClicked(quint32);
void slotRenderingSlow();
// help box
void on_lbBug_clicked();
void on_lbFeature_clicked();
void on_lbLike_clicked();
// setup box
bool on_accelTestButton_clicked();
void on_accelBox_toggled(bool checked);
void on_transpBox_toggled(bool checked);
};
#endif
|