Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
42d519e6
Commit
42d519e6
authored
Aug 29, 2011
by
Anatoly Mihalchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SANKORE-186: Sankore hotkey Alt+F4 doesn't remove sankore from active processes
parent
bfe6df11
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
25 additions
and
4 deletions
+25
-4
UBApplication.cpp
src/core/UBApplication.cpp
+9
-1
UBApplication.h
src/core/UBApplication.h
+2
-0
UBGraphicsScene.cpp
src/domain/UBGraphicsScene.cpp
+2
-2
UBGraphicsScene.h
src/domain/UBGraphicsScene.h
+1
-1
UBMainWindow.cpp
src/gui/UBMainWindow.cpp
+7
-0
UBMainWindow.h
src/gui/UBMainWindow.h
+4
-0
No files found.
src/core/UBApplication.cpp
View file @
42d519e6
...
...
@@ -233,7 +233,8 @@ int UBApplication::exec(const QString& pFileToImport)
connect
(
mainWindow
->
actionWeb
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
showInternet
()));
connect
(
mainWindow
->
actionDocument
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
showDocument
()));
connect
(
mainWindow
->
actionQuit
,
SIGNAL
(
triggered
()),
this
,
SLOT
(
closing
()));
connect
(
mainWindow
,
SIGNAL
(
closeEvent_Signal
(
QCloseEvent
*
)),
this
,
SLOT
(
closeEvent
(
QCloseEvent
*
)));
boardController
=
new
UBBoardController
(
mainWindow
);
boardController
->
init
();
...
...
@@ -379,6 +380,13 @@ void UBApplication::toolBarDisplayTextChanged(QVariant display)
}
void
UBApplication
::
closeEvent
(
QCloseEvent
*
event
)
{
Q_UNUSED
(
event
);
closing
();
}
void
UBApplication
::
closing
()
{
...
...
src/core/UBApplication.h
View file @
42d519e6
...
...
@@ -99,6 +99,8 @@ class UBApplication : public QtSingleApplication
void
toolBarPositionChanged
(
QVariant
topOrBottom
);
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.
...
...
src/domain/UBGraphicsScene.cpp
View file @
42d519e6
...
...
@@ -238,7 +238,7 @@ bool UBGraphicsScene::inputDevicePress(const QPointF& scenePos, const qreal& pre
}
else
if
(
currentTool
==
UBStylusTool
::
Magnifier
)
{
CreateMagnifierQWidgets
(
QCursor
::
pos
()
/*scenePos*/
);
CreateMagnifierQWidgets
();
magniferControlViewWidget
->
grabNMove
(
QCursor
::
pos
(),
true
);
magniferDisplayViewWidget
->
grabNMove
(
scenePos
,
true
);
magniferControlViewWidget
->
show
();
...
...
@@ -424,7 +424,7 @@ void UBGraphicsScene::drawPointer(const QPointF &pPoint)
}
// call this function when user press mouse button in Magnifier mode
void
UBGraphicsScene
::
CreateMagnifierQWidgets
(
const
QPoint
&
globalPos
)
void
UBGraphicsScene
::
CreateMagnifierQWidgets
()
{
UBApplication
::
app
()
->
setOverrideCursor
(
QCursor
(
Qt
::
BlankCursor
)
);
...
...
src/domain/UBGraphicsScene.h
View file @
42d519e6
...
...
@@ -289,7 +289,7 @@ class UBGraphicsScene: public UBCoreGraphicsScene, public UBItem
void
drawEraser
(
const
QPointF
&
pEndPoint
);
void
drawPointer
(
const
QPointF
&
pEndPoint
);
void
CreateMagnifierQWidgets
(
const
QPoint
&
point
);
void
CreateMagnifierQWidgets
();
void
DisposeMagnifierQWidgets
();
...
...
src/gui/UBMainWindow.cpp
View file @
42d519e6
...
...
@@ -40,6 +40,7 @@ UBMainWindow::UBMainWindow(QWidget *parent, Qt::WindowFlags flags)
actionQuit
->
setShortcut
(
QKeySequence
(
Qt
::
CTRL
+
Qt
::
Key_Q
));
#elif defined(Q_WS_WIN)
actionPreferences
->
setShortcut
(
QKeySequence
(
Qt
::
ALT
+
Qt
::
Key_Return
));
// this code, because it unusable, system key combination can`t be triggered, even we add it manually
actionQuit
->
setShortcut
(
QKeySequence
(
Qt
::
ALT
+
Qt
::
Key_F4
));
#else
actionQuit
->
setShortcut
(
QKeySequence
(
Qt
::
ALT
+
Qt
::
Key_F4
));
...
...
@@ -118,6 +119,12 @@ void UBMainWindow::keyPressEvent(QKeyEvent *event)
*/
}
void
UBMainWindow
::
closeEvent
(
QCloseEvent
*
event
)
{
event
->
ignore
();
emit
closeEvent_Signal
(
event
);
}
void
UBMainWindow
::
onExportDone
()
{
// HACK : When opening the file save dialog during the document exportation,
...
...
src/gui/UBMainWindow.h
View file @
42d519e6
...
...
@@ -42,12 +42,16 @@ class UBMainWindow : public QMainWindow, public Ui::MainWindow
void
addDocumentsWidget
(
QWidget
*
pWidget
);
void
switchToDocumentsWidget
();
signals
:
void
closeEvent_Signal
(
QCloseEvent
*
event
);
public
slots
:
void
onExportDone
();
protected
:
virtual
void
keyPressEvent
(
QKeyEvent
*
event
);
virtual
void
closeEvent
(
QCloseEvent
*
event
);
virtual
QMenu
*
createPopupMenu
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment