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
047be003
Commit
047be003
authored
May 04, 2012
by
Anatoly Mihalchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Memory leaks detection
parent
214e0711
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
19 deletions
+26
-19
main.cpp
src/core/main.cpp
+1
-1
UBGraphicsItemDelegate.cpp
src/domain/UBGraphicsItemDelegate.cpp
+21
-0
UBGraphicsItemDelegate.h
src/domain/UBGraphicsItemDelegate.h
+3
-17
UBFeaturesWidget.h
src/gui/UBFeaturesWidget.h
+1
-1
No files found.
src/core/main.cpp
View file @
047be003
...
@@ -72,7 +72,7 @@ int main(int argc, char *argv[])
...
@@ -72,7 +72,7 @@ int main(int argc, char *argv[])
// Uncomment next section to have memory leaks information
// Uncomment next section to have memory leaks information
// tracing in VC++ debug mode under Windows
// tracing in VC++ debug mode under Windows
/*
/*
#if defined(_MSC_VER) && defined(_DEBUG)
#if defined(_MSC_VER) && defined(_DEBUG)
_CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF );
_CrtSetDbgFlag ( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF );
#endif
#endif
...
...
src/domain/UBGraphicsItemDelegate.cpp
View file @
047be003
...
@@ -50,6 +50,27 @@
...
@@ -50,6 +50,27 @@
class
UBGraphicsParaschoolEditorWidgetItem
;
class
UBGraphicsParaschoolEditorWidgetItem
;
DelegateButton
::
DelegateButton
(
const
QString
&
fileName
,
QGraphicsItem
*
pDelegated
,
QGraphicsItem
*
parent
,
Qt
::
WindowFrameSection
section
)
:
QGraphicsSvgItem
(
fileName
,
parent
)
,
mDelegated
(
pDelegated
)
,
mIsTransparentToMouseEvent
(
false
)
,
mButtonAlignmentSection
(
section
)
{
setAcceptedMouseButtons
(
Qt
::
LeftButton
);
setData
(
UBGraphicsItemData
::
ItemLayerType
,
QVariant
(
UBItemLayerType
::
Control
));
}
DelegateButton
::~
DelegateButton
()
{
// NOOP
}
void
DelegateButton
::
setFileName
(
const
QString
&
fileName
)
{
QGraphicsSvgItem
::
setSharedRenderer
(
new
QSvgRenderer
(
fileName
,
this
));
}
void
DelegateButton
::
mousePressEvent
(
QGraphicsSceneMouseEvent
*
event
)
void
DelegateButton
::
mousePressEvent
(
QGraphicsSceneMouseEvent
*
event
)
{
{
// make sure delegate is selected, to avoid control being hidden
// make sure delegate is selected, to avoid control being hidden
...
...
src/domain/UBGraphicsItemDelegate.h
View file @
047be003
...
@@ -35,30 +35,16 @@ class DelegateButton: public QGraphicsSvgItem
...
@@ -35,30 +35,16 @@ class DelegateButton: public QGraphicsSvgItem
Q_OBJECT
Q_OBJECT
public
:
public
:
DelegateButton
(
const
QString
&
fileName
,
QGraphicsItem
*
pDelegated
,
QGraphicsItem
*
parent
=
0
,
Qt
::
WindowFrameSection
section
=
Qt
::
TopLeftSection
)
DelegateButton
(
const
QString
&
fileName
,
QGraphicsItem
*
pDelegated
,
QGraphicsItem
*
parent
=
0
,
Qt
::
WindowFrameSection
section
=
Qt
::
TopLeftSection
);
:
QGraphicsSvgItem
(
fileName
,
parent
)
,
mDelegated
(
pDelegated
)
,
mIsTransparentToMouseEvent
(
false
)
,
mButtonAlignmentSection
(
section
)
{
setAcceptedMouseButtons
(
Qt
::
LeftButton
);
setData
(
UBGraphicsItemData
::
ItemLayerType
,
QVariant
(
UBItemLayerType
::
Control
));
}
virtual
~
DelegateButton
()
virtual
~
DelegateButton
();
{
// NOOP
}
void
setTransparentToMouseEvent
(
bool
tr
)
void
setTransparentToMouseEvent
(
bool
tr
)
{
{
mIsTransparentToMouseEvent
=
tr
;
mIsTransparentToMouseEvent
=
tr
;
}
}
void
setFileName
(
const
QString
&
fileName
)
void
setFileName
(
const
QString
&
fileName
);
{
QGraphicsSvgItem
::
setSharedRenderer
(
new
QSvgRenderer
(
fileName
,
this
));
}
void
setSection
(
Qt
::
WindowFrameSection
section
)
{
mButtonAlignmentSection
=
section
;}
void
setSection
(
Qt
::
WindowFrameSection
section
)
{
mButtonAlignmentSection
=
section
;}
Qt
::
WindowFrameSection
getSection
()
const
{
return
mButtonAlignmentSection
;}
Qt
::
WindowFrameSection
getSection
()
const
{
return
mButtonAlignmentSection
;}
...
...
src/gui/UBFeaturesWidget.h
View file @
047be003
...
@@ -183,7 +183,7 @@ public:
...
@@ -183,7 +183,7 @@ public:
void
setFeaturesList
(
const
QList
<
UBFeature
>
&
flist
)
{
featuresList
=
flist
;
}
void
setFeaturesList
(
const
QList
<
UBFeature
>
&
flist
)
{
featuresList
=
flist
;
}
private
:
private
:
QList
<
UBFeature
>
featuresList
;
QList
<
UBFeature
>
featuresList
;
};
};
class
UBFeaturesProxyModel
:
public
QSortFilterProxyModel
class
UBFeaturesProxyModel
:
public
QSortFilterProxyModel
...
...
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