diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:54:13 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:54:13 +0000 |
commit | 092be7678b67552cb3161fe162242bf8d3aeed2f (patch) | |
tree | be0693f45b101252c370e40f6e84da2cd7a52f75 /src/kmplayerview.h | |
download | kmplayer-092be7678b67552cb3161fe162242bf8d3aeed2f.tar.gz kmplayer-092be7678b67552cb3161fe162242bf8d3aeed2f.zip |
Added old abandoned KDE3 version of kmplayer
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmplayer@1091557 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/kmplayerview.h')
-rw-r--r-- | src/kmplayerview.h | 243 |
1 files changed, 243 insertions, 0 deletions
diff --git a/src/kmplayerview.h b/src/kmplayerview.h new file mode 100644 index 0000000..d255bd0 --- /dev/null +++ b/src/kmplayerview.h @@ -0,0 +1,243 @@ +/** + * Copyright (C) 2002-2003 by Koos Vriezen <[email protected]> + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Library General Public + * License version 2 as published by the Free Software Foundation. + * + * This library 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 + * Library General Public License for more details. + * + * You should have received a copy of the GNU Library General Public License + * along with this library; see the file COPYING.LIB. If not, write to + * the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor, + * Boston, MA 02110-1301, USA. + **/ + +#ifndef KMPLAYERVIEW_H +#define KMPLAYERVIEW_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif +#include <qwidget.h> +#include <qtextedit.h> + +#include <kdockwidget.h> +#include <kurl.h> +#include <qxembed.h> +#include <kmediaplayer/view.h> + +#include "kmplayersource.h" + +#define MOUSE_INVISIBLE_DELAY 2000 + +class QWidgetStack; +class QPixmap; +class QPaintDevice; +class QPainter; +class QSlider; +class QLabel; +class KActionCollection; +class KAction; +class KShortcut; +class KStatusBar; +class KFindDialog; + +namespace KMPlayer { + +class View; +class ViewArea; +class Viewer; +class ControlPanel; +class VolumeBar; +class Console; +class PlayListView; +class PlayListView; +class RootPlayListItem; + +typedef KStatusBar StatusBar; + +/* + * The console GUI + */ +class TextEdit : public QTextEdit { +public: + TextEdit (QWidget * parent, View * view); +protected: + void contextMenuEvent (QContextMenuEvent * e); +private: + View * m_view; +}; + +/* + * The infowindow GUI + */ +class InfoWindow : public QTextEdit { +public: + InfoWindow (QWidget * parent, View * view); + KDE_NO_EXPORT View * view () const { return m_view; } +protected: + void contextMenuEvent (QContextMenuEvent * e); +private: + View * m_view; +}; + +/* + * The view containing ViewArea and playlist + */ +class KMPLAYER_EXPORT View : public KMediaPlayer::View { + Q_OBJECT +public: + enum ControlPanelMode { + CP_Hide, CP_AutoHide, CP_Show, CP_Only /* no video widget */ + }; + enum StatusBarMode { + SB_Hide, SB_Show, SB_Only /* no video widget */ + }; + enum WidgetType { + WT_Video, WT_Console, WT_Picture, WT_Last + }; + + View (QWidget *parent, const char *); + ~View(); + + void addText (const QString &, bool eol=false); + void init (KActionCollection * ac); + void reset (); + //void print(QPrinter *pPrinter); + + TextEdit * console () const { return m_multiedit; } + KDE_NO_EXPORT Viewer * viewer () const { return m_viewer; } + KDE_NO_EXPORT ControlPanel * controlPanel () const {return m_control_panel;} + KDE_NO_EXPORT StatusBar * statusBar () const {return m_status_bar;} + KDE_NO_EXPORT PlayListView * playList () const { return m_playlist; } + KDE_NO_EXPORT InfoWindow * infoPanel () const { return m_infopanel; } + KDE_NO_EXPORT QWidgetStack * widgetStack () const { return m_widgetstack; } + KDE_NO_EXPORT KDockArea * docArea () const { return m_dockarea; } + KDE_NO_EXPORT ViewArea * viewArea () const { return m_view_area; } + KDE_NO_EXPORT bool keepSizeRatio () const { return m_keepsizeratio; } + void setKeepSizeRatio (bool b); + void showWidget (WidgetType w); + void setControlPanelMode (ControlPanelMode m); + void setStatusBarMode (StatusBarMode m); + void setEraseColor (const QColor &); + KDE_NO_EXPORT ControlPanelMode controlPanelMode () const { return m_controlpanel_mode; } + KDE_NO_EXPORT StatusBarMode statusBarMode () const { return m_statusbar_mode; } + void delayedShowButtons (bool show); + bool isFullScreen () const; + int statusBarHeight () const; + KDE_NO_EXPORT bool editMode () const { return m_edit_mode; } + bool setPicture (const QString & path); + KDE_NO_EXPORT QPixmap * image () const { return m_image; } + void setNoInfoMessages (bool b) { m_no_info = b; } + void setViewOnly (); + void setInfoPanelOnly (); + void setPlaylistOnly (); + void setEditMode (RootPlayListItem *, bool enable=true); + void dragEnterEvent (QDragEnterEvent *); + void dropEvent (QDropEvent *); + KDE_NO_EXPORT void emitPictureClicked () { emit pictureClicked (); } + /* raise video widget, might (auto) hides panel */ + void videoStart (); + void playingStart (); + /* shows panel */ + void playingStop (); +public slots: + void setVolume (int); + void updateVolume (); + void fullScreen (); + void updateLayout (); + void toggleShowPlaylist (); + void toggleVideoConsoleWindow (); + void setInfoMessage (const QString & msg); + void setStatusMessage (const QString & msg); +signals: + void urlDropped (const KURL::List & urls); + void pictureClicked (); + void fullScreenChanged (); + void windowVideoConsoleToggled (int wt); +protected: + void leaveEvent (QEvent *) KDE_NO_EXPORT; + void timerEvent (QTimerEvent *) KDE_NO_EXPORT; + bool x11Event (XEvent *) KDE_NO_EXPORT; +private: + // widget for player's output + Viewer * m_viewer; + // console output + TextEdit * m_multiedit; + // widget stack contains m_viewer, m_multiedit and m_picturewidget + QWidgetStack * m_widgetstack; + // widget that layouts m_widgetstack for ratio setting and m_control_panel + ViewArea * m_view_area; + // playlist widget + PlayListView * m_playlist; + // infopanel widget + InfoWindow * m_infopanel; + // all widget types + QWidget * m_widgettypes [WT_Last]; + KDockArea * m_dockarea; + KDockWidget * m_dock_video; + KDockWidget * m_dock_playlist; + KDockWidget * m_dock_infopanel; + QString tmplog; + QPixmap * m_image; + ControlPanel * m_control_panel; + StatusBar * m_status_bar; + QSlider * m_volume_slider; + const char * m_mixer_object; + ControlPanelMode m_controlpanel_mode; + ControlPanelMode m_old_controlpanel_mode; + StatusBarMode m_statusbar_mode; + int controlbar_timer; + int infopanel_timer; + bool m_keepsizeratio; + bool m_playing; + bool m_mixer_init; + bool m_inVolumeUpdate; + bool m_sreensaver_disabled; + bool m_tmplog_needs_eol; + bool m_revert_fullscreen; + bool m_no_info; + bool m_edit_mode; +}; + +/* + * The video widget + */ +class KMPLAYER_EXPORT Viewer : public QXEmbed { + Q_OBJECT +public: + Viewer(QWidget *parent, View * view); + ~Viewer(); + + int heightForWidth (int w) const; + + void setAspect (float a); + float aspect () { return m_aspect; } + void sendKeyEvent (int key); + void setBackgroundColor (const QColor & c); + void resetBackgroundColor (); + void setCurrentBackgroundColor (const QColor & c); + KDE_NO_EXPORT View * view () const { return m_view; } + void changeProtocol (QXEmbed::Protocol p); +public slots: + void sendConfigureEvent (); +protected: + void dragEnterEvent (QDragEnterEvent *); + void dropEvent (QDropEvent *); + void mouseMoveEvent (QMouseEvent * e); + void contextMenuEvent (QContextMenuEvent * e); + virtual void windowChanged( WId w ); +private: + WId m_plain_window; + unsigned int m_bgcolor; + float m_aspect; + View * m_view; +}; + +} // namespace + +#endif // KMPLAYERVIEW_H |