summaryrefslogtreecommitdiffstats
path: root/interfaces/kmediaplayer/view.h
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-26 13:17:21 -0600
committerTimothy Pearson <[email protected]>2013-01-26 13:17:21 -0600
commitdfe289850f068f19ba4a83ab4e7e22a7e09c13c9 (patch)
treec297348a55df66c571de4525646e0b9762427353 /interfaces/kmediaplayer/view.h
parentb7658a0d5eca24a9d37c6e04f88298ef02389db0 (diff)
downloadtdelibs-dfe289850f068f19ba4a83ab4e7e22a7e09c13c9.tar.gz
tdelibs-dfe289850f068f19ba4a83ab4e7e22a7e09c13c9.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'interfaces/kmediaplayer/view.h')
-rw-r--r--interfaces/kmediaplayer/view.h98
1 files changed, 0 insertions, 98 deletions
diff --git a/interfaces/kmediaplayer/view.h b/interfaces/kmediaplayer/view.h
deleted file mode 100644
index c1d9dbe41..000000000
--- a/interfaces/kmediaplayer/view.h
+++ /dev/null
@@ -1,98 +0,0 @@
-// Copyright (C) 2002 Neil Stevens <[email protected]>
-//
-// Permission is hereby granted, free of charge, to any person obtaining a copy
-// of this software and associated documentation files (the "Software"), to deal
-// in the Software without restriction, including without limitation the rights
-// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-// copies of the Software, and to permit persons to whom the Software is
-// furnished to do so, subject to the following conditions:
-//
-// The above copyright notice and this permission notice shall be included in
-// all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-// THE AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
-// AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-// CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-//
-// Except as contained in this notice, the name(s) of the author(s) shall not be
-// used in advertising or otherwise to promote the sale, use or other dealings
-// in this Software without prior written authorization from the author(s).
-
-#ifndef KMEDIAPLAYERVIEW_H
-#define KMEDIAPLAYERVIEW_H
-
-#include <tqwidget.h>
-#include <tdelibs_export.h>
-
-namespace KMediaPlayer
-{
-
-/** View is part of the user interface of a Player. */
-class KDE_EXPORT View : public TQWidget
-{
-Q_OBJECT
-
-public:
- /** Your typical TQWidget constructor. */
- View(TQWidget *parent, const char *name);
- virtual ~View(void);
-
- /** The Possible buttons that can appear in the UI. */
- enum Button
- {
- /** Button that connects to Player::play */
- Play = 1,
- /** Button that connects to Player::stop */
- Stop = 2,
- /** Button that connects to Player::pause */
- Pause = 4,
- /** A seeker that interfaces with Player::seek */
- Seeker = 8,
- /** Show all buttons. */
- All = 255
- };
-
- /** Return which buttons are being displayed. */
- int buttons(void);
-
- /** Return the TQWidget in which video is displayed.
- May Return 0L if there is none. */
- TQWidget *videoWidget();
-
-public slots:
- /** Set which buttons to display. See Button. */
- void setButtons(int);
-
- /** Returns if a particular button is being displayed. */
- bool button(int);
- /** Display a particular button. */
- void showButton(int);
- /** Stop displaying a particular button. */
- void hideButton(int);
- /** Toggle the display of a particular button. */
- void toggleButton(int);
-
-signals:
- /** Emitted when the set of displayed buttons changes. */
- void buttonsChanged(int);
-
-protected:
- /** The implementing view should set the widget in which
- the video will be displayed. KMediaPlayer users may
- reparent() it to somewhere else, for example.
- */
- void setVideoWidget(TQWidget *videoWidget);
-
-private:
- int currentButtons;
-
- struct Data;
- Data *d;
-};
-
-}
-
-#endif