Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
3dc03791
Commit
3dc03791
authored
Mar 23, 2011
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: EPG: remove no longer used class
parent
a145b0c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
75 deletions
+0
-75
modules/gui/qt4/Modules.am
modules/gui/qt4/Modules.am
+0
-1
modules/gui/qt4/components/epg/EPGEvent.hpp
modules/gui/qt4/components/epg/EPGEvent.hpp
+0
-74
No files found.
modules/gui/qt4/Modules.am
View file @
3dc03791
...
...
@@ -345,7 +345,6 @@ noinst_HEADERS = \
components/controller.hpp \
components/controller_widget.hpp \
components/epg/EPGChannels.hpp \
components/epg/EPGEvent.hpp \
components/epg/EPGItem.hpp \
components/epg/EPGRuler.hpp \
components/epg/EPGView.hpp \
...
...
modules/gui/qt4/components/epg/EPGEvent.hpp
deleted
100644 → 0
View file @
a145b0c4
/*****************************************************************************
* EPGEvent.h : EPGEvent
****************************************************************************
* Copyright © 2009-2010 VideoLAN
* $Id$
*
* Authors: Ludovic Fauvet <etix@l0cal.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.
*
* 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, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef EPGEVENT_H
#define EPGEVENT_H
class
QString
;
class
EPGItem
;
#include <QDateTime>
class
EPGEvent
{
public:
EPGEvent
(
const
QString
&
eventName
)
:
current
(
false
),
updated
(
true
),
simultaneous
(
false
),
item
(
NULL
)
{
name
=
eventName
;
}
bool
operator
==
(
const
EPGEvent
&
other
)
const
{
return
start
==
other
.
start
&&
duration
==
other
.
duration
&&
name
==
other
.
name
&&
description
==
other
.
description
&&
shortDescription
==
other
.
shortDescription
&&
channelName
==
other
.
channelName
;
}
bool
ends_before
(
const
QDateTime
&
ref
)
const
{
QDateTime
start_
=
start
;
return
start_
.
addSecs
(
duration
)
<
ref
;
}
bool
plays_at
(
const
QDateTime
&
ref
)
const
{
return
(
start
<=
ref
)
&&
!
ends_before
(
ref
);
}
QDateTime
start
;
int
duration
;
QString
name
;
QString
description
;
QString
shortDescription
;
QString
channelName
;
bool
current
;
bool
updated
;
bool
simultaneous
;
EPGItem
*
item
;
};
#endif // EPGEVENT_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