~sil2100/unity-2d/precise-security

« back to all changes in this revision

Viewing changes to spread/app/spreadview.h

  • Committer: Didier Roche
  • Date: 2012-03-08 15:25:42 UTC
  • mto: This revision was merged to the branch mainline in revision 974.
  • Revision ID: didier.roche@canonical.com-20120308152542-41zh8nr4kc34i1xv
remove the upstream gconf/gsettings convert files as well

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    Q_OBJECT
31
31
 
32
32
public:
33
 
    explicit SpreadView(int screen);
 
33
    explicit SpreadView();
34
34
 
35
35
public Q_SLOTS:
36
36
    void fitToAvailableSpace();
 
37
 
 
38
protected:
 
39
    virtual void focusInEvent( QFocusEvent * event );
 
40
    virtual void focusOutEvent( QFocusEvent * event );
 
41
    bool eventFilter(QObject *obj, QEvent *event);
 
42
 
 
43
Q_SIGNALS:
 
44
    void outsideClick();
37
45
};
38
46
 
39
 
Q_DECLARE_METATYPE(SpreadView*)
40
 
 
41
47
#endif // SPREADVIEW_H
42
48