summaryrefslogtreecommitdiff
path: root/src/videowidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/videowidget.h')
-rw-r--r--src/videowidget.h13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/videowidget.h b/src/videowidget.h
index 4159bb9..9283a8e 100644
--- a/src/videowidget.h
+++ b/src/videowidget.h
@@ -1,3 +1,4 @@
+/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/***************************************************************************
* videowidget.h
*
@@ -30,6 +31,9 @@
/*
* $Log$
+ * Revision 1.5 2005/07/25 15:35:41 deva
+ * *** empty log message ***
+ *
* Revision 1.4 2005/05/03 08:31:59 deva
* Removed the error object, and replaced it with a more generic info object.
*
@@ -50,12 +54,17 @@
class VideoWidget : public QWidget {
Q_OBJECT
- public:
+public:
VideoWidget(QWidget *parent);
~VideoWidget();
QPixmap getScreenshot();
+ void mousePressEvent(QMouseEvent *event);
+
+signals:
+ void clicked();
- private:
+private:
+ QWidget *parent;
};
#endif /* __VIDEOWIDGET_H__ */