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
a8bfdc6e
Commit
a8bfdc6e
authored
May 04, 2012
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused interfaces and added the data storageinterface
parent
c6e99045
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
22 additions
and
40 deletions
+22
-40
UBMediaWidget.h
src/customWidgets/UBMediaWidget.h
+1
-1
IDataStorage.h
src/interfaces/IDataStorage.h
+19
-0
IDropable.h
src/interfaces/IDropable.h
+0
-21
IResizeable.h
src/interfaces/IResizeable.h
+0
-15
interfaces.pri
src/interfaces/interfaces.pri
+2
-3
No files found.
src/customWidgets/UBMediaWidget.h
View file @
a8bfdc6e
...
...
@@ -27,7 +27,7 @@
#include <phonon/VideoWidget>
#include <phonon/AudioOutput>
#include "interfaces/IResizeable.h"
//
#include "interfaces/IResizeable.h"
#include "UBActionableWidget.h"
#define UBMEDIABUTTON_SIZE 32
...
...
src/interfaces/IDataStorage.h
0 → 100644
View file @
a8bfdc6e
/*
* 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 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef IDATASTORAGE_H
#define IDATASTORAGE_H
#endif // IDATASTORAGE_H
src/interfaces/IDropable.h
deleted
100644 → 0
View file @
c6e99045
#ifndef IDROPABLE_H
#define IDROPABLE_H
#include <QDropEvent>
#include <QDragEnterEvent>
#include <QDragLeaveEvent>
#include <QDragMoveEvent>
class
IDropable
{
public
:
virtual
~
IDropable
(){}
protected
:
virtual
void
dropEvent
(
QDropEvent
*
pEvent
)
=
0
;
virtual
void
dragEnterEvent
(
QDragEnterEvent
*
pEvent
)
=
0
;
virtual
void
dragMoveEvent
(
QDragMoveEvent
*
pEvent
)
=
0
;
virtual
void
dragLeaveEvent
(
QDragLeaveEvent
*
pEvent
)
=
0
;
};
#endif // IDROPABLE_H
src/interfaces/IResizeable.h
deleted
100644 → 0
View file @
c6e99045
#ifndef IRESIZEABLE_H
#define IRESIZEABLE_H
#include <QResizeEvent>
class
IResizeable
{
public
:
~
IResizeable
();
protected
:
virtual
void
resizeEvent
(
QResizeEvent
*
pEvent
)
=
0
;
};
#endif // IRESIZEABLE_H
src/interfaces/interfaces.pri
View file @
a8bfdc6e
HEADERS += src/interfaces/IDropable.h \
src/interfaces/IDropable.h \
src/interfaces/IResizeable.h
HEADERS += \
src/interfaces/IDataStorage.h
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