summaryrefslogtreecommitdiffstats
path: root/kplayer/kplayerlogwindow.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2016-03-26 17:01:39 +0100
committerSlávek Banko <slavek.banko@axis.cz>2016-03-26 17:01:39 +0100
commit81fedf1b8e2e3fe9e3d5a8fb5ef69b8ca2aab19d (patch)
tree1ba18eeb5470232b06215b81278e7d5fe24d5932 /kplayer/kplayerlogwindow.h
downloadkplayer-81fedf1b8e2e3fe9e3d5a8fb5ef69b8ca2aab19d.tar.gz
kplayer-81fedf1b8e2e3fe9e3d5a8fb5ef69b8ca2aab19d.zip
Initial import of kplayer 0.6.3
Diffstat (limited to 'kplayer/kplayerlogwindow.h')
-rw-r--r--kplayer/kplayerlogwindow.h106
1 files changed, 106 insertions, 0 deletions
diff --git a/kplayer/kplayerlogwindow.h b/kplayer/kplayerlogwindow.h
new file mode 100644
index 0000000..9818ff0
--- /dev/null
+++ b/kplayer/kplayerlogwindow.h
@@ -0,0 +1,106 @@
+/***************************************************************************
+ kplayerlogwindow.h
+ ------------------
+ begin : Fri May 9 2003
+ copyright : (C) 2003-2007 by kiriuja
+ email : http://kplayer.sourceforge.net/email.html
+ ***************************************************************************/
+
+/***************************************************************************
+ * 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. *
+ ***************************************************************************/
+
+#ifndef KPLAYERLOGWINDOW_H
+#define KPLAYERLOGWINDOW_H
+
+#include <kaction.h>
+#include <ktextedit.h>
+#include <qdockwindow.h>
+
+/**The KPlayer log widget.
+ *@author kiriuja
+ */
+class KPlayerLogWidget : public KTextEdit
+{
+ Q_OBJECT
+
+public:
+ KPlayerLogWidget (KActionCollection* ac, QWidget* parent = 0, const char* name = 0);
+
+ /** Returns whether there is an error in the log. */
+ bool hasError (void)
+ { return m_error; }
+ /** Sets an error condition. */
+ void setError (bool);
+
+ /** Returns the popup menu. */
+ QPopupMenu* popupMenu (void) const
+ { return m_popup; }
+ /** Sets the popup menu. */
+ void setPopupMenu (QPopupMenu* menu)
+ { m_popup = menu; }
+
+ /** Retrieves an action from the action collection by name. */
+ KAction* action (const char* name) const
+ { return m_ac -> action (name); }
+
+public slots:
+ virtual void clear (void);
+
+protected slots:
+ /** Updates actions according to the current state. */
+ void updateActions (void);
+
+protected:
+ virtual void showEvent (QShowEvent*);
+ virtual void resizeEvent (QResizeEvent*);
+ /** Displays the right click popup menu. */
+ virtual void contextMenuEvent (QContextMenuEvent*);
+
+ /** Action collection. */
+ KActionCollection* m_ac;
+ /** Popup menu. */
+ QPopupMenu* m_popup;
+ /** Error condition flag. */
+ bool m_error;
+ /** Error location. */
+ int m_location;
+};
+
+/**The KPlayer log window.
+ *@author kiriuja
+ */
+class KPlayerLogWindow : public QDockWindow
+{
+ Q_OBJECT
+
+public:
+ KPlayerLogWindow (KActionCollection* ac, QWidget* parent = 0, const char* name = 0);
+
+ void initialize (QPopupMenu* menu);
+
+ KPlayerLogWidget* logWidget (void)
+ { return (KPlayerLogWidget*) widget(); }
+
+ void addLine (const QString& line)
+ { ((KPlayerLogWidget*) widget()) -> append (line); }
+ bool isEmpty (void)
+ { return ((KPlayerLogWidget*) widget()) -> text().isEmpty(); }
+
+ /** Returns whether there is an error in the log. */
+ bool hasError (void)
+ { return ((KPlayerLogWidget*) widget()) -> hasError(); }
+ /** Sets an error condition. */
+ void setError (bool);
+
+protected:
+ virtual void hideEvent (QHideEvent*);
+
+signals:
+ void windowHidden (void);
+};
+
+#endif