Commit bff3e834 authored by Anatoly Mihalchenko's avatar Anatoly Mihalchenko
parent 9fcd791c
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
...@@ -237,8 +237,11 @@ int UBApplication::exec(const QString& pFileToImport) ...@@ -237,8 +237,11 @@ int UBApplication::exec(const QString& pFileToImport)
mainWindow->actionCut->setShortcuts(QKeySequence::Cut); mainWindow->actionCut->setShortcuts(QKeySequence::Cut);
connect(mainWindow->actionBoard, SIGNAL(triggered()), this, SLOT(showBoard())); connect(mainWindow->actionBoard, SIGNAL(triggered()), this, SLOT(showBoard()));
connect(mainWindow->actionBoard, SIGNAL(triggered()), this, SLOT(startScript()));
connect(mainWindow->actionWeb, SIGNAL(triggered()), this, SLOT(showInternet())); connect(mainWindow->actionWeb, SIGNAL(triggered()), this, SLOT(showInternet()));
connect(mainWindow->actionWeb, SIGNAL(triggered()), this, SLOT(stopScript()));
connect(mainWindow->actionDocument, SIGNAL(triggered()), this, SLOT(showDocument())); connect(mainWindow->actionDocument, SIGNAL(triggered()), this, SLOT(showDocument()));
connect(mainWindow->actionDocument, SIGNAL(triggered()), this, SLOT(stopScript()));
connect(mainWindow->actionQuit, SIGNAL(triggered()), this, SLOT(closing())); connect(mainWindow->actionQuit, SIGNAL(triggered()), this, SLOT(closing()));
connect(mainWindow, SIGNAL(closeEvent_Signal(QCloseEvent*)), this, SLOT(closeEvent(QCloseEvent*))); connect(mainWindow, SIGNAL(closeEvent_Signal(QCloseEvent*)), this, SLOT(closeEvent(QCloseEvent*)));
...@@ -262,6 +265,7 @@ int UBApplication::exec(const QString& pFileToImport) ...@@ -262,6 +265,7 @@ int UBApplication::exec(const QString& pFileToImport)
connect(mainWindow->actionDesktop, SIGNAL(triggered(bool)), applicationController, SLOT(showDesktop(bool))); connect(mainWindow->actionDesktop, SIGNAL(triggered(bool)), applicationController, SLOT(showDesktop(bool)));
connect(mainWindow->actionDesktop, SIGNAL(triggered(bool)), this, SLOT(stopScript()));
#ifndef Q_WS_MAC #ifndef Q_WS_MAC
connect(mainWindow->actionHideApplication, SIGNAL(triggered()), mainWindow, SLOT(showMinimized())); connect(mainWindow->actionHideApplication, SIGNAL(triggered()), mainWindow, SLOT(showMinimized()));
#else #else
...@@ -274,6 +278,7 @@ int UBApplication::exec(const QString& pFileToImport) ...@@ -274,6 +278,7 @@ int UBApplication::exec(const QString& pFileToImport)
connect(mainWindow->actionPreferences, SIGNAL(triggered()), mPreferencesController, SLOT(show())); connect(mainWindow->actionPreferences, SIGNAL(triggered()), mPreferencesController, SLOT(show()));
connect(mainWindow->actionTutorial, SIGNAL(triggered()), applicationController, SLOT(showTutorial())); connect(mainWindow->actionTutorial, SIGNAL(triggered()), applicationController, SLOT(showTutorial()));
connect(mainWindow->actionTutorial, SIGNAL(triggered()), this, SLOT(stopScript()));
connect(mainWindow->actionSankoreEditor, SIGNAL(triggered()), applicationController, SLOT(showSankoreEditor())); connect(mainWindow->actionSankoreEditor, SIGNAL(triggered()), applicationController, SLOT(showSankoreEditor()));
connect(mainWindow->actionCheckUpdate, SIGNAL(triggered()), applicationController, SLOT(checkUpdateRequest())); connect(mainWindow->actionCheckUpdate, SIGNAL(triggered()), applicationController, SLOT(checkUpdateRequest()));
...@@ -353,6 +358,16 @@ void UBApplication::showMinimized() ...@@ -353,6 +358,16 @@ void UBApplication::showMinimized()
#endif #endif
void UBApplication::startScript()
{
this->boardController->freezeW3CWidgets(false);
}
void UBApplication::stopScript()
{
this->boardController->freezeW3CWidgets(true);
}
void UBApplication::showBoard() void UBApplication::showBoard()
{ {
applicationController->showBoard(); applicationController->showBoard();
......
/* /*
* This program is free software: you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or * the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef UBAPPLICATION_H_ #ifndef UBAPPLICATION_H_
#define UBAPPLICATION_H_ #define UBAPPLICATION_H_
#include <QtGui> #include <QtGui>
#include "qtsingleapplication.h" #include "qtsingleapplication.h"
#include "transition/UniboardSankoreTransition.h" #include "transition/UniboardSankoreTransition.h"
namespace Ui namespace Ui
{ {
class MainWindow; class MainWindow;
} }
class UBBoardController; class UBBoardController;
class UBWebController; class UBWebController;
class UBControlView; class UBControlView;
class UBPreferencesController; class UBPreferencesController;
class UBResources; class UBResources;
class UBSettings; class UBSettings;
class UBPersistenceManager; class UBPersistenceManager;
class UBApplicationController; class UBApplicationController;
class UBDocumentController; class UBDocumentController;
class UBSoftwareUpdateController; class UBSoftwareUpdateController;
class UBMainWindow; class UBMainWindow;
class UBApplication : public QtSingleApplication class UBApplication : public QtSingleApplication
{ {
Q_OBJECT; Q_OBJECT;
public: public:
UBApplication(const QString &id, int &argc, char **argv); UBApplication(const QString &id, int &argc, char **argv);
virtual ~UBApplication(); virtual ~UBApplication();
int exec(const QString& pFileToImport); int exec(const QString& pFileToImport);
void cleanup(); void cleanup();
static QPointer<QUndoStack> undoStack; static QPointer<QUndoStack> undoStack;
static UBApplicationController *applicationController; static UBApplicationController *applicationController;
static UBBoardController* boardController; static UBBoardController* boardController;
static UBWebController* webController; static UBWebController* webController;
static UBDocumentController* documentController; static UBDocumentController* documentController;
static UBSoftwareUpdateController* softwareUpdateController; static UBSoftwareUpdateController* softwareUpdateController;
static UniboardSankoreTransition* mUniboardSankoreTransition; static UniboardSankoreTransition* mUniboardSankoreTransition;
static UBMainWindow* mainWindow; static UBMainWindow* mainWindow;
static UBApplication* app() static UBApplication* app()
{ {
return static_cast<UBApplication*>qApp; return static_cast<UBApplication*>qApp;
} }
static const QString mimeTypeUniboardDocument; static const QString mimeTypeUniboardDocument;
static const QString mimeTypeUniboardPage; static const QString mimeTypeUniboardPage;
static const QString mimeTypeUniboardPageItem; static const QString mimeTypeUniboardPageItem;
static const QString mimeTypeUniboardPageThumbnail; static const QString mimeTypeUniboardPageThumbnail;
static void showMessage(const QString& message, bool showSpinningWheel = false); static void showMessage(const QString& message, bool showSpinningWheel = false);
static void setDisabled(bool disable); static void setDisabled(bool disable);
static QObject* staticMemoryCleaner; static QObject* staticMemoryCleaner;
static QString globalStyleSheet(); static QString globalStyleSheet();
void decorateActionMenu(QAction* action); void decorateActionMenu(QAction* action);
void insertSpaceToToolbarBeforeAction(QToolBar* toolbar, QAction* action, int width = -1); void insertSpaceToToolbarBeforeAction(QToolBar* toolbar, QAction* action, int width = -1);
int toolBarHeight(); int toolBarHeight();
bool eventFilter(QObject *obj, QEvent *event); bool eventFilter(QObject *obj, QEvent *event);
bool isVerbose() { return mIsVerbose;} bool isVerbose() { return mIsVerbose;}
void setVerbose(bool verbose){mIsVerbose = verbose;} void setVerbose(bool verbose){mIsVerbose = verbose;}
static QString urlFromHtml(QString html); static QString urlFromHtml(QString html);
static bool isFromWeb(QString url); static bool isFromWeb(QString url);
signals: signals:
public slots: public slots:
void showBoard(); void showBoard();
void showInternet(); void showInternet();
void showDocument(); void showDocument();
void startScript();
void toolBarPositionChanged(QVariant topOrBottom); void stopScript();
void toolBarDisplayTextChanged(QVariant display);
void toolBarPositionChanged(QVariant topOrBottom);
void closeEvent(QCloseEvent *event); void toolBarDisplayTextChanged(QVariant display);
/** void closeEvent(QCloseEvent *event);
* Used on Windows platform to open file in running application. On MacOS X opening file is done through the
* FileOpen event that is handle in eventFilter method. /**
*/ * Used on Windows platform to open file in running application. On MacOS X opening file is done through the
bool handleOpenMessage(const QString& pMessage); * FileOpen event that is handle in eventFilter method.
*/
private slots: bool handleOpenMessage(const QString& pMessage);
void closing(); private slots:
#ifdef Q_WS_MAC
void showMinimized(); void closing();
#endif #ifdef Q_WS_MAC
void importUniboardFiles(); void showMinimized();
private: #endif
void importUniboardFiles();
void updateProtoActionsState(); private:
QList<QMenu*> mProtoMenus;
bool mIsVerbose; void updateProtoActionsState();
QList<QMenu*> mProtoMenus;
protected: bool mIsVerbose;
#if defined(Q_WS_MACX) && !defined(QT_MAC_USE_COCOA) protected:
bool macEventFilter(EventHandlerCallRef caller, EventRef event);
#endif #if defined(Q_WS_MACX) && !defined(QT_MAC_USE_COCOA)
bool macEventFilter(EventHandlerCallRef caller, EventRef event);
UBPreferencesController* mPreferencesController; #endif
}; UBPreferencesController* mPreferencesController;
};
class UBStyle : public QPlastiqueStyle
{
public: class UBStyle : public QPlastiqueStyle
{
UBStyle() public:
: QPlastiqueStyle()
{ UBStyle()
// NOOP : QPlastiqueStyle()
} {
// NOOP
virtual ~UBStyle() }
{
// NOOP virtual ~UBStyle()
} {
// NOOP
/* }
* redefined to be more cocoa like on texts
*/ /*
virtual void drawItemText(QPainter *painter, const QRect &rect, int alignment, const QPalette &pal, * redefined to be more cocoa like on texts
bool enabled, const QString& text, QPalette::ColorRole textRole) const; */
virtual void drawItemText(QPainter *painter, const QRect &rect, int alignment, const QPalette &pal,
bool enabled, const QString& text, QPalette::ColorRole textRole) const;
};
#endif /* UBAPPLICATION_H_ */ };
#endif /* UBAPPLICATION_H_ */
This diff is collapsed.
/* /*
* This program is free software: you can redistribute it and/or modify * 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 * it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or * the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version. * (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include "UBGraphicsItemUndoCommand.h" #include "UBGraphicsItemUndoCommand.h"
#include <QtGui> #include <QtGui>
#include "UBGraphicsScene.h" #include "UBGraphicsScene.h"
#include "core/memcheck.h" #include "core/memcheck.h"
#include "core/UBApplication.h"
UBGraphicsItemUndoCommand::UBGraphicsItemUndoCommand(UBGraphicsScene* pScene, const QSet<QGraphicsItem*>& pRemovedItems,
const QSet<QGraphicsItem*>& pAddedItems) #include "board/UBBoardController.h"
: mScene(pScene)
, mRemovedItems(pRemovedItems - pAddedItems) UBGraphicsItemUndoCommand::UBGraphicsItemUndoCommand(UBGraphicsScene* pScene, const QSet<QGraphicsItem*>& pRemovedItems,
, mAddedItems(pAddedItems - pRemovedItems) const QSet<QGraphicsItem*>& pAddedItems)
{ : mScene(pScene)
mFirstRedo = true; , mRemovedItems(pRemovedItems - pAddedItems)
} , mAddedItems(pAddedItems - pRemovedItems)
{
UBGraphicsItemUndoCommand::UBGraphicsItemUndoCommand(UBGraphicsScene* pScene, QGraphicsItem* pRemovedItem, mFirstRedo = true;
QGraphicsItem* pAddedItem) :
mScene(pScene) QSetIterator<QGraphicsItem*> itAdded(mAddedItems);
{ while (itAdded.hasNext())
{
if (pRemovedItem) UBApplication::boardController->freezeW3CWidget(itAdded.next(), true);
mRemovedItems.insert(pRemovedItem); }
if (pAddedItem) QSetIterator<QGraphicsItem*> itRemoved(mRemovedItems);
mAddedItems.insert(pAddedItem); while (itRemoved.hasNext())
{
mFirstRedo = true; UBApplication::boardController->freezeW3CWidget(itRemoved.next(), false);
}
} }
UBGraphicsItemUndoCommand::~UBGraphicsItemUndoCommand() UBGraphicsItemUndoCommand::UBGraphicsItemUndoCommand(UBGraphicsScene* pScene, QGraphicsItem* pRemovedItem,
{ QGraphicsItem* pAddedItem) :
//NOOP mScene(pScene)
} {
void UBGraphicsItemUndoCommand::undo() if (pRemovedItem)
{ {
if (!mScene){ mRemovedItems.insert(pRemovedItem);
return; UBApplication::boardController->freezeW3CWidget(pRemovedItem, true);
} }
QSetIterator<QGraphicsItem*> itAdded(mAddedItems); if (pAddedItem)
while (itAdded.hasNext()) {
{ mAddedItems.insert(pAddedItem);
QGraphicsItem* item = itAdded.next(); UBApplication::boardController->freezeW3CWidget(pAddedItem, false);
item->setSelected(false); }
mScene->removeItem(item);
} mFirstRedo = true;
QSetIterator<QGraphicsItem*> itRemoved(mRemovedItems); }
while (itRemoved.hasNext())
{ UBGraphicsItemUndoCommand::~UBGraphicsItemUndoCommand()
mScene->addItem(itRemoved.next()); {
} //NOOP
}
// force refresh, QT is a bit lazy and take a lot of time (nb item ^2 ?) to trigger repaint
mScene->update(mScene->sceneRect()); void UBGraphicsItemUndoCommand::undo()
{
} if (!mScene){
return;
void UBGraphicsItemUndoCommand::redo() }
{
// the Undo framework calls a redo while appending the undo command. QSetIterator<QGraphicsItem*> itAdded(mAddedItems);
// as we have already plotted the elements, we do not want to do it twice while (itAdded.hasNext())
if (!mFirstRedo) {
{ QGraphicsItem* item = itAdded.next();
if (!mScene){ item->setSelected(false);
return; mScene->removeItem(item);
} UBApplication::boardController->freezeW3CWidget(item, true);
}
QSetIterator<QGraphicsItem*> itRemoved(mRemovedItems);
while (itRemoved.hasNext()) QSetIterator<QGraphicsItem*> itRemoved(mRemovedItems);
{ while (itRemoved.hasNext())
QGraphicsItem* item = itRemoved.next(); {
item->setSelected(false); QGraphicsItem* item = itRemoved.next();
mScene->removeItem(item); mScene->addItem(item);
} UBApplication::boardController->freezeW3CWidget(item, false);
}
QSetIterator<QGraphicsItem*> itAdded(mAddedItems);
while (itAdded.hasNext()) // force refresh, QT is a bit lazy and take a lot of time (nb item ^2 ?) to trigger repaint
{ mScene->update(mScene->sceneRect());
mScene->addItem(itAdded.next());
} }
// force refresh, QT is a bit lazy and take a lot of time (nb item ^2) to trigger repaint void UBGraphicsItemUndoCommand::redo()
mScene->update(mScene->sceneRect()); {
} // the Undo framework calls a redo while appending the undo command.
else // as we have already plotted the elements, we do not want to do it twice
{ if (!mFirstRedo)
mFirstRedo = false; {
} if (!mScene){
} return;
}
QSetIterator<QGraphicsItem*> itRemoved(mRemovedItems);
while (itRemoved.hasNext())
{
QGraphicsItem* item = itRemoved.next();
item->setSelected(false);
mScene->removeItem(item);
UBApplication::boardController->freezeW3CWidget(item, true);
}
QSetIterator<QGraphicsItem*> itAdded(mAddedItems);
while (itAdded.hasNext())
{
QGraphicsItem* item = itAdded.next();
mScene->addItem(item);
UBApplication::boardController->freezeW3CWidget(item, false);
}
// force refresh, QT is a bit lazy and take a lot of time (nb item ^2) to trigger repaint
mScene->update(mScene->sceneRect());
}
else
{
mFirstRedo = false;
}
}
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment