~ubuntu-branches/ubuntu/saucy/minitube/saucy

« back to all changes in this revision

Viewing changes to src/userview.h

  • Committer: Package Import Robot
  • Author(s): Jakob Haufe
  • Date: 2013-05-23 13:54:01 UTC
  • mfrom: (1.1.15 sid)
  • Revision ID: package-import@ubuntu.com-20130523135401-wsbh1xtf71nkfvkt
Tags: 2.0-1
* New upstream version
* Switch from hardening-wrapper to buildflags.mk
* Refresh patches:
  - Drop gcc-4.7.patch, fixed upstream
  - Rebuild assure-quit-keybinding
  - Rebuild disable-update-check
* Update Standards-Version to 3.9.4
  - Add Vcs-* control fields
  - No further changes needed

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef USERVIEW_H
 
2
#define USERVIEW_H
 
3
 
 
4
#include <QtGui>
 
5
#include "view.h"
 
6
 
 
7
class VideoSource;
 
8
 
 
9
class UserView : public QWidget, public View {
 
10
 
 
11
    Q_OBJECT
 
12
 
 
13
public:
 
14
    UserView(QWidget *parent = 0);
 
15
 
 
16
signals:
 
17
    void activated(VideoSource *standardFeed);
 
18
    
 
19
private:
 
20
    QGridLayout *layout;
 
21
    
 
22
};
 
23
 
 
24
#endif // USERVIEW_H